From b87472f10b265cdb9af2736b5f4a7c408ac56c87 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Feb 2020 11:01:35 -0300 Subject: [PATCH 1/5] [NEW] UiKit Beta (#1497) --- __mocks__/@rocket.chat/ui-kit.js | 11 + .../__snapshots__/Storyshots.test.js.snap | 620 +- app/containers/Button/index.js | 9 +- app/containers/MessageBox/index.js | 27 +- app/containers/TextInput.js | 20 +- app/containers/UIKit/Actions.js | 31 + app/containers/UIKit/Context.js | 22 + app/containers/UIKit/DatePicker.js | 117 + app/containers/UIKit/Divider.js | 18 + app/containers/UIKit/Image.js | 61 + app/containers/UIKit/Input.js | 55 + app/containers/UIKit/MessageBlock.js | 27 + app/containers/UIKit/MultiSelect/Chips.js | 45 + app/containers/UIKit/MultiSelect/Input.js | 36 + app/containers/UIKit/MultiSelect/Items.js | 61 + app/containers/UIKit/MultiSelect/index.js | 171 + app/containers/UIKit/MultiSelect/styles.js | 81 + app/containers/UIKit/Overflow.js | 103 + app/containers/UIKit/Section.js | 70 + app/containers/UIKit/Select.js | 89 + app/containers/UIKit/index.js | 246 + app/containers/UIKit/utils.js | 55 + app/containers/message/Blocks.js | 39 + app/containers/message/Image.js | 13 +- app/containers/message/Message.js | 14 +- app/containers/message/index.js | 9 +- app/i18n/locales/en.js | 1 + app/i18n/locales/pt-BR.js | 1 + app/index.js | 17 +- app/lib/database/model/Message.js | 2 + app/lib/database/model/SlashCommand.js | 2 + app/lib/database/model/migrations.js | 17 + app/lib/database/schema/app.js | 8 +- app/lib/methods/actions.js | 165 + app/lib/methods/subscriptions/rooms.js | 6 + app/lib/rocketchat.js | 12 +- app/tablet.js | 5 + app/theme.js | 2 +- app/views/ModalBlockView.js | 261 + app/views/RoomView/index.js | 18 + ios/Podfile.lock | 6 + .../RNDateTimePicker/RNDateTimePicker.h | 1 + .../RNDateTimePickerManager.h | 1 + .../RNDateTimePicker/RNDateTimePicker.h | 1 + .../RNDateTimePickerManager.h | 1 + .../RNDateTimePicker.podspec.json | 23 + ios/Pods/Manifest.lock | 6 + ios/Pods/Pods.xcodeproj/project.pbxproj | 15609 ++++++++-------- ...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 +- .../RNDateTimePicker/RNDateTimePicker-dummy.m | 5 + .../RNDateTimePicker-prefix.pch | 12 + .../RNDateTimePicker.xcconfig | 11 + package.json | 8 +- ...ative-community+datetimepicker+2.1.0.patch | 65 + ... => @rocket.chat+sdk+1.0.0-alpha.41.patch} | 11 +- .../react-native-picker-select+6.3.3.patch | 30 + storybook/stories/StoriesSeparator.js | 2 +- storybook/stories/UiKitMessage.js | 431 + storybook/stories/UiKitModal.js | 564 + storybook/stories/index.js | 12 +- yarn.lock | 36 +- 68 files changed, 11700 insertions(+), 7838 deletions(-) create mode 100644 __mocks__/@rocket.chat/ui-kit.js create mode 100644 app/containers/UIKit/Actions.js create mode 100644 app/containers/UIKit/Context.js create mode 100644 app/containers/UIKit/DatePicker.js create mode 100644 app/containers/UIKit/Divider.js create mode 100644 app/containers/UIKit/Image.js create mode 100644 app/containers/UIKit/Input.js create mode 100644 app/containers/UIKit/MessageBlock.js create mode 100644 app/containers/UIKit/MultiSelect/Chips.js create mode 100644 app/containers/UIKit/MultiSelect/Input.js create mode 100644 app/containers/UIKit/MultiSelect/Items.js create mode 100644 app/containers/UIKit/MultiSelect/index.js create mode 100644 app/containers/UIKit/MultiSelect/styles.js create mode 100644 app/containers/UIKit/Overflow.js create mode 100644 app/containers/UIKit/Section.js create mode 100644 app/containers/UIKit/Select.js create mode 100644 app/containers/UIKit/index.js create mode 100644 app/containers/UIKit/utils.js create mode 100644 app/containers/message/Blocks.js create mode 100644 app/lib/methods/actions.js create mode 100644 app/views/ModalBlockView.js create mode 120000 ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePicker.h create mode 120000 ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePickerManager.h create mode 120000 ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePicker.h create mode 120000 ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePickerManager.h create mode 100644 ios/Pods/Local Podspecs/RNDateTimePicker.podspec.json create mode 100644 ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-dummy.m create mode 100644 ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch create mode 100644 ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker.xcconfig create mode 100644 patches/@react-native-community+datetimepicker+2.1.0.patch rename patches/{@rocket.chat+sdk+1.0.0-alpha.31.patch => @rocket.chat+sdk+1.0.0-alpha.41.patch} (92%) create mode 100644 patches/react-native-picker-select+6.3.3.patch create mode 100644 storybook/stories/UiKitMessage.js create mode 100644 storybook/stories/UiKitModal.js diff --git a/__mocks__/@rocket.chat/ui-kit.js b/__mocks__/@rocket.chat/ui-kit.js new file mode 100644 index 0000000000..71eace3685 --- /dev/null +++ b/__mocks__/@rocket.chat/ui-kit.js @@ -0,0 +1,11 @@ +export default { + window: () => null +}; + +export const uiKitMessage = () => () => null; + +export const uiKitModal = () => () => null; + +export class UiKitParserMessage {} + +export class UiKitParserModal {} diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index b7e07750c5..16d0b54855 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storyshots Message list 1`] = ` +exports[`Storyshots Message list message 1`] = ` `; -exports[`Storyshots RoomItem list 1`] = ` +exports[`Storyshots RoomItem list roomitem 1`] = ` `; + +exports[`Storyshots UiKitMessage list uikitmessage 1`] = ` + + + + + Section + + + Section + Overflow + + + Section + image + + + Section + button + + + Section + Select + + + Section + DatePicker + + + Section + Multi Select + + + Image + + + Context + + + Action - Buttons + + + Fields + + + Action - Select + + + + +`; + +exports[`Storyshots UiKitModal list UiKitModal 1`] = ` + + + + + Modal - Section and Selects + + + Modal - Section Accessories + + + Modal - Form Input + + + Modal - Form TextArea + + + Modal - Images + + + Modal - Actions + + + Modal - Contexts and Dividers + + + Modal - Input with error + + + Modal - Multilne with error + + + Modal - DatePicker with error + + + + +`; diff --git a/app/containers/Button/index.js b/app/containers/Button/index.js index c90ced8349..95ccdb5769 100644 --- a/app/containers/Button/index.js +++ b/app/containers/Button/index.js @@ -1,13 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, Text } from 'react-native'; -import { RectButton } from 'react-native-gesture-handler'; +import Touchable from 'react-native-platform-touchable'; import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; -/* eslint-disable react-native/no-unused-styles */ const styles = StyleSheet.create({ container: { paddingHorizontal: 15, @@ -48,9 +47,9 @@ export default class Button extends React.PureComponent { } = this.props; const isPrimary = type === 'primary'; return ( - ) } - + ); } } diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 23ce62be18..a9cdb4be00 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -9,6 +9,7 @@ import DocumentPicker from 'react-native-document-picker'; import ActionSheet from 'react-native-action-sheet'; import { Q } from '@nozbe/watermelondb'; +import { generateTriggerId } from '../../lib/methods/actions'; import TextInput from '../../presentation/TextInput'; import { userTyping as userTypingAction } from '../../actions/room'; import RocketChat from '../../lib/rocketchat'; @@ -104,7 +105,8 @@ class MessageBox extends Component { isVisible: false }, commandPreview: [], - showCommandPreview: false + showCommandPreview: false, + command: {} }; this.text = ''; this.focused = false; @@ -280,7 +282,7 @@ class MessageBox extends Component { try { const command = await commandsCollection.find(name); if (command.providesPreview) { - return this.setCommandPreview(name, params); + return this.setCommandPreview(command, name, params); } } catch (e) { console.log('Slash command not found'); @@ -339,16 +341,19 @@ class MessageBox extends Component { } onPressCommandPreview = (item) => { + const { command } = this.state; const { rid } = this.props; const { text } = this; - const command = text.substr(0, text.indexOf(' ')).slice(1); + const name = text.substr(0, text.indexOf(' ')).slice(1); const params = text.substr(text.indexOf(' ') + 1) || 'params'; - this.setState({ commandPreview: [], showCommandPreview: false }); + this.setState({ commandPreview: [], showCommandPreview: false, command: {} }); this.stopTrackingMention(); this.clearInput(); this.handleTyping(false); try { - RocketChat.executeCommandPreview(command, params, rid, item); + const { appId } = command; + const triggerId = generateTriggerId(appId); + RocketChat.executeCommandPreview(name, params, rid, item, triggerId); } catch (e) { log(e); } @@ -452,13 +457,13 @@ class MessageBox extends Component { }, 1000); } - setCommandPreview = async(command, params) => { + setCommandPreview = async(command, name, params) => { const { rid } = this.props; try { - const { preview } = await RocketChat.getCommandPreview(command, rid, params); - this.setState({ commandPreview: preview.items, showCommandPreview: true }); + const { preview } = await RocketChat.getCommandPreview(name, rid, params); + this.setState({ commandPreview: preview.items, showCommandPreview: true, command }); } catch (e) { - this.setState({ commandPreview: [], showCommandPreview: true }); + this.setState({ commandPreview: [], showCommandPreview: true, command: {} }); log(e); } } @@ -669,7 +674,9 @@ class MessageBox extends Component { if (slashCommand.length > 0) { try { const messageWithoutCommand = message.replace(/([^\s]+)/, '').trim(); - RocketChat.runSlashCommand(command, roomId, messageWithoutCommand); + const [{ appId }] = slashCommand; + const triggerId = generateTriggerId(appId); + RocketChat.runSlashCommand(command, roomId, messageWithoutCommand, triggerId); } catch (e) { log(e); } diff --git a/app/containers/TextInput.js b/app/containers/TextInput.js index 3cd8598aa6..6915dbb6fc 100644 --- a/app/containers/TextInput.js +++ b/app/containers/TextInput.js @@ -7,6 +7,7 @@ import sharedStyles from '../views/Styles'; import TextInput from '../presentation/TextInput'; import { themes } from '../constants/colors'; import { CustomIcon } from '../lib/Icons'; +import ActivityIndicator from './ActivityIndicator'; const styles = StyleSheet.create({ error: { @@ -56,6 +57,7 @@ export default class RCTextInput extends React.PureComponent { static propTypes = { label: PropTypes.string, error: PropTypes.object, + loading: PropTypes.bool, secureTextEntry: PropTypes.bool, containerStyle: PropTypes.any, inputStyle: PropTypes.object, @@ -102,6 +104,11 @@ export default class RCTextInput extends React.PureComponent { ); } + get loading() { + const { theme } = this.props; + return ; + } + tooglePassword = () => { this.setState(prevState => ({ showPassword: !prevState.showPassword })); } @@ -109,7 +116,7 @@ export default class RCTextInput extends React.PureComponent { render() { const { showPassword } = this.state; const { - label, error, secureTextEntry, containerStyle, inputRef, iconLeft, inputStyle, testID, placeholder, theme, ...inputProps + label, error, loading, secureTextEntry, containerStyle, inputRef, iconLeft, inputStyle, testID, placeholder, theme, ...inputProps } = this.props; const { dangerColor } = themes[theme]; return ( @@ -131,10 +138,6 @@ export default class RCTextInput extends React.PureComponent { {iconLeft ? this.iconLeft : null} {secureTextEntry ? this.iconPassword : null} + {loading ? this.loading : null} - {error.error ? {error.reason} : null} + {error && error.reason ? {error.reason} : null} ); } diff --git a/app/containers/UIKit/Actions.js b/app/containers/UIKit/Actions.js new file mode 100644 index 0000000000..56b781fd2e --- /dev/null +++ b/app/containers/UIKit/Actions.js @@ -0,0 +1,31 @@ +import React, { useState } from 'react'; +import PropTypes from 'prop-types'; +import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; + +import Button from '../Button'; +import I18n from '../../i18n'; + +export const Actions = ({ + blockId, appId, elements, parser, theme +}) => { + const [showMoreVisible, setShowMoreVisible] = useState(() => elements.length > 5); + const renderedElements = showMoreVisible ? elements.slice(0, 5) : elements; + + const Elements = () => renderedElements + .map(element => parser.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser)); + + return ( + <> + + {showMoreVisible && ( @@ -63,13 +63,14 @@ const ImageContainer = React.memo(({ return ( ); }, (prevProps, nextProps) => equal(prevProps.file, nextProps.file) && prevProps.split === nextProps.split && prevProps.theme === nextProps.theme); ImageContainer.propTypes = { file: PropTypes.object, + imageUrl: PropTypes.string, baseUrl: PropTypes.string, user: PropTypes.object, useMarkdown: PropTypes.bool, @@ -80,7 +81,7 @@ ImageContainer.propTypes = { }; ImageContainer.displayName = 'MessageImageContainer'; -Image.propTypes = { +MessageImage.propTypes = { img: PropTypes.string, theme: PropTypes.string }; diff --git a/app/containers/message/Message.js b/app/containers/message/Message.js index dc2bb6b8ea..2deec7fb57 100644 --- a/app/containers/message/Message.js +++ b/app/containers/message/Message.js @@ -10,6 +10,7 @@ import MessageAvatar from './MessageAvatar'; import Attachments from './Attachments'; import Urls from './Urls'; import Thread from './Thread'; +import Blocks from './Blocks'; import Reactions from './Reactions'; import Broadcast from './Broadcast'; import Discussion from './Discussion'; @@ -35,6 +36,16 @@ const MessageInner = React.memo((props) => { ); } + if (props.blocks && props.blocks.length) { + return ( + <> + + + + + + ); + } return ( <> @@ -139,7 +150,8 @@ Message.propTypes = { }; MessageInner.propTypes = { - type: PropTypes.string + type: PropTypes.string, + blocks: PropTypes.array }; export default MessageTouchable; diff --git a/app/containers/message/index.js b/app/containers/message/index.js index f79ca8e7d0..322c334e76 100644 --- a/app/containers/message/index.js +++ b/app/containers/message/index.js @@ -16,6 +16,7 @@ class MessageContainer extends React.Component { username: PropTypes.string.isRequired, token: PropTypes.string.isRequired }), + rid: PropTypes.string, timeFormat: PropTypes.string, customThreadTimeFormat: PropTypes.string, style: PropTypes.any, @@ -44,6 +45,7 @@ class MessageContainer extends React.Component { onReactionLongPress: PropTypes.func, navToRoomInfo: PropTypes.func, callJitsi: PropTypes.func, + blockAction: PropTypes.func, theme: PropTypes.string } @@ -212,10 +214,10 @@ class MessageContainer extends React.Component { render() { const { - item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, customThreadTimeFormat, showAttachment, timeFormat, useMarkdown, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, theme + item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, customThreadTimeFormat, showAttachment, timeFormat, useMarkdown, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, blockAction, rid, theme } = this.props; const { - id, msg, ts, attachments, urls, reactions, t, avatar, u, alias, editedBy, role, drid, dcount, dlm, tmid, tcount, tlm, tmsg, mentions, channels, unread, autoTranslate: autoTranslateMessage + id, msg, ts, attachments, urls, reactions, t, avatar, u, alias, editedBy, role, drid, dcount, dlm, tmid, tcount, tlm, tmsg, mentions, channels, unread, blocks, autoTranslate: autoTranslateMessage } = item; let message = msg; @@ -229,10 +231,12 @@ class MessageContainer extends React.Component { ); diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 7f2f83007e..758294a163 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -382,6 +382,7 @@ export default { Share: 'Share', Share_Link: 'Share Link', Share_this_app: 'Share this app', + Show_more: 'Show more..', Show_Unread_Counter: 'Show Unread Counter', Show_Unread_Counter_Info: 'Unread counter is displayed as a badge on the right of the channel, in the list', Sign_in_your_server: 'Sign in your server', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 3835a602e0..3a789fa902 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -346,6 +346,7 @@ export default { Settings_succesfully_changed: 'Configurações salvas com sucesso!', Share: 'Compartilhar', Share_Link: 'Share Link', + Show_more: 'Mostrar mais..', Sign_in_your_server: 'Entrar no seu servidor', Sign_Up: 'Registrar', Some_field_is_invalid_or_empty: 'Algum campo está inválido ou vazio', diff --git a/app/index.js b/app/index.js index 6c906e2e19..009fefe86e 100644 --- a/app/index.js +++ b/app/index.js @@ -275,10 +275,21 @@ const AttachmentStack = createStackNavigator({ cardStyle }); +const ModalBlockStack = createStackNavigator({ + ModalBlockView: { + getScreen: () => require('./views/ModalBlockView').default + } +}, { + mode: 'modal', + defaultNavigationOptions: defaultHeader, + cardStyle +}); + const InsideStackModal = createStackNavigator({ Main: ChatsDrawer, NewMessageStack, AttachmentStack, + ModalBlockStack, JitsiMeetView: { getScreen: () => require('./views/JitsiMeetView').default } @@ -422,6 +433,7 @@ const ModalSwitch = createSwitchNavigator({ SidebarStack, RoomActionsStack, SettingsStack, + ModalBlockStack, AuthLoading: () => null }, { @@ -453,6 +465,9 @@ class CustomModalStack extends React.Component { closeModal(); return true; } + if (state && state.routes[state.index] && state.routes[state.index].routes.length > 1) { + navigation.goBack(); + } return false; } @@ -474,7 +489,7 @@ class CustomModalStack extends React.Component { avoidKeyboard > - + ); diff --git a/app/lib/database/model/Message.js b/app/lib/database/model/Message.js index 863b57862a..24dec99a69 100644 --- a/app/lib/database/model/Message.js +++ b/app/lib/database/model/Message.js @@ -73,4 +73,6 @@ export default class Message extends Model { @json('translations', sanitizer) translations; @field('tmsg') tmsg; + + @json('blocks', sanitizer) blocks; } diff --git a/app/lib/database/model/SlashCommand.js b/app/lib/database/model/SlashCommand.js index 5cc6ba35b7..8d792f7100 100644 --- a/app/lib/database/model/SlashCommand.js +++ b/app/lib/database/model/SlashCommand.js @@ -11,4 +11,6 @@ export default class SlashCommand extends Model { @field('client_only') clientOnly; @field('provides_preview') providesPreview; + + @field('app_id') appId; } diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index 3c78dec361..c0b859419d 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -23,6 +23,23 @@ export default schemaMigrations({ ] }) ] + }, + { + toVersion: 4, + steps: [ + addColumns({ + table: 'messages', + columns: [ + { name: 'blocks', type: 'string', isOptional: true } + ] + }), + addColumns({ + table: 'slash_commands', + columns: [ + { name: 'app_id', type: 'string', isOptional: true } + ] + }) + ] } ] }); diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index 8e38f76a62..ab3390ee74 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -1,7 +1,7 @@ import { appSchema, tableSchema } from '@nozbe/watermelondb'; export default appSchema({ - version: 3, + version: 4, tables: [ tableSchema({ name: 'subscriptions', @@ -84,7 +84,8 @@ export default appSchema({ { name: 'unread', type: 'boolean', isOptional: true }, { name: 'auto_translate', type: 'boolean', isOptional: true }, { name: 'translations', type: 'string', isOptional: true }, - { name: 'tmsg', type: 'string', isOptional: true } + { name: 'tmsg', type: 'string', isOptional: true }, + { name: 'blocks', type: 'string', isOptional: true } ] }), tableSchema({ @@ -217,7 +218,8 @@ export default appSchema({ { name: 'params', type: 'string', isOptional: true }, { name: 'description', type: 'string', isOptional: true }, { name: 'client_only', type: 'boolean', isOptional: true }, - { name: 'provides_preview', type: 'boolean', isOptional: true } + { name: 'provides_preview', type: 'boolean', isOptional: true }, + { name: 'app_id', type: 'string', isOptional: true } ] }) ] diff --git a/app/lib/methods/actions.js b/app/lib/methods/actions.js new file mode 100644 index 0000000000..ce4e127f8d --- /dev/null +++ b/app/lib/methods/actions.js @@ -0,0 +1,165 @@ +import random from '../../utils/random'; +import EventEmitter from '../../utils/events'; +import Navigation from '../Navigation'; +import { showErrorAlert } from '../../utils/info'; +import I18n from '../../i18n'; + +const TRIGGER_TIMEOUT = 5000; + +const ACTION_TYPES = { + ACTION: 'blockAction', + SUBMIT: 'viewSubmit', + CLOSED: 'viewClosed' +}; + +export const MODAL_ACTIONS = { + MODAL: 'modal', + OPEN: 'modal.open', + CLOSE: 'modal.close', + UPDATE: 'modal.update', + ERRORS: 'errors' +}; + +export const CONTAINER_TYPES = { + VIEW: 'view', + MESSAGE: 'message' +}; + +const triggersId = new Map(); + +const invalidateTriggerId = (id) => { + const appId = triggersId.get(id); + triggersId.delete(id); + return appId; +}; + +export const generateTriggerId = (appId) => { + const triggerId = random(17); + triggersId.set(triggerId, appId); + setTimeout(invalidateTriggerId, TRIGGER_TIMEOUT, triggerId); + return triggerId; +}; + +export const handlePayloadUserInteraction = (type, { triggerId, ...data }) => { + if (!triggersId.has(triggerId)) { + return; + } + + const appId = invalidateTriggerId(triggerId); + if (!appId) { + return; + } + + const { view } = data; + let { viewId } = data; + + if (view && view.id) { + viewId = view.id; + } + + if (!viewId) { + return; + } + + if ([MODAL_ACTIONS.ERRORS].includes(type)) { + EventEmitter.emit(viewId, { + type, + triggerId, + viewId, + appId, + ...data + }); + return MODAL_ACTIONS.ERRORS; + } + + if ([MODAL_ACTIONS.UPDATE].includes(type)) { + EventEmitter.emit(viewId, { + type, + triggerId, + viewId, + appId, + ...data + }); + return MODAL_ACTIONS.UPDATE; + } + + + if ([MODAL_ACTIONS.OPEN].includes(type) || [MODAL_ACTIONS.MODAL].includes(type)) { + Navigation.navigate('ModalBlockView', { + data: { + triggerId, + viewId, + appId, + ...data + } + }); + return MODAL_ACTIONS.OPEN; + } + + return MODAL_ACTIONS.CLOSE; +}; + +export function triggerAction({ + type, actionId, appId, rid, mid, viewId, container, ...rest +}) { + return new Promise(async(resolve, reject) => { + const triggerId = generateTriggerId(appId); + + const payload = rest.payload || rest; + + setTimeout(reject, TRIGGER_TIMEOUT, triggerId); + + const { userId, authToken } = this.sdk.currentLogin; + const { host } = this.sdk.client; + + // we need to use fetch because this.sdk.post add /v1 to url + const result = await fetch(`${ host }/api/apps/ui.interaction/${ appId }/`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'X-Auth-Token': authToken, + 'X-User-Id': userId + }, + body: JSON.stringify({ + type, + actionId, + payload, + container, + mid, + rid, + triggerId, + viewId + }) + }); + + try { + const { type: interactionType, ...data } = await result.json(); + handlePayloadUserInteraction(interactionType, data); + + if (data.success) { + return resolve(); + } + + return reject(); + } catch (e) { + if (result.status !== 200) { + showErrorAlert(I18n.t('Oops')); + return reject(); + } + } + + return resolve(); + }); +} + +export default function triggerBlockAction(options) { + return triggerAction.call(this, { type: ACTION_TYPES.ACTION, ...options }); +} + +export function triggerSubmitView({ viewId, ...options }) { + return triggerAction.call(this, { type: ACTION_TYPES.SUBMIT, viewId, ...options }); +} + +export function triggerCancel({ view, ...options }) { + return triggerAction.call(this, { type: ACTION_TYPES.CLOSED, view, ...options }); +} diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 5cf610a048..7a47837eed 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -9,6 +9,7 @@ import random from '../../../utils/random'; import store from '../../createStore'; import { roomsRequest } from '../../../actions/rooms'; import { notificationReceived } from '../../../actions/notification'; +import { handlePayloadUserInteraction } from '../actions'; import buildMessage from '../helpers/buildMessage'; const removeListener = listener => listener.stop(); @@ -250,6 +251,7 @@ export default function subscribeRooms() { _id, rid: args.rid, msg: args.msg, + blocks: args.blocks, ts: new Date(), _updatedAt: new Date(), status: messagesStatus.SENT, @@ -275,6 +277,10 @@ export default function subscribeRooms() { const [notification] = ddpMessage.fields.args; store.dispatch(notificationReceived(notification)); } + if (/uiInteraction/.test(ev)) { + const { type: eventType, ...args } = type; + handlePayloadUserInteraction(eventType, args); + } }); const stop = () => { diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index d173122d3c..c48be72d68 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -32,6 +32,7 @@ import { getCustomEmojis, setCustomEmojis } from './methods/getCustomEmojis'; import getSlashCommands from './methods/getSlashCommands'; import getRoles from './methods/getRoles'; import canOpenRoom from './methods/canOpenRoom'; +import triggerBlockAction, { triggerSubmitView, triggerCancel } from './methods/actions'; import loadMessagesForRoom from './methods/loadMessagesForRoom'; import loadMissedMessages from './methods/loadMissedMessages'; @@ -603,6 +604,9 @@ const RocketChat = { } return this.sdk.post('channels.join', { roomId }); }, + triggerBlockAction, + triggerSubmitView, + triggerCancel, sendFileMessage, cancelUpload, isUploadActive, @@ -1005,10 +1009,10 @@ const RocketChat = { rid, updatedSince }); }, - runSlashCommand(command, roomId, params) { + runSlashCommand(command, roomId, params, triggerId) { // RC 0.60.2 return this.sdk.post('commands.run', { - command, roomId, params + command, roomId, params, triggerId }); }, getCommandPreview(command, roomId, params) { @@ -1017,10 +1021,10 @@ const RocketChat = { command, roomId, params }); }, - executeCommandPreview(command, params, roomId, previewItem) { + executeCommandPreview(command, params, roomId, previewItem, triggerId) { // RC 0.65.0 return this.sdk.post('commands.preview', { - command, params, roomId, previewItem + command, params, roomId, previewItem, triggerId }); }, _setUser(ddpMessage) { diff --git a/app/tablet.js b/app/tablet.js index 839faebbf9..4b4530b739 100644 --- a/app/tablet.js +++ b/app/tablet.js @@ -112,6 +112,11 @@ export const initTabletNav = (setState) => { KeyCommands.deleteKeyCommands([...defaultCommands, ...keyCommands]); setState({ inside: false, showModal: false }); } + if (routeName === 'ModalBlockView') { + modalRef.dispatch(NavigationActions.navigate({ routeName, params })); + setState({ showModal: true }); + return null; + } if (routeName === 'RoomView') { const resetAction = StackActions.reset({ diff --git a/app/theme.js b/app/theme.js index 05476a7ed0..dac1b625da 100644 --- a/app/theme.js +++ b/app/theme.js @@ -1,7 +1,7 @@ import React from 'react'; import hoistNonReactStatics from 'hoist-non-react-statics'; -export const ThemeContext = React.createContext(null); +export const ThemeContext = React.createContext({ theme: 'light' }); export function withTheme(Component) { const ThemedComponent = props => ( diff --git a/app/views/ModalBlockView.js b/app/views/ModalBlockView.js new file mode 100644 index 0000000000..53a9283d28 --- /dev/null +++ b/app/views/ModalBlockView.js @@ -0,0 +1,261 @@ +import React from 'react'; +import { StyleSheet, ScrollView, View } from 'react-native'; +import PropTypes from 'prop-types'; +import isEqual from 'lodash/isEqual'; +import { connect } from 'react-redux'; + +import { withTheme } from '../theme'; +import { themedHeader } from '../utils/navigation'; +import EventEmitter from '../utils/events'; +import { themes } from '../constants/colors'; +import { CustomHeaderButtons, Item } from '../containers/HeaderButton'; +import { modalBlockWithContext } from '../containers/UIKit/MessageBlock'; +import RocketChat from '../lib/rocketchat'; +import ActivityIndicator from '../containers/ActivityIndicator'; +import { MODAL_ACTIONS, CONTAINER_TYPES } from '../lib/methods/actions'; + +import sharedStyles from './Styles'; +import { textParser } from '../containers/UIKit/utils'; + +const styles = StyleSheet.create({ + container: { + flex: 1, + paddingHorizontal: 16 + }, + content: { + paddingVertical: 16 + }, + submit: { + ...sharedStyles.textSemibold, + fontSize: 16 + } +}); + +Object.fromEntries = Object.fromEntries || (arr => arr.reduce((acc, [k, v]) => ((acc[k] = v, acc)), {})); +const groupStateByBlockIdMap = (obj, [key, { blockId, value }]) => { + obj[blockId] = obj[blockId] || {}; + obj[blockId][key] = value; + return obj; +}; +const groupStateByBlockId = obj => Object.entries(obj).reduce(groupStateByBlockIdMap, {}); +const filterInputFields = ({ element, elements = [] }) => { + if (element && element.initialValue) { + return true; + } + if (elements.length && elements.map(e => ({ element: e })).filter(filterInputFields).length) { + return true; + } +}; +const mapElementToState = ({ element, blockId, elements = [] }) => { + if (elements.length) { + return elements.map(e => ({ element: e, blockId })).filter(filterInputFields).map(mapElementToState); + } + return [element.actionId, { value: element.initialValue, blockId }]; +}; +const reduceState = (obj, el) => (Array.isArray(el[0]) ? { ...obj, ...Object.fromEntries(el) } : { ...obj, [el[0]]: el[1] }); + +class ModalBlockView extends React.Component { + static navigationOptions = ({ navigation, screenProps }) => { + const { theme, closeModal } = screenProps; + const data = navigation.getParam('data'); + const cancel = navigation.getParam('cancel', () => {}); + const { view } = data; + const { title, submit, close } = view; + return { + title: textParser([title]), + ...themedHeader(theme), + headerLeft: ( + + cancel({ closeModal })} + testID='close-modal-uikit' + /> + + ), + headerRight: ( + + {})} + testID='submit-modal-uikit' + /> + + ) + }; + } + + static propTypes = { + navigation: PropTypes.object, + theme: PropTypes.string, + language: PropTypes.string, + user: PropTypes.shape({ + id: PropTypes.string, + token: PropTypes.string + }) + } + + constructor(props) { + super(props); + const { navigation } = props; + const data = navigation.getParam('data'); + this.values = data.view.blocks.filter(filterInputFields).map(mapElementToState).reduce(reduceState, {}); + this.state = { + data, + loading: false + }; + } + + componentDidMount() { + const { data } = this.state; + const { navigation } = this.props; + const { viewId } = data; + navigation.setParams({ submit: this.submit, cancel: this.cancel }); + + EventEmitter.addEventListener(viewId, this.handleUpdate); + } + + componentDidUpdate(prevProps) { + const { navigation } = this.props; + const oldData = prevProps.navigation.getParam('data', {}); + const newData = navigation.getParam('data', {}); + if (!isEqual(oldData, newData)) { + navigation.push('ModalBlockView', { data: newData }); + } + } + + componentWillUnmount() { + const { data } = this.state; + const { viewId } = data; + EventEmitter.removeListener(viewId, this.handleUpdate); + } + + handleUpdate = ({ type, ...data }) => { + if ([MODAL_ACTIONS.ERRORS].includes(type)) { + const { errors } = data; + this.setState({ errors }); + } else { + this.setState({ data }); + } + }; + + cancel = async({ closeModal }) => { + const { data } = this.state; + const { navigation } = this.props; + const { appId, viewId, view } = data; + this.setState({ loading: true }); + try { + await RocketChat.triggerCancel({ + appId, + viewId, + view: { + ...view, + id: viewId, + state: groupStateByBlockId(this.values) + }, + isCleared: true + }); + } catch (e) { + // do nothing + } + // handle tablet case + if (closeModal) { + closeModal(); + } else { + navigation.pop(); + } + this.setState({ loading: false }); + } + + submit = async() => { + const { data } = this.state; + const { navigation } = this.props; + const { appId, viewId } = data; + this.setState({ loading: true }); + try { + await RocketChat.triggerSubmitView({ + viewId, + appId, + payload: { + view: { + id: viewId, + state: groupStateByBlockId(this.values) + } + } + }); + navigation.pop(); + } catch (e) { + // do nothing + } + this.setState({ loading: false }); + }; + + action = async({ actionId, value, blockId }) => { + const { data } = this.state; + const { mid, appId, viewId } = data; + await RocketChat.triggerBlockAction({ + container: { + type: CONTAINER_TYPES.VIEW, + id: viewId + }, + actionId, + appId, + value, + blockId, + mid + }); + this.changeState({ actionId, value, blockId }); + } + + changeState = ({ actionId, value, blockId = 'default' }) => { + this.values[actionId] = { + blockId, + value + }; + }; + + render() { + const { data, loading, errors } = this.state; + const { theme, language } = this.props; + const { values } = this; + const { view } = data; + const { blocks } = view; + + return ( + + + { + React.createElement( + modalBlockWithContext({ + action: this.action, + state: this.changeState, + ...data + }), + { + blocks, + errors, + language, + values + } + ) + } + + {loading ? : null} + + ); + } +} + +const mapStateToProps = state => ({ + language: state.login.user && state.login.user.language +}); + +export default connect(mapStateToProps)(withTheme(ModalBlockView)); diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 5b1ccb41ad..5e91b54efe 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -49,6 +49,7 @@ import { import ModalNavigation from '../../lib/ModalNavigation'; import { Review } from '../../utils/review'; import RoomClass from '../../lib/methods/subscriptions/room'; +import { CONTAINER_TYPES } from '../../lib/methods/actions'; const stateAttrsUpdate = [ 'joined', @@ -701,6 +702,21 @@ class RoomView extends React.Component { return isReadOnly(room, user); } + blockAction = ({ + actionId, appId, value, blockId, rid, mid + }) => RocketChat.triggerBlockAction({ + blockId, + actionId, + value, + mid, + rid, + appId, + container: { + type: CONTAINER_TYPES.MESSAGE, + id: mid + } + }); + renderItem = (item, previousItem) => { const { room, lastOpen, canAutoTranslate } = this.state; const { @@ -725,6 +741,7 @@ class RoomView extends React.Component { ); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 66cdcd0135..7785bc0010 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -355,6 +355,8 @@ PODS: - React - RNBootSplash (1.1.0): - React + - RNDateTimePicker (2.1.0): + - React - RNDeviceInfo (2.3.2): - React - RNFastImage (7.0.2): @@ -468,6 +470,7 @@ DEPENDENCIES: - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) + - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) - RNFirebase (from `../node_modules/react-native-firebase/ios`) @@ -625,6 +628,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" + RNDateTimePicker: + :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNFastImage: @@ -759,6 +764,7 @@ SPEC CHECKSUMS: rn-fetch-blob: f525a73a78df9ed5d35e67ea65e79d53c15255bc RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 73aabec1fc8f968798b655e7271760b17909648e + RNDateTimePicker: 9db00606d689f5653f08aa601c81b9d3266a0a19 RNDeviceInfo: 17e34f6dd902f08d88cbe2c0b7a01be948d43641 RNFastImage: 9b0c22643872bb7494c8d87bbbb66cc4c0d9e7a2 RNFirebase: ac0de8b24c6f91ae9459575491ed6a77327619c6 diff --git a/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePicker.h b/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePicker.h new file mode 120000 index 0000000000..1a65f4333c --- /dev/null +++ b/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePicker.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePickerManager.h b/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePickerManager.h new file mode 120000 index 0000000000..f4ed13f22e --- /dev/null +++ b/ios/Pods/Headers/Private/RNDateTimePicker/RNDateTimePickerManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePicker.h b/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePicker.h new file mode 120000 index 0000000000..1a65f4333c --- /dev/null +++ b/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePicker.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePickerManager.h b/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePickerManager.h new file mode 120000 index 0000000000..f4ed13f22e --- /dev/null +++ b/ios/Pods/Headers/Public/RNDateTimePicker/RNDateTimePickerManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNDateTimePicker.podspec.json b/ios/Pods/Local Podspecs/RNDateTimePicker.podspec.json new file mode 100644 index 0000000000..06516333f1 --- /dev/null +++ b/ios/Pods/Local Podspecs/RNDateTimePicker.podspec.json @@ -0,0 +1,23 @@ +{ + "name": "RNDateTimePicker", + "version": "2.1.0", + "summary": "DateTimePicker component for React Native", + "description": "DateTimePicker component for React Native", + "license": "MIT", + "authors": "Martijn Swaagman (https://github.com/swaagie)", + "homepage": "https://github.com/react-native-community/react-native-datetimepicker#readme", + "platforms": { + "ios": "8.0" + }, + "source": { + "git": "https://github.com/react-native-community/react-native-datetimepicker", + "tag": "master" + }, + "source_files": "ios/*.{h,m}", + "requires_arc": true, + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 66cdcd0135..7785bc0010 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -355,6 +355,8 @@ PODS: - React - RNBootSplash (1.1.0): - React + - RNDateTimePicker (2.1.0): + - React - RNDeviceInfo (2.3.2): - React - RNFastImage (7.0.2): @@ -468,6 +470,7 @@ DEPENDENCIES: - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) + - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) - RNFirebase (from `../node_modules/react-native-firebase/ios`) @@ -625,6 +628,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" + RNDateTimePicker: + :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNFastImage: @@ -759,6 +764,7 @@ SPEC CHECKSUMS: rn-fetch-blob: f525a73a78df9ed5d35e67ea65e79d53c15255bc RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 73aabec1fc8f968798b655e7271760b17909648e + RNDateTimePicker: 9db00606d689f5653f08aa601c81b9d3266a0a19 RNDeviceInfo: 17e34f6dd902f08d88cbe2c0b7a01be948d43641 RNFastImage: 9b0c22643872bb7494c8d87bbbb66cc4c0d9e7a2 RNFirebase: ac0de8b24c6f91ae9459575491ed6a77327619c6 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 6516757ac4..6259cb8925 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -219,1818 +219,1823 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2652A7D5CA703524DC2E8EB96A11A2 /* UMReactLogHandler.m */; }; - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 3872A721310BFDB6930B7D5C1D296B44 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2E9A96B006F6156BEE69353385D25F /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC67E8E06887F48D79DF2EC45EB80D7 /* UMReactLogHandler.m */; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D5A75DD613220BFE27918D968044E48E /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6388FD3376A8816F4CB9B795094C3949 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 004DC6CBB00C61E9D96DCEBD15DE95FD /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EE4469F781740A81B073D2C069DA9B27 /* en.lproj */; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AA302EB838053172E64E85842C57B8 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5732A5ED12474994E30B582DA227CF52 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0C60238FADEDA52CCEB0E83BC1B189 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 14634337625129A3A939C1F0E42B21F3 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6CC8EDE9555F91C5730A2814094B09 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E09A60C2A51157612EC0773C1BB677AB /* RCTEventAnimation.m */; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8D6B2B1C7ECC18DCBDF847EF2DE14A /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 082959F2B8E4426107DFD7A58A2F1A2B /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A75E4C172CDB1EE77C504C1284D4CA1 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4B7870CAE91B35878C676011311F07 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F49FE03700918174AEC164794F2D225 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 866B8BEC747C62D75D22399E190F5E3F /* RCTEventAnimation.m */; }; 014A953E16242C5C2D97728BE5EB3FED /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E06F533B0622CF71450FA198FEF0B65A /* FirebaseCoreDiagnostics-dummy.m */; }; 018BC758F67618B02AE7AF70B2E5D29B /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E17D9CD11230D3D992C8F76282A0A784 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = F8EA467571781ED6260FB02D8B6FBCFB /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 03401FAFF52132A91A038D9A41DF9297 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A36B31DDC6BF36C23B2DD57C40D9C567 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCE9681D48CA655E108B358ACD8AE3C /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01E9290B5AF4EF792AF0770821457C81 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 33380985DCC39CF44A1E64982DA162DC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = BE559106116A7A7648B12A03E9D4D28B /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = AD501E44E8B6B7214AB9EADF1181C1F3 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 02995B31B424D53935F8576996C9F306 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD1AACC7C607436D920FDA17490CFA4 /* FIRCoreDiagnosticsConnector.m */; }; 02D340EA0E9D8C59CB3B6584EA53BCAD /* GDTTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE1DB3BD42FB01C6A229D7E803314EF /* GDTTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F88E1771428488ADD1003A651794EC /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF84E60852952F964BF0FA1F101767CB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C2544F40662DC7D9BAB9A046C7EF0C /* EXVideoPlayerViewController.m */; }; - 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 780592FAFA2472D74CCC949A8DB2BCB6 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 015105489BE88D6B7A958B5FC40AA949 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = FE7E75F43B3D11A6A85FD1B17B69328A /* BSG_KSMach_x86_32.c */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F7C8D8BD934B4948079E44B625BD7E /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 25267DB2604CE566026E1F22B8468B73 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3582942CFA8E78918EFA4177321D2119 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B316B81E4609D922262AAAB60412C3D1 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E7C9629AAE327315C865F91106C2DA /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D39B25C972AFEF60588CA5EBDE4DE61 /* EXVideoPlayerViewController.m */; }; + 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF7D6F19831A2EAC34848A9705C9715 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 844F783A7D1E9F58F9CF8ABC7D95DF5A /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 92FAFDF202C384CEE3BF03AC00043D82 /* BSG_KSMach_x86_32.c */; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 3616676FA36F77D6CB565DD31D5C3622 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D939F8C0EE52D1056857C2C9F08046 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DF53CC1264A950CE5AC68CC14E1560 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E14E8D70831052A1B75375D21618B9 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D782A30DE4BCBDFBDFE3337B86E535 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB2579ADEE7C759DE9786F9C48BF1B2 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D288C6A4340085CAB3A1474DCC103CFB /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D05ED53DF37014DB28AD717BCDAD9F /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73920868DCA9D64003E58186509D3DE8 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 536AD2D678EA51846B1873C5C046ACAC /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AEFCC766316C33AAD2B4654961656828 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3540C9864A9BA4D74A6A0F1374562723 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = B71A38D8C21D6AC2C5B4B32FA3819791 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E13B87B985373791F26244EB6E8CDE /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E85D58D25E1A8F4B47A3ED7BEFA4F6 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C3EBAFEBE08088002B1F7333E2E81FD /* nanopb-dummy.m */; }; - 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9013B402E6CD2423E8F50F42CDE02510 /* ARTRadialGradient.m */; }; + 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EBDF0D4DC0E55C1373F1DDF69FDE4F9 /* ARTRadialGradient.m */; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 4272032543868088ACE960F8C33300D5 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A90490482B5CF1E36BAD7CE03D6C4C1 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5052AFC572BBDAF774050875123EA3DF /* REASetNode.m */; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = B71E5DF4E7A46D848691A1898DDA99BB /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 72123E7D02C388515AB2243BC69C8B07 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 69021CD0329E9C6EA7DF13D36EE6AE17 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA635C89BBD91B13AAF3751ED52A8A5 /* REASetNode.m */; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = A905B1B82C1F6C380AB77151E8D5E078 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C75A9118CBE7C8E482568B6AC7B4379 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 063A7D878ACB2A6037E13C4A23179557 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 49754C174E317E6EE3EA06B03BE8AA76 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0642877CFA3BABF6838B380EC90E850C /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = E398D8F3A65FEB22072B0B2C2AB7EE26 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6C89FD953CD3B03014E0BF694985D5 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F5D9DE81FBB94FF549E764B97256F3 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50436AB6D02FBDE3A55FB16372626C24 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE4E6D37C942F20AE082A5C3E8EE42F /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E06EC5619F310086532DEE3DD94B328D /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 50019449BB19973BEB439EE8F9847908 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 06DB6A5EF09D9417BA180FC364973426 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B2C53771D976818BB03D0EEEDA1AE8F5 /* SDImageAssetManager.m */; }; - 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 8430F4AC10659A77540FB906DDD5D2D3 /* RCTProfileTrampoline-i386.S */; }; + 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2D0609493E013F3C877E594E8FA8BE27 /* RCTProfileTrampoline-i386.S */; }; 0769A9F39A25A9A976CCD0C87C3D2CFA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2985690376C832479B6CBEF994125526 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ADEB2A2DF415846ED9E61505E0063FC /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = EF9921F47FF3BDE4729BAAA616C80D74 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 077A5F8C4B9C33DFA15873A399B2597C /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DC50B8081D99A0ACD90977F683BA75 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 077EB4B39CE4EDCCB0E0FFE458F38A23 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A7198670B947621667C80A667B332EF /* UIImage+Resize.m */; }; + 077EB4B39CE4EDCCB0E0FFE458F38A23 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = C550F27B5025D7535A042C37C8B851F3 /* UIImage+Resize.m */; }; 078E653C3724A2179DCB9018B3F7CCFC /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 727EF25DA0553E17DBF96ECA72544A2F /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C78B1708C401EED5647D6C2FE131AD /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77193DAAF377528B186328C5EF992C1E /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = B39ADC3605D6438ED02ECC71946C66D9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5900A6B36CAC4D2231B49EC3DFFFB96C /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 081768B0FABD06884FD6F65643672F1A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EC76B688A264B41901746A6D78F349 /* SDWebImageDownloader.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E31863B044F19D12447D6ACEFF3517D /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69BD33148C66110CEE2BA1995A01DBFB /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C7ADF392788CC6CF09E6BD782E3048 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = A6203155C4E6DA70F162074DCF722F18 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E41EB031C72ABA2A58994F42A1B667 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF49A48715301F1EF9B5A1AEE979811D /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 810303E8C157F8E7F0FC40012F491F1B /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4235CAB374C9F97803E0BDD0C514BEB5 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36C1854B287AFFB26744246A35457328 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3123A952F455F3BA8BB9C13899B78C /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 758A0D976C7B66A9F730027FB1B32121 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = D912E9C8CDC30A2DC90C787F99DA9738 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0135D46DF131834F793B0B429E1533 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = AC535588D6E1BD18ED100CDC4973D51A /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7B33BB49E5177A2B1BC344012308BA /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0923FD3747647148D132AB7CCB7B375A /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A8758C74594F364FE8D55BF1A8B0795D /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 094A110F9B7125E1ACA5C55D97CE3305 /* GDTTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = F73B4EEF0245C03A0E2B6F96B1549450 /* GDTTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B16EC2B5C2B0219D785C69C18D3A68A /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E32B915F68813180BCB425D417A907 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F4D24EA40409FA406FB89DC4839379A /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE3A2A69292D5BACA45543CE0ADE605 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76572092726857D1AE6D0A21BE54EC1C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0AD001626F3DA49488E7AF64CBE2C0 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6D119C241935EEAA66F92C1D65BDBE /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A6BA0F3B42A8F085AD76A71AD742B25 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EFED34F1FB01C5CC55DBFC8779846549 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6719ADA43B59D3B4822E81C20CD371 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C38BD63E38308306F01271471A51A51A /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5305F1456CC2A2DB218DE2992B1FEA67 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B19F7AAADC1A5F33EA0427E8F8F8263 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DCDF8ED22058268F7B1AB0F0F4DD74 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = C76EC544F4F5B513784C1FBFD74E18DB /* RCTVibration.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC4157AF12D76A5931613FD14A2FEDB /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 37F34983C5F8CA9DF6901B6AAFB41865 /* RCTVibration.m */; }; 0AE630EDDF3087755FB7900375791D51 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4A008B57CD5A6E9E1C2214467F5DD0 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 06ECD4866519E509B39FF4090E2C9C41 /* RNNotificationCenterListener.m */; }; - 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 029E49944B031B0ACD51A3E63B91B74B /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE42F20F321B794FED191D71191AF968 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A72DBB2243416EC64E69FF0CCF66CF /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ED83296143FA22EDEF12D431300B0B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC3AF8391E634CDFC59029683EA45CF1 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A8C6CDE1AE2B0E817C47F53467B416 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82FFD66E5104CA67602113F72CC240CA /* RCTActionSheetManager.m */; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 63EDA347B70C089C01A97CF736CD4309 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A76CA5719F2A374889232785A7B9C502 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D748330BFCDB2BCAE3663E9198FF258F /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E906D709FDA7381D9058890236F110 /* UMReactNativeEventEmitter.m */; }; - 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A76528D15834F35449B62084F8DFC0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9055B4CCCFD33CFC7E4239C6EF3F35 /* RNNotificationCenterListener.m */; }; + 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FAEDC38D7537173AC92AC923861A2862 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 477C84944CA93ECD923D49B6D5DE0612 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 556F58FFA119B290E284AE0FCBE98DE1 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C8435C09230E8E776E52E0F584FF19 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 993B20437B52813555191F9C2E875A4E /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = C413EE953021DCA4AC32898DA184C0FD /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0710505B28D48508BF15A39FC2F659 /* RCTActionSheetManager.m */; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = E40ED80CCBC57151A56EF37063BF8FB9 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = C6955AEE3EDE65A8289B0CB4CEEC5DF7 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FFBEE170794A5DB487CB2774FE9472E /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = CCDDCB9A52D9A03994693CD0D6DA6DD7 /* UMReactNativeEventEmitter.m */; }; + 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD0E6529E9841D6C85997AB91B4B18D /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C8E1808BF269659F424FE54C401AB5F /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 774A4843386AD8B6A0B481C2BEC76830 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6565D82479C35DC072E05F079F25F281 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F2EC5EE4A9961AF30801FA23083E893F /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CDD7EE9C1C468DCB4FAA08CD8969B17 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C2C0676B2D8BB0A88190CB1DAB36C00 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BDB517C15B3C14E8127A615F35D716 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A133FD543B1274E44C44D609C59AC63 /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 683FC744AAEA5CC4585354728561C685 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 170D4C06361FEB7268E6CD7CB57E7C16 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CFB0957C67C24787E5C546936BE3550 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = C77FC6CC194114E0452237893FC64900 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D0B0F672F1016D9C9B72AFD4E83E04A /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E3503E71EA767ACE327A218187EF6033 /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D225414A45DFDEDBA19BEB5F0A30704 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AA29285B90DDC9884A6CE5AAEC390E /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA79A3ADA53FEDFBD4C46CD89E04C25 /* RNPushKitEventHandler.m */; }; - 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7BAD59F6023F272A3C31D15D2A6B22AD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7051907ADC28F1E2A6EF29AB364DA687 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A643CE34F02117FDF88B2A6F37950E94 /* RNPushKitEventHandler.m */; }; + 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB58588FFB3AD14C9A80448F61D7515F /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A40EF82C56217F0738FD4B01182B1FE6 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = E5611B527CABABDA10E1A7A2C70ABF5C /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0E620510126D852FC371F7F9178AA6F0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 390B144A1D5533DDC72A1108DB65D532 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A6599B5E7845BCD69061F3A303D97A /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B23D1FDBE32812A863E70A8CF24AC2D0 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5666A5BA1FED758B8028AC4746EDF849 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B73C437984846CD10BF9C8FD07020391 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0EAC2ADA214241BD4899DB8B47726FD2 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FC612B6D9217B2844818B263CA98D12A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DCBFCCD3269E27258B2BCBA21A5732 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D0FE01A8134FB0C1F55977D55508FDED /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA94B333E9C2CF8D949D9141535634B /* SDWebImageWebPCoder-dummy.m */; }; 0F199BC919DA606852559D57EF858777 /* GDTLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A344D744B87D2D6D51260F91A2635C /* GDTLifecycle.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = C61717E6EBAB20E86C4A2961F0FD4D45 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 720A8300022B6EED3F587923DCA9DE59 /* BugsnagCrashReport.m */; }; - 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7824FF216D45340CC6AA893A3D15946F /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 208049EDC98F6FA872497D64D295A3C5 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = FA806BBBE9D663E1F3A1EBBF41033ADA /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 88007515B11CC2503E9F5A6033E51A95 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB1051659F7CBEC4619E3E4F70D0882 /* BugsnagCrashReport.m */; }; + 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AD28747ADBEDA87050DFAAA974028548 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 44817FB7E2ABCC265E65CFA2B05C7237 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F8B4F4A03F94AF7D250100CC9ADD78 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F56003BB4ABF3AE50FC4F26A90B5C09F /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F74E8A5F532A34DF54D4FD8FA101A47 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7609F49973D8DE1FDA2A02AE36643B /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F7CB1F6725B33F8063BD453A4435278 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2BF3DAD8D39FCFB0486E81C37088B5 /* FIRComponent.m */; }; - 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DE8B595C6FE9F6B00706B8E1B2084FC /* BSG_KSCrashReport.c */; }; - 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 510D444C7D882F7FA6C64952160D9B18 /* BugsnagSessionTracker.m */; }; - 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 76ED9D28EED0243EC7E23698DDBADBF6 /* NSError+BSG_SimpleConstructor.m */; }; - 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 502D1B01E457F17A5614B1ED35D8C026 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2A4992DE533D775915D65FDAD027DB /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 943441E919563D1569077A8D87875F8C /* BSG_KSJSONCodecObjC.m */; }; - 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = DC9A7FD402406EE14CF5A2B3091C48BB /* BSG_KSSysCtl.c */; }; - 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A560EB40FC009217DC4DA3D4AB3641 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 81925D74BC93FA6D687019F99B428209 /* RNFirebaseAdMobRewardedVideo.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B257153C7A0DE61085AEE1B94DADC8 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B89B090ACBED9661241F4684C2BAFA /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8454051B9054E083A8BBA22AFA4C34CD /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD7F34093205C98B4E3AA38720E16B6 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = C8FF3BEABB9BC47DAA40C934524C8E83 /* BSG_KSCrashReport.c */; }; + 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB34C9AC11E5CE0BFE1FA1797742279 /* BugsnagSessionTracker.m */; }; + 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 287CB52758A01C448AEFE3B81A28CADE /* NSError+BSG_SimpleConstructor.m */; }; + 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C411D3236565B3A06B8A05735867DA /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6CF259A44CF9DF80BFD89DC5907AC4 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = A420D11BF49824F72E91234613E12031 /* BSG_KSJSONCodecObjC.m */; }; + 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7241229C438B50D4DCCC6AEFD59D51 /* BSG_KSSysCtl.c */; }; + 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F13E5BA2F003C2AD077764D62C67C1ED /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 67607857655CDAF9DACE793EEC13786F /* RNFirebaseAdMobRewardedVideo.m */; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 521DB349BE450C04573E730D5FF9ED1F /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E65BD7F64BBDAAAE6D801F5B393FE3 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B8957262993233598CD4806BC13EE726 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E570372D9B3EF0DA21E72D3FA1D03F /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11129F1CB005A708A117077C32350240 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C06B6406205BCFD668DE5D8F54A96E /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75AA6DD00A2478FAC35C07DD73FDCC61 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB133D484C08862DD3FCB34F3F63256 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2E7C1055D1900AC0D40108F1EC2519 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41145DB6B12EC01D187F813FAEB19857 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 380FBE2909AF477DCBEEC054550F2614 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = D233ABF5A66CC51C775AB4A1A43EBCC4 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11AB86078F205218D679E1C0BB086684 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AB30A3EFE9A1E50864D0741BD90550 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11B33B2F8BB6CFADE2A5ED140CFEC8C1 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8B9646878F1F3DB7477DC8916D9E9B0 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 72137B6EE09994AA6387B176220EAF01 /* BugsnagErrorReportApiClient.m */; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 813EF8E8728F6807FC791AA84CB01376 /* rn-extensions-share-dummy.m */; }; - 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 585F8B38616FE9A0E6FD8F2497DE3C9B /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = BADE76B836DA5C67A129B2123E08184C /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BEB86911BC3F664FDD33F357B198D0D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F2F18B89E48A9E676F45E26063BF3F0 /* BugsnagErrorReportApiClient.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90B1F52B1F454638E0627016BCA69CF4 /* rn-extensions-share-dummy.m */; }; + 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CBABEC94E70081AAEE2424463752F8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 917AFCA2801BA90C79B13088F10DF09D /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D7C6D1BD3C9423C251D5877B013378 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 128E6B16586CC0971D3F06FB409A8D79 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A26B3BE96D2E05156203DD41BD0155B /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD2ECA648F806B989A733CAA2DAF55F /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 449428C979474F349FBCA71A58A212E4 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12B4CB2B1F8A425ECEA73AABB12E7A30 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 673DBB2243E639BDD8C7E82236BD7565 /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = B09EDCD56064F10BD42C2947403239C6 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B93061541761A8A35B0ABA87A777E9 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = AD464DC212D3FA00C00082CE9A4F5116 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B6AA38713255D261FDE99A974E08E031 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12FA7519507285624A8F734D8A3939CB /* GDTDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 500000D98A3ADEAC94F4698268444755 /* GDTDataFuture.m */; }; - 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5269F03BB241F03F3D874F6A711CC3E5 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EAEB65122A1B7B66564B09118E9DB18 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1680E842DE3EDAC364EC755FF7E627A6 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0E24054AE40C9CD36A0E9F54F63186 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67286200A7DBE3F2CAA8A84ABC0D6EB4 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 969BA394CB97E685B03D51DDB15FCDA4 /* REATransitionValues.m */; }; - 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = B6256FD30234AC09376313337C07EDD5 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B6DED11B420439E796257AAB9F9A0C96 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C8327DC370B5B24F3945529C1786252 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CD84BF50A0B6A933D0FF22F45F0465 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA9F30C56E3D91E8E7A46E590973ED6C /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 92403C0C7B1D4F437F93A60AAA768932 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7453FC765B3BE0CACDDC5F0EA1BD0812 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = B48A2EA23D4C0A5B39EA740A1B4C0B0C /* REATransitionValues.m */; }; + 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE70E03FCF5F3D3A476D63FB08869F0 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B479A5347E6CE6A9645129EA6A7159 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13C1F0FA601FBB4544ACD9D57124E3F9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2B0BFE57676A5D16FB11E7FD654EE50A /* de.lproj */; }; 13CC63F0A5CAA2C7909B84D3C6D4620B /* GDTStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4250287D6892F8E6A4565235E7A5EB /* GDTStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F24E032AE04F05AEABCB1C7032A3AC5 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA55051C846DAF6CF2A29BAD1CD474 /* RCTCustomKeyboardViewController.m */; }; - 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0050F422BD1C7C80671188634CC725 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8FF8C401A4BB41C7A86986BE0A3A53 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = DC756D8D350A874AF5246128B5A910BE /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B0E798A56580A2D2AE9984C2CD43074 /* RCTCustomKeyboardViewController.m */; }; + 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5BDE0FB49A15E590FDEC3D9D947CDD /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE345C23442F216F1CF3AD8BC422E5F /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F385844EA8EDFB10A8935DD248B4F4 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB72A68FADD29C24BE001A314E12B4B /* ReactCommon-dummy.m */; }; - 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E5ACC4F6FB79C540190270E906A01A /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93F80DFB49D610571AD2E04608092506 /* RCTSinglelineTextInputView.m */; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01060FCDBEF265BFA21F91667CE83154 /* ReactCommon-dummy.m */; }; + 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DADD905867794EB8BCD2EBEA004EBBC /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A70CAF608A1E6D153DB84FB781F0D98 /* RCTSinglelineTextInputView.m */; }; 14E29E6C822F8A5CB16A6B5EE716D81C /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C45038DEE219BD064B99157EBC2D912 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 31BFC6EBB39323E173C6EA5C1015C34F /* RCTInputAccessoryViewManager.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9755B1EADF0D52F4B624DC293F075894 /* RCTTypeSafety-dummy.m */; }; + 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D78552BC13412851EEBDA20713319D /* RCTInputAccessoryViewManager.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20F511A3AE582E93EEC40EF2BDF8F751 /* RCTTypeSafety-dummy.m */; }; 15320769AD3A12888272E5E141BFCC9C /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D49C860391A2659769FF7954DF6C5EE4 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 69FEA0CE2B56460764B2EE0353C91875 /* RCTValueAnimatedNode.m */; }; - 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EE3027DA4A79F1B5A8C6FA0F9E1C0D /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E17BB23627E1BA02957C5B5995D92D /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA927A7B51C78FFA7D0234360BC62C9 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC448E6C2F565885B42DEFD6F04AF9A /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 406EBCA52D15FC2B69B3007D0C7CE814 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C041813BC41F2F49DC9C0918CFD786D9 /* RCTValueAnimatedNode.m */; }; + 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BA25C03D8346FC39A3B36B4BCB61E952 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A999FA07037D8C28CFA99B631B6C334B /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D07CB2E2D6A6B466D1E9A18803476D1 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D9426D6A7FB61A887D503ADBD24144C /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D33921BE9769249475C3A87ECB9B0D /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA63D41638D31B00773D2AF47F7BE37 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DA376D4A149C74CBB34B2246AEC0E1 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D56562BD166A333AA792BE860DEB9479 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BA7129E40C780FCC9B2C35430A87252D /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B4BC88601EC21E02217769B9B1ECE29 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3226B2EDCDCDC805996B2CF568D2619B /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1669AFC658678BE6CCD8B55B48F9C97E /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4451BC0E9BF66D37E3D3B77242CFA4C7 /* NSButton+WebCache.m */; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC2517B5577AF2A22FBF2D20FEDCC46 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 984EA1E705F33650022CBBD03DD3B174 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168EBAAD25584C70CA9111D5CCB8180E /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = A1191B3579F77F069B1C7353C4447B7B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = B9374B97BD2DB962C1DA9C22EAEF6BE3 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5312D9A2C56B36BF96D068A82D3D4030 /* UIResponder+FirstResponder.m */; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5E5B409D57DF790D19E9EE422A74F5 /* AudioRecorderManager.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BAA56EA5DB28E6B266B2E3056ADF68 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1A13E2CC09905F29BBFA671653BED3 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3350EB711F5CAA6C40CFBB421C7AEAA8 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4CE417EB7BCE41F7D73D710299335F /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = C3790B3E64A5743708CDA7AC3A352E19 /* UIResponder+FirstResponder.m */; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E489C8EF128611E726278BD75FDCCF03 /* AudioRecorderManager.m */; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD04D51CE5D0AEB2B519A68E6C3E90E /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 426FAEF1C0C7577FDF76C49002CAB1B0 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE018BDB38E30FEFA9F2E4E04212C3F /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 178E75DE2938CCFCEE8DE1C3A13FB126 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2690ADE71F761217060D0FF0C1378AE6 /* GULReachabilityChecker.m */; }; - 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A811A9EEE91452903987BEC43ACBA5 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C7118DF0E7B234BAF5DCD97B2157CA65 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17D2A3D9D174A9BE8815BCA3EC73B4CA /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB7A76E1373478AD1844D4833C112B8 /* GoogleUtilities-dummy.m */; }; - 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2842E95CD01C873C9F7728A33D5FF2D6 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = AA8E9C259CC81015A286B0DB81ADB4A3 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 171B8AC9BBCC6BA3BD06559401F683A3 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD53C90A5C7792FFB2160DF9511F26B9 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 837A8379C8855239AA7C291770C26657 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2008BAA06F83FEC23799BE4E7BA8D0 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F862EA1AA055373123163311F43DCFD /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E5D64282CC7D790DF0D1CD3AC276E8 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 18E054C5BBDA83CCE21A718C8DD17262 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F91ECBE594003E7FF24A57760F8A5A1 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3997100DD9909182F55934D68E8E3E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E251E72A90E1284708697322B5F0686 /* BugsnagCrashSentry.m */; }; - 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BCF22F29081BBA22AF74792AEECAE4 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9E85E86408817BA6A541374913C4DF /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A88468B5807972047998E8D9F12C2614 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1264F013A1BF0B5AC5A2C3E4D5E61DEE /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B532B085F7B45D6DD72D8BE49A120916 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4675DC5321EAB64DDE25C9B0E3423B43 /* BugsnagCrashSentry.m */; }; + 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E15D566E869780991CBD1B44981393 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2743ADE8B8346F229A820A6EE59C6C3 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C5697EC5539A94D88DFCA46BC4FAC53D /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7EE7B40BA6C455473BC868F9ECBE8B /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9611B7CAEEF806303B3F81D5B1FFA2BE /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABA499B725F3E5AD5108B73B0CDCCFC /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 587C7FDA38BA7560CEFA457CC7C60308 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F1554D31C9D718533026EA3AE52938 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = DBABBB14C13E95007EF4229F5005F232 /* EXVideoView.m */; }; - 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C63FA7C1210846B888831F24CF9756D /* react-native-notifications-dummy.m */; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B48AA96FC4E5BE7F53E5AD5D91CC070 /* RNUserDefaults-dummy.m */; }; - 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FCD1A9EC34F755EB14ADD4CFB193E2D /* RCTDecayAnimation.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = B6932E5B3FB33A30726CCC21AC9D8021 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBDEEB7B041D04D9796FE55A9C05BBE /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E10B0FA15A9C3809484C33493DA9F7A /* RNFirebaseMessaging.m */; }; - 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC75DCCD4BEFC147B6C943F2BFF07A7 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4E2165343805BD6AE57C4F2203CA31 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 120AECB355307C9E4A7138290743C815 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = AF3D6B2D719E692B3649250EC186F095 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5FA36B8C1C1B113ED1B7D313424F09 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D17941B59F44323C04C1DAC48280552 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D098BAF796AD84A72CEC69862AABB8 /* EXVideoView.m */; }; + 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D162C3557E14886DF5D130C63966C11 /* react-native-notifications-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5466BA0485D3F92AE19B1E23AC599462 /* RNUserDefaults-dummy.m */; }; + 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 45EFD1F68CE757CFF269AEA583107427 /* RCTDecayAnimation.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 8985DAE76335A3D2EE53D18D85CD06DA /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = F314944C00BE6B09E422BAE76B3F1334 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = B3FC9FECE308309CFEDA0657B6E891AD /* RNFirebaseMessaging.m */; }; + 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C98681341CD087B588A35468223DFE7 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2683BCE18B50187450E5F4959A40292A /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EE30D43E5C4E5D4333AEAD15C715ADBF /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 50462777897BD20652226C61A701666C /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F3674E7074CD3084F8551CF04BA9AC /* REAAllTransitions.m */; }; - 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F71403F7DD62BF20974AF873CFC1BE8 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5524B1A2A7B10ECFEBDFDAC0BAC57D /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = C807C7EA8D2619B6AFCB7F3C9AA5B4AD /* REAAllTransitions.m */; }; + 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA68F18A14101923CA3305B869081B3 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4975D25D641388661ED009D8D308059D /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C5BDB058468D11E68A6B18163FAFD43 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 93DAB7840FDA3104820FF0CF8863F7DE /* SDImageFrame.m */; }; - 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = BB97DE41686AF3B3368CA0E5645C0771 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE9D9CA74146F1A9618FB3ACF57C64B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 82EF58F8DD5FC7A85BEFD70ED49A0C48 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F988BB9CB530CBDB9A1791E9293B40F5 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D0E9D473AE2CA5B3C418987B185FD40 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B26AD7CA3529E84BB0792DB6416F749 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4D65C3BBDFF51BA6D647FD98259983 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE27E1A7549751B82486A8AF88C0690 /* RCTTrackingAnimatedNode.m */; }; - 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F31A8E3C39E02FA88FFE80304BBF16D8 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C65660A495E07C3058EEC513FA0C66 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D796D2DD86DD6951ACA54F5EA194D3 /* RCTTrackingAnimatedNode.m */; }; + 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7142B87598A2FAD8025EE5B67ABA1986 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DDC6AFF9544E2C26BABF6699C9D6B8F /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0B1D7876432442870E5B38CEED78B5DC /* QBImagePicker.storyboard */; }; 1E39EB7CE27A1A84AF4831760FF1A643 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 448AE9F290055CE55E607829C8C0DB27 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E6C0F4ADDB7C8B2B268AB3794E30791 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 037FB23BB574BE0B3C39E431D92A9646 /* SDWebImageOptionsProcessor.m */; }; - 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B1B6E28504EB928A07EF2DABD68A15E /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B7533902582F0897D80E9DB3E7F3415 /* RNSScreenContainer.m */; }; + 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA14F6F6DF113FE70057996FA76C819 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CA4EFE95627DE5E43FDD76604BE5519D /* RNSScreenContainer.m */; }; 1EE29AF938E8A2AA9DB15EC2CF341FA8 /* FIRCoreDiagnosticsDateFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF9BB1CA206380572EFC80409667259 /* FIRCoreDiagnosticsDateFileStorage.m */; }; 1F0C67962D2BB44987FD1B99593098A3 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CC44B74154706E64AF34CD3723A881 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F8BD67D3120D5BB19A1CB41C1B94BB1 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 56384D31C64B8BFFF1A1FAB31C28328E /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BC9378C8A75CCAF94FD9BF2CE8094D5 /* NSTextStorage+FontScaling.m */; }; + 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = ABA4C6F1823A46505C589663FF569D2C /* NSTextStorage+FontScaling.m */; }; 2001857FBC4E5A92A474A1694AE23BD6 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC65DE6DF5D259B4E20F7E232146BFCC /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 0934F23676656CA6E9E4B183AE71892C /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F9C5ACECB420400F3061D7B095068C /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 204BB3DDD58655FDF8A73F404B5FE278 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C61DBDDB08AA75D46C6474F4BA5A806 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02597CDA7BDFD060932D57516110A586 /* UIView+FindUIViewController.m */; }; - 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 40868694D529A4908A117955291055E1 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 827510132A0156A9537A24136063186D /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F7D2359A2E6F37683E388997567A5424 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7102B3AD1E3C36674EB5C257CD4B8 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65603D0A600B757BE92A2AC67C32E095 /* ARTGroupManager.m */; }; + 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C37C25F4A945ADF194855A7D3CFD188 /* UIView+FindUIViewController.m */; }; + 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1AF04F5E4E9C6FE295E0CEE224AB63 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8012D5582D3EC343EBE5BAD309CFA435 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 683BD0F62B4E7C43F38352CF3A511817 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EBFB2DAD1AD96AFF141E7BF795ECBC /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A3B488557565118EC138E8B533944B /* ARTGroupManager.m */; }; 20B48F4438783B90D6ADAB673582DD9F /* GDTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 59BADB0D709C0168E6FFBA9FB282C696 /* GDTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C40D6A598FB729DF4E54AE77640145C /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E232CA588DA8C46069BA8C54A246A8 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6E647645C49AE8A5FBB9354CF640D0 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = CDC9F6875A8D886F6A28C664B969A564 /* RNFirebaseAdMobInterstitial.m */; }; - 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E7BD073E8E234343A349355E2A8D013 /* BSG_KSCrashC.c */; }; - 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E1404831699A6A4E3B894479C40BE59A /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6F1F6A2DD066BB2C50EEEEE0FBF29E /* REAAlwaysNode.m */; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = FF841DAA10E8FDA9BE870CF58457AB5C /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D1E294C29AE932561F3974053E69A2 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 511E82E11DF5FE3BA6ED82F4F7B83F13 /* RNFirebaseStorage.m */; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC64B39BC611FCD8FF775EEC434323A /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B187F37104621217E6D17605624F651 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDE1987EDFC5044FC8ACBB0E121549D /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5080C9B613BAD83C61CF4535D42E0F1B /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9BCE5AD36B5D64FB7A5386F90E0E25 /* KeyCommands-dummy.m */; }; - 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EECCD82C8A497E8D62468A7260FDA2 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC46DA3B0658B379FC60AEB6EE786F9 /* EXVideoManager.m */; }; - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = B56C061B5212AB7A9E81B3D23F43A44D /* LNAnimator.m */; }; - 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB66584DAE73ABD1533A8F4DBDBAC5F /* RNNotificationUtils.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = CF35D67199A3C1F368CB2BADCC76A144 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FF2C24AB914342BD5ABED89A168E56 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B17402AB245EAC828F58E2D62F5150 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1B942711BBA4F0550060AD78DDBC4E /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FC22E08AC1A0A720C13FDDF26EA4286 /* RNFirebaseAdMobInterstitial.m */; }; + 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = D088FA5527C3FF14246F7A5441833B4D /* BSG_KSCrashC.c */; }; + 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F7B3CE5659EFC4D1B944B572AE0A047 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A91666C5E60525D7863CC82F20106F /* REAAlwaysNode.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF1D3B3942B279447F10DBEEDF14102 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D1627846E57EE2D200613D10944D3D /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B0E3A3BFB2134704CFE6CFCAF4B62A41 /* RNFirebaseStorage.m */; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AC1C7524D0753E868EDA712FAD75A7 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E082881CDFED92CBF377AA6C5387CDE5 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 932B1B968EEB78A085F20790FE48C450 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C74F3901CA317FFB3564E42E3A0BA50 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 673E2FF2AD11DB9BE526F5B2098DB323 /* KeyCommands-dummy.m */; }; + 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A19C0BC6B3844E51415B2FE73860B7DC /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D49F0EFB39B19BD09517946BA3251E7E /* EXVideoManager.m */; }; + 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 343C5F749E16A3765E62F2A74C2F50F0 /* LNAnimator.m */; }; + 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A136898A2D9F095BEB68F0A23F575C8 /* RNNotificationUtils.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = FC89837514BFB5DAF3A02142FE2FF30A /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B369F72D2E47B69D55228318BEF77D7 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2455449FDD13A5BD6B015D9B25207EB9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = CD15F4681414F78344B9C9D8C3AB00F5 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FEB5FD7C2D6CF90A766E97373612019 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED799C3A833FF976CE316E5DE44B41D8 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4E7647CF95D02F120840002F70069A /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8AE63B22BF8DD7DB512A22E1636B26 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA1DDB000DB0E90F1460D9FE02E79F2D /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ECA724DB9F5B53FF34C132300B76F4 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 723B88A4CAB00299DDE80C2E7BFE4B8F /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8523B6728DBA88333757E23E5E13BCE /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F7B20942FDA996EE4CDC0EFED918B26 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3A98E2968BEB084F27F587A4C5726ED /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = CDEA2B647346AEF3BBD99512E658BE4F /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 60EC44FC576DF3EBF0F471D538CF0799 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2565B9310EC364F58EDF6D7C3E9D9E74 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42521590F6A1A6CCDE6013EDBD43D4B6 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB6F6BB23954FA3C96940D122EB3544 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA1960BD73DD5987082EC271C755E13 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A94CCC3BDFB081EBCDACADA0F4DAA1E /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7FA54348708E26FC9BDCE3A9791E17 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 022BA8466297F4D9B13C5CF55FF192E5 /* BugsnagApiClient.m */; }; + 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABD1F3B8151FC79CAA4438F329509DA /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E4BFE364D0D3C25C27CA651D3B09427 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C35B62E96CB1F6CF84146C86FCAAED2C /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D7687A63CDDE8D8CD1FD27BBA35203 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F9EF03FF835434C84C67FD9C73A6718 /* BugsnagApiClient.m */; }; 261E1575F07D66992D6993C4AB9699F0 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E4821FEAA0EEB382ED9211E1D198AB /* SDImageCacheDefine.m */; }; - 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EB2673DE746F1EFC09C0A83DF8B95C0 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 423FA01DAEC6424828A0992FEBD3F2F3 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2672B79116AA34F158A2BF9BCF83F014 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDFD1AA298778B97E9FD7529A3B82E2 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26CDA6E509270CC32B1FF34C4F7D0DA2 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CA88B9B65AD40CD861AC231539FD195C /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABC5A7FB631317834AC67F5AA871C9F /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E298623C8113EDD2F7DA73268BF8949 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE47C03ED2F5E88697989597C936E94F /* RCTVirtualTextViewManager.m */; }; - 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1194A785C0CF1FA86D666502DEED9369 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFFF4FECC8986BE16933B24A2A6705F /* RCTConvert+ART.m */; }; - 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 331B677103A37239289A28A159B157EA /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 917E23C23742F8AB3E9FD3B4B761FB9F /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 08036CD9D5C61DBC78EE61751B30F309 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F28EE9F84264694BE93170E2A04E6E63 /* RCTVirtualTextViewManager.m */; }; + 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F3F8C91AC91F1D56DEE2A183B95EAA /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFB77D1192D1BF54B08BAEF7E78D928 /* RCTConvert+ART.m */; }; + 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D21510FE6CEBEDA197FE10D0038F11DB /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 276EA1438A750B1EB0094AC03C85B9CA /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F75C0D1FAAF7B656AF0832A802DC84B7 /* SDImageCachesManagerOperation.m */; }; - 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B130DB6C126367A921732DC34C008749 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F7BA28841308F4FF7D1F2CE26231A620 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8571F91C4C8159FA2D998497D8E002FA /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 130C84BC7008CC3EC658498950644BA0 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A81226598200B10C2B987E3266FCF849 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B4C7CD90F879B29C6DD1487E5572EFC /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E5457CDA9A021B29AF532A8477DAB0 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E8DA90D50373FC7B795EC5347DAD49 /* SDWebImageIndicator.m */; }; - 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = ADFEC8233ABDA82D55BCB91310F87833 /* RCTTextAttributes.m */; }; - 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDEB952A3B03752A63D907C714E9B38 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A695B08EA87FA1103D656D40A947067 /* RCTNetworkTask.m */; }; - 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 3547259B7BCD06701C108F35D34C347E /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF1D955E99654E72474891EAA6A27A6 /* RCTTextAttributes.m */; }; + 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = C4AE2A6DA28CCE60ECD1B230FF30E591 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3A877FF2E6B17B85590B0509543C22 /* RCTNetworkTask.m */; }; + 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B16019424CA3E2E0EF220234A1473AF /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CA992AE3789CC74B456DE8DE9AAFD981 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 0492EC25173E684A7BF9642E60FCB955 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8A8165597AAEAD5849EA515FA16255 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2990557CE592B83D3F190FC332F46733 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2F0768EE972DEAE45305E374C6E45F /* RSKImageCropViewController.m */; }; 29B5E0AD4C8BD0DB9E1BF5D8AD913CED /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE45E5F8AE599ADB186A35959088179E /* SDWebImageManager.m */; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F47ABC967EF8DDB8E104E9F74AE03C /* RNRootView-dummy.m */; }; - 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 764DF824FDB95FD1D3BAB356814EBE4C /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3C2027F9DF7D383B337F87DC09F20E /* RNFirebaseNotifications.m */; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A8D205EAA3DF8E9251EEC7FDECE8732 /* react-native-document-picker-dummy.m */; }; - 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 80761E468ACFCB117E60F31425C695BE /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBF25C83155D2B8C1F835544873D640B /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6096C9CB69F347ECB78FE4608E360A6F /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CB11379A91985A0B1F4A4DA062C7663 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39552618FA6525665B95AF0294BEE26D /* RNRootView-dummy.m */; }; + 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 047DDDE0E9AD61AC03E3207D9D8A05E4 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C5CE032FE16F98F60FB04AFB294C4872 /* RNFirebaseNotifications.m */; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C14A647A1C1939A7B825382AF4774BAE /* react-native-document-picker-dummy.m */; }; + 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A0796802932A3DFC4FB3237E1E18425E /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D11E7418623E9EB6986653C4C041914 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4687F4AD27605F70F42D7F708F1D4379 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E596BE4F55ADDB5AFFEC47697DD5A142 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2AF1ED3F44A359AF4E731231E6CFAFE8 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 346983F78C1180338E821BF043913B34 /* SDImageCodersManager.m */; }; 2B18BA16E70FB8CE8D1CBA9F53F02241 /* GDTEventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 377387794ABFFE9598A387768FA7E216 /* GDTEventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5238590F5F1B8A4BACB6E8429073F1 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = A8220CC9E1DC67335E08E9B0E971E150 /* Bugsnag.m */; }; - 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AA03CF288E21D24E383AC7A6AAC210 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = A6957D150126F7F8A2E99FAF38C9F03A /* BSG_KSCrashDoctor.m */; }; + 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA70ABB0A5CEE1D278D82385B27A95 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F18B64986B9A7139C2928122A9021C /* Bugsnag.m */; }; + 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E29CE1DC026A19D4C6A0AFDB460E31 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A556EAFA7A6B7CE43E4E2D6F94FEAC /* BSG_KSCrashDoctor.m */; }; 2BCCAFD974059ACAFC22F751ECDD2AD7 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 84997290FB077D9DCEA80D70AB04A5A3 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2683CDC4E450B4AC2C04403C7D2F3A6C /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2C301F59E16291961A53C6EFE487CBA9 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8700EA442108B9065AFF53E7D01AF9 /* FIRInstanceIDTokenFetchOperation.m */; }; - 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C48C4E8A17341434A3CB157CED4CA93E /* RCTDataRequestHandler.m */; }; + 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E5ED82D9706849F2F567FE41A3EF434A /* RCTDataRequestHandler.m */; }; 2C447F128915ABFDC8E0CE94BEC794B8 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D8E7D28F6BE4DA3729D415F22B3D9E /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02625289E4AD50D27CB80B7A01176C6C /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FBAD23040CBE4E2142011993B8F42450 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5684A02A45139927CC52D6AEB9CB9035 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 778735A5E92493559305A10863352B5F /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2C481200823D38A388244D888717D38B /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF215051D44F917F48599E34BEE382 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CEAD4F693EAAFA38CAFC8901547F68FB /* RCTRawTextShadowView.m */; }; + 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E6BEC6D2172E395B251077020EC71F68 /* RCTRawTextShadowView.m */; }; 2C5F200D741D9C0FC8FBEFE28F4B4CDD /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 176FFAB39B2D6AE5A1171AB5ED0CD3D8 /* QBAssetsViewController.m */; }; - 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F6E12D536ADB1C538E8561F3349296 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = D1072D0D3C78AF0A78D488891DA21D4C /* BSG_KSCrashState.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D900157CBDC6614D73EDBA56BADDF44 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC2570CE7207D22EBABC07C0364E6D2D /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 613F3C7EF65C17CBEE1B1FB1A474D958 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = B089DE8EA00A8D592AB7BF0167A0306B /* BSG_KSCrashState.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F248533ADED25A996005E3B2882F8D /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB8B9D9FF1D265B60688407B6F2A7B1 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFEE3C68DF30B10733EB873C39AD7CC /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = AF9D766D62026C8ADA8883382A30FCE0 /* FIRCoreDiagnostics.m */; }; 2D5C8E1419E3DCF259A42E81A1EA56F1 /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4E9E7618FED11FC874BDEAE4A0FAAB /* FIRInstanceIDKeyPair.m */; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 95FDEED204E6DAFFCDBD3DDAB8692101 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFA269D4E14F4806D268A1E4F13C663 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = A62F549218161C0D41A48E0C6C0903F3 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8A82725A1B7969CA9273A7738DCCB8 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8739F636733F045253E3984A04D799FC /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 95FE2F533E3AF3E92FFF237C2DDED742 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DD5EF0EB4B7DC767D1006CA43D91FA3 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 97EC666963FCA99A7CF67BDD7C605183 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = AB10EE33F4E9A1044DA4190BB894073D /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 766087EF50DBB4DCF9CAD4E38555FD42 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E279B2EBAD17F0B7B32DA76048F8ABC5 /* UMSingletonModule.m */; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 44647028373AF2AC1D2203A046C079A5 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB84A0D146A46EDD53FC654CB6D42300 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 278F6167215D8A0D4E56C3930C73AAB1 /* UMSingletonModule.m */; }; 2E97E8985D7EEA0ACA621F03CBB618E0 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = D0575CACF508FE1BFCE3910B48E69069 /* GDTCCTUploader.m */; }; - 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2235158B222B19EF02C08099CD15FEFD /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E97DB02C97D26B7C40BCF28A04258E58 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EF1C5548F3F0E3DE7BEF6390805DEB1 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 37FD57B12763B96D58691CAE28587F6D /* FIRInstanceIDLogger.m */; }; - 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B8C893A393FDB571F438043774B20A4 /* RCTNetworking.mm */; }; - 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C466854A0979F3A9C0FA018D4412FA6 /* react-native-video-dummy.m */; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4418D85E54E41E406522F469AD578B61 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 94DF3758694540156E6543263914926C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAEE2A02C6BDADA31CE8D2741AED52B /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = B9374B97BD2DB962C1DA9C22EAEF6BE3 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3FBAA72966C50526A17418E951C9CEBA /* RCTNetworking.mm */; }; + 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EA571AC9A610DDE68C8A41286F37F6 /* react-native-video-dummy.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A34CFCA6CBC9D938E4A04A62F4791E7F /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5FB068E6579EC439F40174681E0C88 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CD57EBE72AB3A63AEA0F4E967081BEB7 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4CE417EB7BCE41F7D73D710299335F /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F88FBA4BEA00215CDF33A4CB5C1AC70 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9862C34992FF29306C3F5016A8D025A7 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE1CCC43729B11B1EB0CD96DB532AB /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AF620BCCF82537DF7FF4A524F9EF58 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2104B8C23A492CC02B6E9A259374A039 /* RNCommandsHandler.m */; }; + 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B0CBDD5C96DB01A8B299DD5CB81118B /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DF79FC11F6F499BD4B5E580BA98DC2 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD6EF3208D40BD1B03BA2765441EED3 /* RNCommandsHandler.m */; }; 30629C34135422B3C766F81F285C17D8 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B758635E567F2DCA8C5480D9238B2A5 /* QBAlbumsViewController.m */; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C14787C3D9E2543FF595D4F057B305B /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4079355BB2F2437C8076FEFA38B1E6F4 /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 30BBF147562E0292D0D75BDC762DE85E /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C08A7A965EB2383483891F04531D488 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30C27B25CE11FBFEC253B678435C2261 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A699B05CCF72090105833781B929648B /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15640CBE61329EB57ED2567362949E7D /* InspectorInterfaces.cpp */; }; + 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7E92ADA31F792DF7ADCD3DA24416295 /* InspectorInterfaces.cpp */; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 17AD7950C914DB0036C86CB9BF7EBCFD /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14572E0870D2BC4E6806D5758D9D2F46 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7459ED2A3AA1A2C6996F6C26EDC68100 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED1FD1C25B0048301BA62356C06EC38 /* REACondNode.m */; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CDF9715C400A8E198BA0A3AF9B32D1 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = F551C9D0D2CCA17BD67D51D7524B163A /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D8880D941A7943D0B5C4F8D3E73E65D /* ARTRenderableManager.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFB46E7671EBDFB0DFC298E7CDCF138 /* RNCSlider.m */; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 58B465479F0DE2A6C39460B1013A0338 /* REACondNode.m */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F08787B17693E4ABEC946BDF2D39BDF5 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E7E201770E0C51DA76600BB01462A9 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEB1AD748B5E1EE21DDD075ED523A1 /* ARTRenderableManager.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 59D15163BAA4BC949F7E2166BDD99887 /* RNCSlider.m */; }; 3195DB0618B1CA79C84E8D42C590DF57 /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 67EBB5CDE086D176F33FD00BE1BCD398 /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DE3D44F92FCDB6486C2E24B719FE62 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A056563F03FCBB1D361D6A1ED8A4E6 /* Compression.m */; }; - 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 03741CDD38C3E8BE05FB21A3997FC0DF /* RCTFileRequestHandler.m */; }; - 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A83EBA9C638C00FA33F0729075C556 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B565AC50DFB311DB14EF47A37CF9A63 /* RNForceTouchHandler.m */; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFD6A559D2729450558813F60FD5E889 /* FFFastImageView.m */; }; + 31DE3D44F92FCDB6486C2E24B719FE62 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 794BA5643428B87EAAA55E7C466C178E /* Compression.m */; }; + 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B295C5BFC6986B808EC09C336A1AB44 /* RCTFileRequestHandler.m */; }; + 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A0B811CAB29369C222BE3D98E2DDF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2655AE4B93DD0C0A2EE756E5852FAAC9 /* RNForceTouchHandler.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB405B9622075B540AE9604AC84ACFB1 /* FFFastImageView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FDB850B2D7605EBE486B87982DB6203 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD9066122F1EA3F325DD79F5284EFE7 /* KeyboardTrackingViewManager.m */; }; - 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC37D0171C53CA4B92AABDF707681C5 /* RCTDiffClampAnimatedNode.m */; }; - 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F40BA34FB244DF34C7A74D3B78F64FC /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6172DB9B95B5227C370146058A6019 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D70DFBDE9CCE7847F3234A7F513A23B /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DB8D3AA474C3D57BE83F4619F05A1D /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 403AC9E4E215584A2D0B564D0E27BA8C /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A13C786101B03C6ACF386C4F90C88369 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2AAC0C63D42978EC8471798BD64DC7 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DFA74FC4FDB093E5C8CB9880404E9BD5 /* KeyboardTrackingViewManager.m */; }; + 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D2250641AABAAB4E71491EE6724821C /* RCTDiffClampAnimatedNode.m */; }; + 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E2DD79F3185FA2FC168B3994A11E0CD /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 767477ED4C5F319854580DDB9C87446E /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F4A62A9ED7CFA44D786F0DF1226B10 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 48319D4EFA7B379179DFB57BB2214E81 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF33784A3FBD65650BC14499CA52D7B /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFC024A324BB2B1560D00D447B2735C /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC9B40BAD88705271E4912C77E2E865 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DF1C6B921007C7AA45B2E9E2382C4F2 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3509E840892B6A4B9BEBAEAA14FF3E3D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D27DD9EA70432EF865F1A64C6DE26DC2 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D31D16FEF11BAC517B8AD6F7021B00 /* RNFetchBlobConst.m */; }; - 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE0FEB094739BAC2BB7241D8B9604FE /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = A7827BB5D12B6EA3EB7C3B69121E59B3 /* RNFirebaseAnalytics.m */; }; - 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6533F391047C6B9CC29AE500958528BD /* React-cxxreact-dummy.m */; }; - 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBB9C9E31B5AA6FC31A8701993BCBB0 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F1813A9D674B4CA2B5BF846AE4A838 /* RNFetchBlobConst.m */; }; + 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B7EF2FE69EFA0CAA8C6CABED453CB9 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE44279443FF42C9A8AF1215FBB93DA /* RNFirebaseAnalytics.m */; }; + 356EE09C002119DE7C52088DFA62BD4C /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; + 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7453488582B0D2756E057B427EBD653D /* React-cxxreact-dummy.m */; }; + 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B0E365670EE8461300952EBBC26EE7 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3585CBDCF731A7F68C48BB6AD9A70AFB /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A89ABA126B960F11BBFCF0475F6A0AED /* FIRLogger.m */; }; - 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36344FDA0FB0189C167C6F4D4AF27D3C /* UMModuleRegistryAdapter.m */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6DD72BDF5ABF38934986A79E1E2FA4 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA48CC6AFD3783EBE4BA6344D0FED0F /* UMModuleRegistryAdapter.m */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 923A98CB4B829333F4077953AA880226 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36919C052E22A8130A9FCC27694A61DF /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6C1D029A172D167AB0F40D48A9B96E6 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 211CAE2A1EE82EF06C89A9DE024C57E4 /* RNBootSplash.m */; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = BAFF9EA80365601C35C5B14B6FBE63ED /* RNBootSplash.m */; }; 36BAEA5FD99090F9ACDB8246FAEF9A44 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = A41275DF7893002BD1FF5EED78AA3484 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = DD656B4076DFABD877855D62FE4B1AA6 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = E81242441E9F22364F9B01F7005A8B54 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 370F54E7E5F99ECD931AF474471A530F /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A292FE32EE560887C37DE2FE0FDE458 /* SDImageCoder.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CC7F479CDFAEADF82FB7E5A7A4E85491 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D5BFD0F5C965D3ADB69786DA6C9B64D4 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37BE852FE436F3F6397F550D19500530 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 173C4589E341A31CDC9E01A41673AA33 /* SDWebImageCacheSerializer.m */; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA25AADD38A447AFF7DD16EEBCBBBC4 /* EXFileSystem.m */; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2CEBC8353E3E834E7413F17CFF340F1B /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8215487E2903D340BFBF47AEA0EF16 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FE88BC6B1B4A461996F5D3F33837578 /* EXFileSystem.m */; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 856D0994BC5738D396C97A458EF678CB /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 1827F1127DF158706134416FF4B6A087 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A3C4D5A41A010AC15F50BBA25050885B /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 38442B0F8709B30A6EDA4CD0454A21A5 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A92676666A7BB7E23E63E461B209BA /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FEAFC2D29194943D6A039D11D4011FE /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 4416AC2D34F8B2EF4FE7A40D7585AB24 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = AB11E3266A85870D63A4E4B6F90FB5C7 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F1D19B0EA38EEC5CD5D5251AF43C257D /* EXRemindersRequester.m */; }; + 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9333163A7D0ADADB870B7BB851A3DC /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 644CDD5C7FECD32BE70294468CC33FCF /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A1DC7DD495655A76A0ADE66027B757 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E082F75E88B6470276CBA30D21654AA1 /* EXRemindersRequester.m */; }; 395183D9069FB94B71C8E24EA8A21FCD /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2238F6878C569BD9DE62658378F43980 /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = EA33A0E9BA08017FE8FCA14EC8893AE4 /* RNFetchBlob.m */; }; - 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C968F4692AE46EBD64F7483EE19B1BAC /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 031C605D695A4BB6BA35BE8A3DFEA8C2 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A83EBA9C638C00FA33F0729075C556 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 4408C73A08D181A0A3FF59EA13703695 /* RNFetchBlob.m */; }; + 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFAD4065A27BAB2A1848255C232DC91 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = A44080A70A5B010573F0F3BF7552F45D /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A0B811CAB29369C222BE3D98E2DDF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A32F3DF1F3A28FD3A9E28078BB3EB2A /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A15B78AEE842C9C76037B062424F3E /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A38B322CEF5C4F1F5C90CDC284CC7AA /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 699B8304DAA22EA6D025CDBC9BC2DF39 /* GULSwizzler.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 576615A62CCF01EF288B542629ADB6A2 /* EXConstantsService.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B96B93533AE26582BA9FE999710B9DC /* EXConstantsService.m */; }; 3A90F40F02279EE028931CE48514D66F /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 376060DDF6A3FC6F6970EDAC13043430 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E52A629DAA85178F7C73397C644B603 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E09D716C54A21D487ADA1B2703C86E6F /* EXRemoteNotificationRequester.m */; }; - 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A25E959BABA4038F809BF763AE50E2 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 05BC9C4DE68D5443A3FDA830FD0CA2D5 /* BugsnagReactNative.m */; }; + 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FD76891E956AFD0CA82E395F8E80D8C8 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F1712CA546A814EA6A8CE62EF8DD9850 /* EXRemoteNotificationRequester.m */; }; + 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E582A85DD07279E40A4F9CFE495665 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 69469A9DF3E2863175A9296586E7CDA5 /* BugsnagReactNative.m */; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 96EF1740CC34CD0855E4AEAA35D7CF69 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B67924DE22F31B255F270F9ED7C76D9B /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B3C0443D7BD72020F140C3CFC024099C /* RCTKeyCommandConstants.m */; }; 3BEF5F842EA4316476D9252C81E7D100 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 122A57C379254096DB8E5E734A106B2E /* GULNetworkURLSession.m */; }; - 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1481DE0D3013EEF3284860677C09A1C /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 111BD1D6CC902B06AC43CDB6F8EDB137 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B856A3B2E8491B2FA37AD3F509AF9383 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0A066BEAB1661F706F8E216290347D /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C9923B6B84D38A40767A6E529CABE0F /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 76FB7D1AF654CDA51148A02B58F668D1 /* FIRComponentContainer.m */; }; 3CDB4A31E6703CFF32E72D3638BA11B4 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B6A5F984EB8EC48CF248B91715ECE9 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE0729079D17BAE2A3F5C0904B3FEC8 /* GDTTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 70AE7ADBC1CC8EE3334BFCB63B135185 /* GDTTransformer.m */; }; - 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 279D7FB768925673400F832A252B9F6F /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0AF047A26BCAEC965BF776CCF2C99A1 /* RCTKeyCommandsManager.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC10663C54F93F073F1523793EACC17 /* REAModule.m */; }; + 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E89CB7B556BE3C15C57410C8D145EB /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D6DDF0809405EC84AA186265E7476A /* RCTKeyCommandsManager.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EBDF44A68FBA375D60FFE9543F8E508 /* REAModule.m */; }; 3D8BE5BF644BE9BB4F41CAB6B7D79A09 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD618947E6AA997CA825320EAEFFECA /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B09F7F9121E23D66CFB7EA2FDF3E2B /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 814814520D392A8A4AE97CE6CE0D160E /* NativeExpressComponent.m */; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E911CE59696A0FEF04160CA319A14DF /* NativeExpressComponent.m */; }; 3DB33DD58698AA4A355405993424755C /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1130E17A2E1A50713AD5AC9021C8C356 /* RSKImageCropper-dummy.m */; }; - 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 508806B05D8DF53487BC9A431319F391 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E3DF1DC5956E3E46F66377D39F7AB1F /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 372C77BF2C046CC5ADFEB3769B713E80 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA936CAA727A4AA5F59E224C1697C1C /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0449A871CB5530320BB50C89A08440A1 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A875767FBBF801A7E11E158C2A3E0B /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CF51CD8F739AF49732B92F8AF4177C /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 364529EEFD05AEFF36F7B42792ACB275 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = EA065A1E76AC4B9E229359E2E6997249 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C3844CC61A7B52C6EF376DD18B477F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E4147890AAABB96969C70E0D7986318 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF11B747DDBFFDAA4B9CC0E48FD7752 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E6E2A5941481ECA8D947D329A8D5E4D /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E60D61EBFEECAC2BD93B44484272D2D /* FIRErrors.m */; }; - 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE12C9944B3B8FD59632A8CA1376DBB /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5847F83F1511FFC78F368047BF91DC5A /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F578D5380965774B192A36A30A481E /* REATransformNode.m */; }; - 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 95792081C9ED4ECC41A8BA1E2597FB16 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = ACB1D44F71FFDD55AC7EB6BAD87B6508 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B52E9D746EF0D3DD9A49A8CBE6E7828 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EC695806073286F0F784518C4E054C /* REATransformNode.m */; }; + 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 868372E35A16798A8ABCDEBFE2E10337 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E80C03E67006B5C954DF4A58088BF /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE4E45B140F7B38EAFA76B778C29AD6 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B765178245272DC9CE07ADB0EA27BC6 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B93C760245F47DF56037BCEB268CEA9 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C88898EF298C6BF7493C15E6C14FDFC9 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD3B947B1CC3C77423B663874CA0A2C /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 02B0ECF6D038A17BB0A76F3FFE3BE5EB /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3F9160E52A4D137A52DD2A7FE857193B /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 031D10D05273D16F9FF1CC69D89F4737 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A479A8DD127274B1AC3A458907EDBC /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD7AD9E9FA9A97DD7A667546ACD3376 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FD14FDCB0DCCD257A3AE028913722A1 /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C2571E6F4703A0B6CD237B4CEC6DEC /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D96597E425FCA8FD5D7F363CC69C5F4 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CA1809E4DA735980D2F6351E4ADE2B4 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D07E020AC126A86B9F047BD3CF998B64 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A6529DC992977269D32EC6E31AD7BC1 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE733A9927A3D711C0F6C9E619E43711 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DA0A75661058A06F82116E5CC5B916E /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40D19B3596F2AAA91C871A4C0827D6E9 /* GDTEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C05E9BF59105830FBD1EB174BEBCBC2 /* GDTEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B0630E1005C90FB304115B8619ABAF94 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = EC50CC407681F46170243E6859EF0D0A /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 550C1881C392DAA26E9287B7205615FB /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5B403E518E7409481854D121386E9D /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = B24BCD3ACA63A4F1988B34D59712D7AF /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FAAA9B1EE222A2AE1EE953558AE9A582 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDE4AD6316F658E3325B860471AC0C8 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41755CD0FA73E9E757BBF62F21F0FFF7 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 04697D895FC603B0AE96D229B1C98A02 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58366BD2BA7804F347EF9FD17EB18D60 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82E1F8EB4CEA730117BCBFB07397E65D /* EXConstants-dummy.m */; }; - 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E519A214A297719957A7D0B3AB0223 /* UMModuleRegistry.m */; }; - 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = DB9679FCC7A39FFF3AF8B1BE4FF7C457 /* RNNotifications.m */; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 299DB64B3EEC7C3C81D7A8C926308FA2 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E267F41959D4E2BCC08E452C2D817B76 /* EXConstants-dummy.m */; }; + 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 45FDF409E1E2AB3479F8DE9D84CD9CD1 /* UMModuleRegistry.m */; }; + 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 554E77FD3F864F3461B30DFEF0A63BDA /* RNNotifications.m */; }; 425F4D00564CD45E8BAED4DB2AA48455 /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B0EB71CDD0AEEDE9FE3B0F7FFA9888EA /* FIRInstanceIDTokenDeleteOperation.m */; }; - 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9D6B2256DD82E66BB5C86F27CDDDAF /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF00EAF341CD4A19D2EFFD862B84246A /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC95671A15E9C07339E1D8953A1147DB /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E4DD31D81AE0E3C64094C4791C5FCE /* BugsnagUser.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02511183F0809AE5BC72DB78870C820D /* RNBootSplash-dummy.m */; }; - 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B953ABEE1C3548F31D3358C6B37FC339 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A490425FF97F332574003BE1815FAA3 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3A7BC43DC4553F06DF196DC67B6DCC /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A0DD5A63AEC5703EA492659F41BD75C /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 192B4BFD2EAAE2631F266302B554D878 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 25D5B5E920069C5AB4CCEF59BFD14E5E /* BugsnagUser.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8434E779EA668D91BE2B71D64051100F /* RNBootSplash-dummy.m */; }; + 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 091ECAD49A159C22516EAE80A0659275 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 6457F62359D5AF44E194FD0F9CA3D68E /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4434D48196A179E01B13B1B9B532A0F4 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B0D469C5A5B872747EED0388471AEEC9 /* FIRInstanceIDAPNSInfo.m */; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C01916E129FB5F985A6A6B1A8B3563 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7D656889924B825AEBF62161AB1260 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44964FA9DAF14AAE03807F2BC8800146 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = D7FF715220131E7D8A8DB6FA9A1574E6 /* NSBezierPath+RoundedCorners.m */; }; 44A24B73FA65C8C9EA685A428FC8F552 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BBAD0618ED4DD529E5618027E3EA18B /* QBSlomoIconView.m */; }; - 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6DB2BBA5DDAF37D2719515FCBFF477 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = BA400F1F8D0C18145D8028113C8459A7 /* RNFirebaseCrashlytics.m */; }; - 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 211A4ADF1B4716CB169BFD5927015344 /* EXAppLoaderProvider-dummy.m */; }; - 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F198F62274B8A8386C2B7310E2489C62 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E43A47BF5FA58C4FACE64C548519B26 /* RNFirebaseRemoteConfig.m */; }; - 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 996DF887CF2C60D0FA69A3775D13FAD4 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABED4B6A40DC160B75C622BC6970884 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B72F8FA21C764D08EDCD41F3225EC0 /* RNFirebaseCrashlytics.m */; }; + 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38C920A7510DE4805A72506CC2EC80B1 /* EXAppLoaderProvider-dummy.m */; }; + 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B15D4BE42508069919D327D1D6247B66 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D83C6732A053303219222DAD44578A89 /* RNFirebaseRemoteConfig.m */; }; + 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C02C1E9ADA14141F2E3B91D5BD72138 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D3939CDA3B11BAB3744081B5730AC1 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 747D5203AAA3363BF08A72C7CC1D8BE6 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A94A809492A1BA619A085ECB3F74EC /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A070AB65F774923175A162B589849F /* ARTPattern.m */; }; - 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F176D8D1036AD52B6FEC84FAC49139A3 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA3196A7558E62E1BA00CC84EA2BF40 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BE67CCE7C5F3CFBD5641CA2C994463 /* ARTPattern.m */; }; + 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B120458315902FA759D8D59CB2C5B22 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 462B7BAAAE0B254BE9E648E5CFA0C6A8 /* GDTUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = C68D8C148B3C8093C09166A8C8495394 /* GDTUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = B509282D6F3523D9CBFD7208AFCDAE12 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE52A79948B4A9478F74A6D1DB81519 /* RNCSliderManager.m */; }; - 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = F3412BD5233E3D48FA5CCA5DC7837617 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E5B69B58243A758FACE527D5002E5E3 /* RCTHTTPRequestHandler.mm */; }; - 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D4BAC998749162828C147C54A37427 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47A752732919A3A462D13EDE1959C782 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 255194BF156820C940AAD066457EC31F /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47B3D2C9928485F2F031EC0CDBA4471F /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; - 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BFA127CB6E41E804BE65C9570EBBFB /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 268BBD0CB874980641E402FA75B54932 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22B89E8B7F03CF3AC298D30704C10502 /* RNCSliderManager.m */; }; + 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABB83E16F1E5752B75D3435B92D0587 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = C05051A320F925F5FFF777DF97486CCF /* RCTHTTPRequestHandler.mm */; }; + 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2573D9D6041079FF47BD50EBD8AADBF9 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A752732919A3A462D13EDE1959C782 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B007A4F0264B00BE2EBDB3E43EF100 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 49609DA301B6E3967D8CCA98AF2EF435 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47C1D14CAE63EFC8B07A816499198552 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 853C5A171E7AD246F25C576E7C0F4953 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = C32F8F309CE7E7C79D02758EBF426426 /* RCTConvert+Text.m */; }; + 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = D3083E3F6791A7F0E39E85AEBF5607DF /* RCTConvert+Text.m */; }; 48589406024717DC104D8F0B2585FCC4 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = D45FFC3C8C3BE59BBA9D2E82DF24A1B4 /* FIRDependency.m */; }; 48A597F6B21D3A8BD625F3BCA9DFFBF0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 22CD6908E6D35EDAB4715197D48DBB89 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D15A3F44298B0A59B0F8482CC241374 /* REAValueNode.m */; }; - 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF84E60852952F964BF0FA1F101767CB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 09A9CD6BF3878BDD484FAF1D0C88F75B /* BugsnagHandledState.m */; }; - 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BA2E6BDB61430E49AD9B7B3D271E2B /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0B9D3794B58330676323E66BF8769B /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6372E20D74885C506A7039DA9E1E92B5 /* REAValueNode.m */; }; + 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E7C9629AAE327315C865F91106C2DA /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = BF1E5BA65E4700EE5DFE82680DEE2B0C /* BugsnagHandledState.m */; }; + 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 79207914DE9E3C44A552147C33D65820 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C5785681FEE30171D4791232D6B033 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 495B0B15E14BC401DE45CAB2A4674C02 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = C785E20D4B593BCBE623E92271639FD7 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 496DEF54A340C16E4ED8ECCD3ECA0479 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B3649809C89A08C43C4F43E9E65BDE /* SDImageTransformer.m */; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F80A20E8152653052F4BE92981AB83A3 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C53B8B32A60013C1FFE08E8808BD840 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC3BBDDD55B3E89ADDA819159C595AC /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 878CD185F38C6B52D66E8DDE2543041F /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = E437ED23976C426526DE63DFE45023B1 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AE735250CAF710BB13678CDD453906 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F758C0842CF42881EE9090A2D7CF3353 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 49CDF4B546A26C030AE55779EF9F63EF /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A35CCA95C945DDD55D3AB0745C5C8D /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD536CD7E68C29FEDB095FF41612CF8 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 261D22D100484A59E19499DF1B0DEA5C /* RNEventEmitter.m */; }; - 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = E377689DCBC687230A70D1E8A21886A9 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D74A5CDBE91B759FDE8617B5F9ED6C43 /* REAParamNode.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F8AD7EFA7628FEF5811E59B2F1E610 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 38B613B0CE79C3422B37098392C882EE /* RNEventEmitter.m */; }; + 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AA22C732EA222AA0BD157679AFC845 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EE427177AD75D01D5E7B5160A6CC7ED2 /* REAParamNode.m */; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D828234ADE0B8938489DA54D83F3ED6D /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 82BC22CFBE66213A5201EDBAD63E5D23 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F29E8E59D50A97051BEB66575D89971 /* RCTTextSelection.m */; }; - 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F3EDBA9C3FD47F489B95DBB5960571D /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE80290C34F979904EF564E10AA0F34 /* RCTTextSelection.m */; }; + 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E284D6FA97B9F53973F4EB270D42D492 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4BFDACB81E3092DB0866144351B856FA /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C04545DF72C8133BD387E44DB618D8B /* QBAlbumCell.m */; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35308D9DC4CF8DF1F4797C6BCC4D9994 /* RNAudio-dummy.m */; }; - 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = E6B2D8A5D47AE547F5D716E8F7B12BA0 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C87DC43F611D89073645963F4265D56 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 42714A57FA6B18B268EB2AEEBC8705DF /* RNAudio-dummy.m */; }; + 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 73934CBCB26D587781880AFD9B873AE0 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21D6CCA47D1C4248E6A4121A52E968C9 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4CC6BB01FCE680CDEDAC061A4E95DB8B /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A83591A75AC4846C710B4A008E65FDE /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CEBD6ED3BFF38C9053CDFC2E5FFE8C2 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F54245CDE9F7FD217332E6F4A6ED40 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD21021F904E49F652898107CB6B8612 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B29AE24352D01ECDCBBBCFF13452B0 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D94E8771CB638313C135DB3C4A5200F /* Yoga-dummy.m */; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = DADD793C127BAD297FC359DA52B8CAC1 /* RNFirebaseAuth.m */; }; + 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CBDE4657D6A5AF70D5945711059E3DD /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A808EA295EC294FFDBB50BCC2BA53014 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D3724BBA27E2B32D08937468113E078 /* Yoga-dummy.m */; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E94DB59A7A62971D17CD5DE52D1FEA /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E99C41C326259BB496E714ADA47049B9 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CD34121685C6D6AE7005C060A7045B /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AFE978C3D3CD2EE9D90093B21B77E8 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4DF24B425494D2F5095463CA148CCD40 /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EBD6804987F7C98DB5866FA7C08B94 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C5F970A9FD89FA8038F40AE9099CE0 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = B0DE54EDBFFD4D96AE20FB13D7493569 /* BSG_KSCrashSentry.c */; }; + 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A2B5E32E4E76CFCC9ACBD0FC878085 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = B8C510B7BD8264A9978428A8ACEFC04D /* BSG_KSCrashSentry.c */; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E69E5C6A40C8F5B47D08C939B9911BD2 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E502DC6E1495B0AE526594133F643B6 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 858F9BF8E8BB27F1507081A9B6AFDB00 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46C3C37ACEF7F9892744A0898DD26D90 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C1F97891BA424DFD614C38509BE9A0 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1BECC500208618E8E9A8369212DC51 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1373DAC74BB042609993648986A08F8 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3812548294336EDBB96494202AD0DE69 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E17215D2FC4543AFE3EEA6E44348E62 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FAC1774558F6AA1A4C383E707F9678 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF94D11757CF0C19E98C670C0B46518 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45A90A1095F0EAA8DA0CE39F826759EE /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4F1F6CFF3B9C457F73F5B8AF1AF79893 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D02799D4AF36B211CFE1A6CDD0BA7 /* GULAppDelegateSwizzler.m */; }; - 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7EFA802B9AF054C0A6636D9631353B /* RCTImageUtils.m */; }; + 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B3D0AE95BDBF73212D684D408AB5043 /* RCTImageUtils.m */; }; 4F396B6DA5545C2B06340E9BA79EB498 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BA223DECA69811D9F3E045529450CE31 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F7E32A059ED4485D7CF79F3B74CDF01 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB59D38B9D49C9B00F3C5F95EF8A5F4 /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F823185A6F682685710B9574E32D3AA /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D07BFCFE57A9975D3A834AE06D565CF /* SDWebImageError.m */; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF80050453E99EB51AAF86B96B85A69 /* react-native-appearance-dummy.m */; }; - 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BADCD5F30A21049153976FA2144BF12C /* React-RCTSettings-dummy.m */; }; - 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1D8B042A8144C353EDAD10D4E7409E /* ARTSurfaceView.m */; }; - 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 95568BB26629A00A991E46044F0D42A6 /* UMAppDelegateWrapper.m */; }; - 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD54CDBEF4278CA381AB0E03B28B5994 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED69810CAF7C92E99EF316EF1F1D6BE /* react-native-appearance-dummy.m */; }; + 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E15A10A24919BCF86F29B8AEEE9C0C0F /* React-RCTSettings-dummy.m */; }; + 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D6850F6315C471632ABED5426F4E32 /* ARTSurfaceView.m */; }; + 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5CDDC71792D56DF80844D40CC3A503 /* UMAppDelegateWrapper.m */; }; + 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 42114893F8A24894E5D2EA2961CD4ACA /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 502FAC1E08336ADB908FABCC6692BE90 /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A36D999008A3FC12B2D50113AD92521B /* FIRInstanceIDStore.m */; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 7629C221B1BBC71159AE39E937940741 /* RNLocalize.m */; }; - 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF97759381C515AC1ADE8E987FB7CED /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 014E853B9D025C9AF4A4CFE27B22865B /* RNLocalize.m */; }; + 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4782FAF03CF4CE401670DF000CE88D06 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EF8B453595DF528C6F3A28CB31B7CA /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 62B9207884E00FC148DFFEA416C93D4E /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCE2E8D52457C0FA404D519055D555A /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 50BFDEC0A6599CE33073B7F1245CBDEE /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B677BD8E1DAFFA5B85DEB6276606F32 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50F65A7405BEE517EC658FE55ED70018 /* GDTConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8205CF74FA0780A1B760D538A1E880E7 /* GDTConsoleLogger.m */; }; - 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 42517419A5D52E0E983BC2E0AF034132 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D82A5B8DFC67169F0D5BF0D713536299 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = E85B008837FA9F5C524F86ADFBB667E5 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF847F06E3B1135F4A59B491BE49CDC /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5127828C12F9E9715810F9D02C1CE720 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC1F89988A3C8BAEFFD0B0C2A1BE306 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3E21EA3C6753D184118FC7057C78A4 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4C102B81D8A7BF414C6496EC933F2E /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A12BFA8D1BE1E56C16F5FC903E3B9196 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1954F4F2B6C752A44608FDD6E9942E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 395B0B7B4343E727775CC6872C7EFE73 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7815570FA654A6449AB6FC6D4391B571 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52FC0092CAC6137CD80C517EFF257494 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2F49418B97F60147D903753995625 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = D3ABDC2173957C92A18048630708D7A3 /* RNFirebaseFirestoreDocumentReference.m */; }; - 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = A538BEBC4D89577422B2804E44DA1763 /* ARTBrush.m */; }; - 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 855D90E68B6207E87B932212D60C4B6A /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC28DEE582DBC128838358F4823931A /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DA558CB3BEC3C7A92CE9063E5B36F312 /* BugsnagFileStore.m */; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C296EBF7A8AD078BB9B224A1567B85 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8457C531B8C1CE59B714AD8443813E5 /* ARTTextManager.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = AB8EC5CC4960BD59FBC4B1EA9F4E461F /* RNFirebaseFirestoreDocumentReference.m */; }; + 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CB547496BC9E715473597A4D9074BAA /* ARTBrush.m */; }; + 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0E8A669DD48C41347774E827473736 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = E22B4DB70E30702375F8DA6893B64F7F /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C944C227ABC1536A052CFB87B130DA9 /* BugsnagFileStore.m */; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 184580D07CC78549E4FF02C303DCCE37 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A705AE48A30AD67EFDE388273D1B3C /* ARTTextManager.m */; }; 54A9246371027B4CD3B43008884FA90F /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 44A01F006BD1D0ADFF86D8F79C363A7F /* FIRInstanceIDBackupExcludedPlist.m */; }; - 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 56AAD55CB572513C35A8352F6F7AAAF7 /* RCTPropsAnimatedNode.m */; }; + 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E2EF82F5CFDFF78C6F58575C21FA511E /* RCTPropsAnimatedNode.m */; }; 54B6D082D028EEFE1E4A1987489EA682 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A8BE42D13BD23F939284FB37B4692663 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A72519FE47656E71F57E31A667CD0CD3 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 728362B91413E35140F0F638EBBB82B5 /* BSG_KSCrashSentry_NSException.m */; }; - 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E65247E228529409F5ACD959F8CD3D /* RCTStyleAnimatedNode.m */; }; - 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD23ADE3504A0B6D4C7AAA9EC6931B1 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5D2290CE065E4E037009E5FA9E5E33 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = A20A63A7ACF74D0B898F9A3AD7AE4B78 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B400CFD688C97DCF1554B7B1925F92 /* RCTConvert+REATransition.m */; }; + 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AECF4433A2AD5F5A18C5346CF8BD76DE /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F62265AA8BD2F597DD957CB4B42FAFE /* BSG_KSCrashSentry_NSException.m */; }; + 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E45D3E7A747D70DB0D4B573D45387E46 /* RCTStyleAnimatedNode.m */; }; + 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = AA970E0E45CEC7FD98BCB9CD50A94784 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 473280B4E2891647463057BAEF574807 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BD0242730F72EC571B4E5C64EC03FE2 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B71804FD00A9A9347B390533972DE489 /* RCTConvert+REATransition.m */; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = B9D0FDB1F27CEB6F1CBD41901DA39375 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = E283A197C02B1D1A170E9F452E90E51B /* RCTConvert+RNNotifications.m */; }; - 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7DE711D55D9DD439E62D3230704C8D /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67D9ABBDD70F27066672B9AECC8B3B32 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 281277198852CBE11C6BC5FDEC40FA1F /* UMReactNativeAdapter.m */; }; + 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CB47F9AB8D3CE08A4CD5CF196A3C9169 /* RCTConvert+RNNotifications.m */; }; + 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 801FDE00F084B3ED700B2166D5288922 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0048D36470E53B5FF8A46C8A01CC8EDC /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDC59695B73073AAEF7E379442D68FF /* UMReactNativeAdapter.m */; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = DB1BD9FA1E2AEE6D6851171204F2B792 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = EE654960CA0CD4B1C81541EE3A4A96B2 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 9758E3F67028E745B7EFD69C3C0B0AF4 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = A4AFF26A82F62EE0683FFFB913D9DE76 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1797F31304BF85171448F2A45CE72402 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D3BD7C2D742F77CAC96646E5979822 /* ObservingInputAccessoryView.m */; }; + 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11637996F6BACCC679A5D7D7556DFBE7 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F250FC3EC3F38D1DCF45F1806BD95F98 /* ObservingInputAccessoryView.m */; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = DBBCB12494C4A3B3271DDE8C13567D62 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 29A7A5BC488F61AA66BE4A5105B1A52E /* BSG_KSJSONCodec.c */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C47099E8F26D854F1EEC3EC8F0C05B5E /* EXFileSystem-dummy.m */; }; + 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 6081C58C563E282A5BEC0262B9287A9E /* BSG_KSJSONCodec.c */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC7C899B101A1DC1276200FCFB25C20 /* EXFileSystem-dummy.m */; }; 57C8A26C5E905E0B125AC142E720F5DB /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFD2929D2E95FCACBBE0C693EEA30C2 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0F48AB87D685794F85A367F5BDBFAD /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1ED0ECEFFA4E9FA5FD7014CE70F695A7 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4BF49C398BD09FEF20E09E3D91D2BB /* EXHapticsModule.m */; }; + 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF192861FFFE74B020D3D11BA0E279F /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E144FD8216517C431056C8AB56A39E5 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 97E36034661AA111E0BBB20ADFBC5EE8 /* EXHapticsModule.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CEF3923920717C24F2EB6ACE8A96A364 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB8D33B78500767C03AC602F3A78B82 /* BSG_KSCrashCallCompletion.m */; }; + 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = B12D8ABB227F9237999EFC479536FF4A /* BSG_KSCrashCallCompletion.m */; }; 5998F8450C8A4530E1C9DB2764DAC97A /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB32A635B3520B996565D062F35D02EA /* RSKImageScrollView.m */; }; - 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89364B35EBA566E7244361212DA6140F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D941AF1DB4A347DDAC124FE87692520A /* RNFirebaseUtil.m */; }; - 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A31B0164DC60DCA090793823095A032 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC7A405C6401DDB6C9AF3DB85F834C14 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BFEE1E3A52721A80824DB0F6618499B3 /* RNFirebaseUtil.m */; }; + 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 171F3044213232C08FC3D7D6AC89900D /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4575C76426903C742BF80B5DC5361E /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 261691467F899D94E6BF0F490C2F7865 /* SDWebImageCompat.m */; }; 5A59A50C6C6459D108D357CE53F2156A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DD67ABB10429A476CC3CC6A3FFDE56A /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C63BC132ED5A2355DDCB7744E84E91 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 986F1311D788AD1A5E83C73246AACDC0 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A81696564F736AF85CA0CF8BA37458F /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C4BF4CF294ED6F6424B645B6BA0174A /* FIRDiagnosticsData.m */; }; - 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 26647F2F0EE10DC5FA97C8E5AFDD0946 /* RCTImageViewManager.m */; }; - 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4D942BA287F50685CC1A52CC189675 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6DCD67B31DB82CAA1663A66E9AF79B8 /* RCTImageViewManager.m */; }; + 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D083FB578FC9632BB9E23AAB9ACA3FCD /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AD72B4FC8D100585C080526755CB5B7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 114BC0FBA8A47809F19D3FF249FD6EF7 /* RSKTouchView.m */; }; - 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2B33AA450968108C00CA328D8929D /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 656B24CBFCFD017F4CD8D3C2CE6CBDDE /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = E992C56CAE9D75C7B56C64F706B32F6B /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EE457BFDCFAB6D806D177B0D42ABB5 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 4837A24AA3E70F6369C525153DD2AF5C /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A62D0B309FC7F10342D5940344FA8A /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FD40DA6748C6061788970380646A26 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BF0E8347D4466B74F3BB878811DE73 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 444FD0BF1AB213D078F9B010C660DF17 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A17B419C9D8D1BA7FA3AC3634653A103 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = B3071ED7A5495BDF6F19DD820649D418 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = E839F9DED2353CC9F1B833EE05AB3586 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F77CDD7F7A0108AAF824CA344D662D /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1DF51A2C2AA7F4AFD2F3DF605779A8 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C630EA8B1C146DCFB34C7F2C31F5DEFA /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A10DA349E7CD902C7793F3AA93463F07 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5BC9846FCBC634C69EDB99A707469D35 /* GDTStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A624EA50D9FA069BF68C368B9621017C /* GDTStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C62BD6EAAB322135CD95AAC564F8D6 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 40490EA85C4333BDBB5F0815E15C37E0 /* RNFirebaseFirestoreCollectionReference.m */; }; 5BD3E450B15ADCEE0FED33892A3EAB5D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 482ACC798103958CB652E9953D9FFBD8 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C10DFDA2ABBC6171DFA658A947A46EB /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 25DA1555851CD85592046C2B2AEAC27E /* SDMemoryCache.m */; }; - 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE495CD767A8541DF1184138EE27C08E /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = D55086610BA33B0E019E42B6AF131FCC /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B51644B3B788695222BC7CA74C0FF3 /* EXLocationRequester.m */; }; + 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5612BE2E38E617C3707D6075C49383BA /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = F93C9E3B47C0C860974A39F9CE15FC7C /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BC2FFC08B0A3A295BB44C47A3365E4 /* EXLocationRequester.m */; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 62A1719F93C8A648504DCD2B3D955388 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5D95EAD37D2BC74E84D6596CE99FEDEA /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D0F91703E6BBDAC31CCD4A9929CA362 /* NSError+FIRInstanceID.m */; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = B1CC5B760149F472F3B3D3662E478237 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 3566ADAF3895C6EBB680739C28C8B8FB /* RNFirebaseAdMob.m */; }; 5DBC3155185D22F3124C211FB656A452 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 421D373229FFEB3FA145AF2A6A8B4145 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DE27793D9272C8C48580DD15DA9735 /* UMReactNativeAdapter-dummy.m */; }; - 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FCF8E02135485E0C23FEFE884CDB48 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4BD306F91E2E0596E6FE2C1137EA731 /* RCTUITextView.m */; }; - 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A76528D15834F35449B62084F8DFC0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = E5839957369ABECF6A487AE84792C683 /* UMViewManagerAdapterClassesRegistry.m */; }; - 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C38461C3643D38F75191F67094D39B /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 580ACC587414B9802EC19A1A030175F4 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35A2755C977AD6162004E2683BE5893A /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B82D4F5B3A6291B65BB22E4E38607E75 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FB83C023D4213B6D36743DA74C737AFB /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E97FDAF6A2480C048C7D59A0F1089B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B5C0F19A0E3BEE3AA456024193C320 /* UMReactNativeAdapter-dummy.m */; }; + 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 10934ACE7B15F5AC3D02CCA4E7AC8A5B /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CCC865E70FF1ABB44F457E8644D0F39 /* RCTUITextView.m */; }; + 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD0E6529E9841D6C85997AB91B4B18D /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1888F24E422773DA2257A17C200D38DD /* UMViewManagerAdapterClassesRegistry.m */; }; + 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659B0ADDCE76E43B49B8AB8132AF43D4 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A47241CE73C4FED1B25623444C57EDDF /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA57561F875C59D89C4DB4D4B49D8B94 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E8CACE84DC55C19E5AAE6FA38CC78 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AF896D2A8AE7DD318C3A4BECA39455B /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 287650BECBB76C9B1FF6B790694E0A37 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FA6DDEAD9030CB81E2D371A17F7C4BF /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8577AD258C8418C96654C37717002E9A /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB50A378E098C24E8D3B9722246C460 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 086961721FA7185894FA0D3B18A38BA7 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FFED67AC7B45A372C816803664090C3 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB682A30EB31ECFEB3C2C7BF6686375 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = F7870E819F397BB6F0206D325F176A30 /* RCTUIImageViewAnimated.m */; }; - 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3C7FB57675D35DBC4F65FD222AC607 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = BD561EF797318A51AE8ACF76ECBC4281 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 94765064943819DB56FCAB98CDC076E1 /* ARTText.m */; }; - 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B0E8DEC631EDAB019E6D5C2B1F3220F9 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5933CAD4DD5ECE0887890FD93DB82486 /* RCTFileReaderModule.m */; }; + 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4EF3DD9969C1ED8121616584467072 /* RCTUIImageViewAnimated.m */; }; + 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = C84E273398627AF9A988343BCCE455F4 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = EA41E26760068111B4C2441D15CAA4CA /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F533BDC208ED66383C167AB3E75F1C8 /* ARTText.m */; }; + 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDF7E96AF9FC5C61134B0F1733031C0 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A275692A0794199629EE2C8E4B3B06 /* RCTFileReaderModule.m */; }; 61E7D5628BD1405A5D099112EC9EB6AE /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3F56F86561C29CEABD8D97EE5CE37333 /* zh-Hans.lproj */; }; 62266D8BCAC4E742B934F054A012CEDC /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 759EC1D0703FA80AF904D124A62306B7 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = AAA9492001A0DEF050E0647B30E9939C /* RNFirebaseFirestore.m */; }; - 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FCA17397A6F4EE36CCAC58434AD77B29 /* BSG_KSLogger.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 48B7736E3C557317C8AB51D9B3EB69D3 /* RNFirebaseFirestore.m */; }; + 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E21D0B51414DDBED41BAD7B63D53A21E /* BSG_KSLogger.m */; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE19242EF1D0B431E1AB484B055C540 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62AE5C4EFFF8C486F27736EA796AC818 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D9656538B30CAC2E7730280608846A /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DBBEA5A845CABFFEB6D153E1E63F76C /* REAEventNode.m */; }; - 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79F82B24DE96786FBBF502CE7923B30F /* EXPermissions-dummy.m */; }; - 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EFB0767F55964F6071BCD000080507 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 13996B9F012212A5316ECE131DA1F4AD /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13AD44A211A5269ACEA88CEC0012E3B1 /* REAEventNode.m */; }; + 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBA25B8D8C16C2EE29DB8BA456371398 /* EXPermissions-dummy.m */; }; + 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CD6CEA26EA2149C045B78050DDE5BB /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EEA3E81725D3EF276A1B3A6B2FF4EF9 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA48E09B0A5EB5DC3A301E71FE75E408 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 9258960B2AA189285E786AD05D7DEF14 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2B5BE7D91C42B92363CB1487D39E0E0 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F07A3BDDE3CA164C9FD326A9150A132 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D47292FD54FE320D84C47954485F5DB /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C341A65784DBF4BDBA30D4145B447BBD /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B9C2E630430BC069A34563B1065535 /* react-native-keyboard-tracking-view-dummy.m */; }; + 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC60395AFE6474124D409C530940D54 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1ED07314747EB40BB32C54621BB1A01 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 902409A68233CED959F0877C1C63B70B /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A7BF4513B33FA0D8756475FB480194 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1472B83E4014905BE3F518B816241F3 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23879EEFF8CA9AF370F72C443F440029 /* react-native-keyboard-tracking-view-dummy.m */; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5239DF994AF5723B4F01323D4A43049F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 295B1037840F2974230A335C2AB3C3DA /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F5523C40E3D425C5338B08EB6FBEE65 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F5E4A417391626A3FA13B93ADE301F2 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F50F6B6D2CFFDABD8D303D89754C7837 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = A69B77CF38FB0592800DAAB926F26BCF /* RNNotificationCenter.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9F406C1C9FB6617BEB005C8E98781E /* RNDateTimePickerManager.m */; }; + 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = F8248223FF4290A3D4266B51E6A2B504 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1706B15B1ED8A8665C6596CF0F53293B /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1940DD790D06E2D31255DB265DFA08AA /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 50585DBB5F13DC4B200D7493C8DF1FBD /* RNNotificationCenter.m */; }; 6580CADB1B58D051496B7FFEE2B1C22E /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A63056ABA542F8B04DEFA67C19269FD7 /* SDAnimatedImageView.m */; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CED28DEBC2FD19F1346B08346877F65A /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65A7CF7828FC4B009CBCEA5EE57938E3 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = E305B54EDF07E9F41D51A8902566F2CA /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D82E4F1D8385F9B526D89EB110CDD69 /* BSG_KSCrashSentry_MachException.c */; }; + 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 532C9FDDA171E6A5C9D8A0982E1DF37D /* BSG_KSCrashSentry_MachException.c */; }; 65BC1D89895A4D5A4630CA5940E4A018 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 096746B6A34C79B2C2C70DE6137E81A3 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CA12FAA41B0D8FF1ED405B6A4084AED /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = C92FA64E3662DF6F57F73B971B11E029 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = CB3204671E6FA6B4704C29061B8575F1 /* RCTUITextField.m */; }; - 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2AFB15C5F9466F28C193F687283981 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE8B74C79105455947B5787E7090B74 /* FBReactNativeSpec-dummy.m */; }; - 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 977EFF582A49AE610F599DC18AFF7EC0 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 049EAC666464FDC8A25C8974CD848DB2 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 470C412F2DCBECEB360A5CBFE76EE6FE /* RCTUITextField.m */; }; + 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = FAAAB9B79963906294CEED95863FA077 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A3733AE169C408EE09D85BA05C927C /* FBReactNativeSpec-dummy.m */; }; + 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 333E2305122D7A2D6067A97077CB573A /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691E96B148B09DF302684A500CA3A80 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 7272451EC2E80622338B0B64A2A335B0 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 11E7E6E3B304EAF2808428C08C4ACBD6 /* BSG_KSDynamicLinker.c */; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C897451DF1654F62EE8C3AF1CF85EC /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC6C4E071F546974D115DD77D7827D5 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D0B376D7EC4B81CA519C556FB714B9 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C95355B5869EF3BB98A00DB90F64789C /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA39FE0CCCE93A98D42217B3966CC407 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B27724826A333FDB5B077AB4C85FBE1 /* BSG_KSDynamicLinker.c */; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9857BED366CA42AB9F83EF63D63CFCA /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DE202B4213AAFD5770902F012AA03F /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 1278F6FD1923201980C67CE796DA9DD3 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8107FA806405AE03A6A9EBDF1A1C3599 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A13BB77041759D8D682E75E4DFCC1CC9 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 777F3909D5F80FE07601A2F5F6256669 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 673EB44F71F2C6F4FBAD5C2C8E7CFEFF /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 599CB421E408E13C49BCEF418C589CA8 /* FIRInstanceIDTokenManager.m */; }; - 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C440DBBB9C35AEBC539AE135353CD3A5 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 868C8DFBC824AAFCA308E7A59CCE30F8 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C4605C102C6353682ABE1D68A39AC628 /* EXContactsRequester.m */; }; - 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3068BE99AAD0D69BD1FED082F7142E02 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF67ECD1E12F2125D0A1C7764C5106F5 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FD15F10F0F7DA3F97B7507A714576CA9 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3CC01F4BBB89B317FB9A46064D289D90 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 382DD12C924318781AA8A60028E0A2CA /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA7DD40CA1A789B4BAB3AEA157CA9C4 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FBB19F6852DACB904A58DB29E5E9A872 /* RCTBaseTextViewManager.m */; }; - 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4C432956D554714D14481DB43648082 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF43007D9007C90C3CC6D29EEC0085C /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B3010582BB4BE79701A9A48C3BA91DB /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F59A869702F4824BEC6F65C61A4FE369 /* REABlockNode.m */; }; - 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F5D9DE81FBB94FF549E764B97256F3 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 36DBBB1EB7784B467FC297447532C802 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 402BAEBC36AF3C9660E30FCA2A64729C /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2149CD1A9786D1ED0CFA9C925C800C /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C69C3EF859CAB70E5B41B8C17C7F3630 /* EXContactsRequester.m */; }; + 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EF5694B8E66F0D0E0DC6F798081974D /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 13FE5B7DC64A6E9F42C8297AE48B1586 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2136384B7D6B8627E2971FE805B09E72 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 228AC5316B37F9112A15C2489DDE1E55 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = CA61F667A05E9DB8EF4F3266762EDAEE /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = A97754D3320C1FD81ED660B127B36612 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 493C3D7C67521CA19A82E045A4232B9E /* RCTBaseTextViewManager.m */; }; + 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E6BCDF29D3955943DF8B9519734A73D /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE7843EC8739E3A31678AABD115CE35 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B068F2251EF317197654560800E894C /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A4C03A998601C14C0E950907D6E057CC /* REABlockNode.m */; }; + 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE4E6D37C942F20AE082A5C3E8EE42F /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A836F772DFE49877A0D58D0D351AD4D7 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C23762E4D32B627E18AA019E5F8F2B /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4E2C829C5BCC61D75F1E0B270E49F6F /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07268468A808DFF75FBC6A255EC9F0BE /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4A89A5F38EE3C48F7DD6A1F7BAEA86 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A0AA1945B09A957D7980D6F9663E262 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DFCD1D31D8CAA87143E066DADEA60F /* SDAnimatedImage.m */; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 276DC8FED36CE7A1A8580CB612E3C53E /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = CED7747A6AA46EC1976311D36800809F /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AECBE5205C7FE40901C60D3BAC2D475 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = C37B4B112CBC6E41702C04EEDE7BAE97 /* FIRInstanceIDStringEncoding.m */; }; - 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 172BC77A90390B1225883519C2201917 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2F0DCF4B8A954074992DE814A87BB4 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B002A09EF5954BBC84674762FAA72AC /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0FBB00E8E2A118FAE70AF21ABD4769 /* SDInternalMacros.m */; }; - 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C137E8A620B6800FB646A6A4D436298 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6EBD7876871B8B992FF5202D9EDF3C /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABE1F3E3AEB48B6FBDC2DDFC976ACF4 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27318DBA74DEF0DE342E0CC7ED8BFAF5 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8D1E6F05AE398D3EA1C47BA61D9C61 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FCA0A141ADD27ABD3C523D23FB6576A /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 661B96714A028FF3735AB243B40A52F2 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BBA73E13C75ECE9DC1C78077C4C87FA /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 815A9BAC42A50A2468F2DD062571EA0A /* SDWebImageDownloaderConfig.m */; }; - 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AC85ECD7F57613A90860782F2DB13F63 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B6EB6243C862B0E0EA3E9B4D8F9B7D6A /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A262D3993BCA34A340C58AEE91FD2BFC /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2816349F8CD77CBF978F8362602A095 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BF345A21B128329BABD0FF08059B1B1 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2C818D6FCADF26293BDB5D60AB1E76 /* QBAssetCell.m */; }; 6BF455BEAC6B3B63B7043B2A42FFB241 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CD42BF36AEFAF616B46EEC2EDAC1D9 /* GULNetworkConstants.m */; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FC20B10BBFE3B2DF6CD670ADD6508B /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B63F1DF151406D1A57F8203BA479227 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA0B838047A5141E696FF3949C4D024 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E183E4C6AE6E9E48300981ECD06066 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B19257A0685B3D5F7675288A71E087E /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 69432DA688A5254C56D23D061845A528 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 452084A1E355CA8DD53918ADA8648C2F /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = B02638646000CABCD9543E768EE8DACA /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F6D18956224424C34C25FFACF64AF9 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = B384E5858546AB5932A7EC9E6B7E280A /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7F41A208FFDABCB85C479F7BA211CE /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CAE7B58CE9BD131394923647C87E502 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 098BDD36233552115AAE3CAD9B95A204 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 462C414933AF6C2576CD73FFED606E26 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 78939B80F32C146E1BDFBF7CC0808672 /* REACallFuncNode.m */; }; - 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6705BB7EFD85D083C3CA3150A8938A69 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A11F3E94C537432CAABB1F9310874882 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B52FBCF74C5BFE6F174439E1E1E310 /* BSGOutOfMemoryWatchdog.m */; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1386113097CC1FDE6E2557A4518C1268 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7B9E277B2F88D029D62E6183406A86 /* REACallFuncNode.m */; }; + 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = B462A58ECA611911C0FCF32DC87B4230 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98AFA6E59257431A9AA02DDFC5621569 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B29827EECA6282CBC136F619978150 /* BSGOutOfMemoryWatchdog.m */; }; 6DBB75EF7423F09AD44E2573CAF35AC4 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92997292DBA3CB53D6D368D48FDC239E /* FirebaseInstanceID-dummy.m */; }; - 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5090B0A0C6A46EF3068CDE1C911ECF1D /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD39679022A95761E80CDA2AEB1AF33C /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C0F5FD5BCBEABAFE449D7A64FD25357 /* EXCameraPermissionRequester.m */; }; - 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 783EDF65B20C191BEFCFC41FE0C3F895 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 876DAEBEDEE01F239B3FF5D0EF30330A /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C35CF730248B35186190623AD1B0D8E4 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D72929B07675E8D75FB35FF71C2E33 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70EE458F7665755CBE7A61B543F829E6 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B6480466BF7CEB07BFD59FB4E4DE0C /* EXCameraPermissionRequester.m */; }; + 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = B253FCDCCFA703EF327E1DE179D9B9BC /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D37813C41CC038BF57E7CD6C0138D43 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F9253965AF41E2F212F66DCE9B0591D /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ED99836BEA0FA40F40EB3E5E64786DB /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = A66E9B64871E443AE6D5C9E8D3BB2A3A /* FIRInstanceIDURLQueryItem.m */; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 812806CFF56D0C611E2C594692561A12 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 90558417A3AD4FD637DFD00520357285 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF2F61F0887BCCF3E2FD36E867A0775 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC422496D946DBA929558C84D085ECFB /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE4BF39591C744FB13550F980019EDC /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAF80DCE8A9ED255EF456B3190CDE96 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF399719F6A03B0285664406D447BC33 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 444D69041368197ED52BFBE9A90FA6F4 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F98ACC2961642744E6F8EAA770B039B3 /* BugsnagSessionTrackingApiClient.m */; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C754BBA0BD135F393528435AE42DB236 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D28D86D978E3AD6F7BB3C1D1882D04 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = DF32F01EEED52B2EEAF17A10F226FDC6 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EF388BC987D2243E6DBEBBCE0CF1A1 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADD2B47DE62FE3AAED44D1169CAE31B /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E103292D392F551478DB505253F1E6 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F035410C2743287DE4D765755713BB /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 982723DF0EA78914275B7343D58C2F6C /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EA05AAE813CB1C667EFA1F8DB71969 /* BugsnagSessionTrackingApiClient.m */; }; 6FAB807DF62D6E61E6FB5A290B898F22 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F315153651D6B1F113F407C010B3623 /* SDWebImageCacheKeyFilter.m */; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 89895D63AFEC6DFA892193DA1A398F55 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 542C2C6C4E041D16FC5F65BCA7CFF5DA /* EXWebBrowser-dummy.m */; }; 6FAE08276981C05988B6748DB0CB8ED5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = E56D8FAFA027A4F6F1689695B4FB126D /* NSImage+Compatibility.m */; }; - 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 217C453C85A6762C2B9C48CAAD0FE938 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5847EF3E88F8586EE1EED4D1B5E6FFAD /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C0594FCE5C047E1F875BD261446DAA65 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 30450BB1A1B8370C4B861F726E2B8538 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A718148264A5FCE75ACD866F4B40602 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B67BB64E873A95F6DCFC9ECD9D10E036 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E41EB031C72ABA2A58994F42A1B667 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = D912E9C8CDC30A2DC90C787F99DA9738 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7088EB44CAC740223920BA8B46908860 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 25023246C576D25227B4AE4712355E3D /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DB3F7C67F08BF46BE529A99198B47E9 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FB1C1B9F581E8C5A3EB9C5E4297B57D /* EXCameraRollRequester.m */; }; - 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C968F4692AE46EBD64F7483EE19B1BAC /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3CE924AF39D972901B75A1D006860B9 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E72566E849EB71B89223F60686D9916D /* EXCameraRollRequester.m */; }; + 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFAD4065A27BAB2A1848255C232DC91 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A55FAED045F64CE6F36A0E2A1C1F8B /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F92B62037AC75D89E9897DD968367D03 /* es.lproj */; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 52EAE7424CD33D5F6735C3F02B932E71 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D645118DFE6FB7C20F4E6C1C6955A1CF /* RNNativeViewHandler.m */; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 518A70B15B766E822D84528A62412F51 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97B0F2AA1C96B6D43BB002D7FCE0A /* RNNativeViewHandler.m */; }; 71E70FCE21AEBCD07C6F9B5C163F3495 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FF61D799105A3F47C48322386EDDD0C /* QBVideoIndicatorView.m */; }; - 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE082B6C44D1037E68F687128E2BFBC /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA70BAAB2359858A62D84D3C51E3327 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7213D525B6583565A1285BAD6519937A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CE127EA34762A583D20B27A3FB183A94 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B0B778F6130ACAE9A36E5A73B619E4 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F548CD0F6078F1CF7512DB8977556CA /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BB74003C0C0C7D47A9ABECBFBF79F10 /* RNFlingHandler.m */; }; - 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 0516BA5C785D1728D4FB7BF43B9AE36C /* BugsnagCollections.m */; }; + 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F231AD2679B7C9EE706E6BBCDE7D22E /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B81BFD13C51E703ADF3467AF47BF75 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 604BE1DA0F7D231747F98877C94DDC4D /* RNFlingHandler.m */; }; + 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 51BBA580FC43CB1363EEEB18ED6392C1 /* BugsnagCollections.m */; }; 7264B177FBB9E819FEE3AD4C00E0E102 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DB534E64AC58426CC20A569645D015 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 726F398FE3050CFFAB6C42E76FF5B72F /* GDTReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 265F8411F42BDA31FF280D67A68D2CB1 /* GDTReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A15B289B18010BBCC0686DBCA0E1ED7A /* RCTSubtractionAnimatedNode.m */; }; + 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC27B843B8222C75BDC8FB535C8E008 /* RCTSubtractionAnimatedNode.m */; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DEB82B7415582949BC39819D5A9AD0 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6297BA59BE1862EBD5B3D37507864C /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F6E99D2AAABA2C11653AF33876167B /* RNSScreenStack.m */; }; - 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B69B160A8D28D1E51F3C39C56D29A5 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CBF97800CB375F5F1CFD50F2A9ED4EF /* BSG_KSBacktrace.c */; }; - 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = B3B673AEC32B252F2F50C7942DB2FE42 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD10B6009D40B6E3D6E6B0735226E4E /* UMReactFontManager.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 809D7F88930C76D358E1DC90AC941F47 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = DC27773B4EBB452167FB1A1926E52CB2 /* RNSScreenStack.m */; }; + 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEFCBA577467637C7DA1AD12DA6F75A /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 39369053D09171D7BA3F40A564596395 /* BSG_KSBacktrace.c */; }; + 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 316CD5DF8063442746D2DA9064B0EBBE /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45373185955BA213D5F2900EB9902441 /* UMReactFontManager.m */; }; 73BC222F96DC7059E988EC0D2EB7779C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B33E269DBFF2BE345F8195FBD7BCFB67 /* GoogleDataTransport-dummy.m */; }; 73E18A09BABC8E09E5AD7EBEDE40D69A /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EF44213FD3223B12AFA1C7C0BB356C6 /* SDImageLoader.m */; }; 7416EBB83257207F58A9B56829018B1F /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9B3DEFA1431597E451E5DE29D1828D /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = A6276D0BCBD19A041231595A2DDD0DCA /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 76936D115A1C29D524D8187A9156402F /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FE3D64D1C7022838F5216CAA22416C /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BA6B665263F7CE4C16FA9945BD9A2140 /* RCTAdditionAnimatedNode.m */; }; - 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 146E8432115267B246B7B17308A7D916 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E73AFFBE8A0877899831DA71FE970F /* RNUserDefaults.m */; }; - 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B7455685549EBF9C61766FC609BEAE9D /* EXUserNotificationRequester.m */; }; + 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA33AB62C4B7D01D01F0CCB6F181C8C /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E2F257439C5A00D178513CF192B8AF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B99E26AFADDE91F4C280A8C370152A /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B12B68247A234FE78763DFE6502E44F4 /* RCTAdditionAnimatedNode.m */; }; + 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 8827799CD3622DDFB04521A953779AE8 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 213770343AE98C8AAB8DF517E5F3B0D1 /* RNUserDefaults.m */; }; + 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D303E7970EB9860AB1A558D43CA8C9 /* EXUserNotificationRequester.m */; }; 761E0A568CDCE9B772917B337430A542 /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B372F3BA6D1AB3CE03B311B35A8ACA6A /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 622C12FFF0D345ECA031E4E1C62D83F6 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 14401E8417F07EEDB7B93DC7BEB6249C /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7636AEE9E430997447356606B9B1CD06 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0A5B7107E9BE6590E7CE266D26EEAB /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A41E843E947E1CFCAD8852446936221A /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 453ECA6654F44A718F0A1BC0DC7960A4 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C452D821799C5937174F13BCEFDB7FD2 /* RCTRawTextViewManager.m */; }; + 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B8B3FF66993427CBAC56A542C655C3 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C53430ED54ED4F3713EBBE6BC4EE8A62 /* RCTRawTextViewManager.m */; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A4FBF1AF4CE42311CBFEBCB2E8AE88 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 24FA5A3DD0407A834F248C139742ADB7 /* ARTGroup.m */; }; + 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = EC5D26A75463D24E519BF4EC68BF6243 /* ARTGroup.m */; }; 773B4DFAC559B7F58017017433245601 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3801B81BBEE14EF6AA1665A2C3D44BFF /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 776B301441712DAA37FBF6A7CEA93C7B /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = C6A40CA1158D96459D53467F05719CBA /* SDWebImageTransition.m */; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 8938B320492783985358B1EB49BD2B5E /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A95E050A09DA25B232FED340228122 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEF3D1F614129815AC3A6D26B1127C0 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77A6EABFF15EEE860F7EC832E59EDD63 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B72C106E89BF8161D335F7EF03F47EC0 /* FIRInstanceIDTokenStore.m */; }; 77AD7992233DBE12F405310EBFC991C5 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9124B005603F745AE8A26788BA7948C9 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EFFA9B1F1ED908799FD6F3C6DDEA77 /* GDTEventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5E40BE38CD5D32550DE474499879E1 /* GDTEventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 663DF61785EDF50F0E462C1F5979D2C9 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 04957F4510C9D58E0120F2B232B0B1FC /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 783E0F7BD819E79560DB35F639B8019D /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C8283611FAE7801D09ECAC1AD49CB6 /* FIRInstanceIDVersionUtilities.m */; }; - 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F63E6EEBA4EC4855EC5155FC5B232E /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20261AF839A266429005BC132E5BD885 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = ACB9C9B7C028DDBC2B0FBEB2D1EAE8D2 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F5B4531D9DA7A15F614344CC893A8A /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9E09F7DBB216798A751F44ABEF3648 /* RNDateTimePicker-dummy.m */; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBD62A1D8D5E6211EF692A42BF7684D /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78B369DDCE73212FDEF4DFCF3C3E28CD /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AF93214EB824D891C9B3A721D08121 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78B9DE85D610820ACD6ED40A11F08E58 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC8E6C3EF32A1CAF14738999DC122EE /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = B81A4E8E783D48DF300F93EEB5FAC970 /* RCTResizeMode.m */; }; + 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = FD04A093E13378AF06F9E09766FDC00E /* RCTResizeMode.m */; }; 78C2DFE99D6F7A1A274E9D8EFD165643 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC490D0235B782BE1CAEF0FBE717F7D /* SDWebImagePrefetcher.m */; }; 790CED3B2746C8BF72B9C0F037A74EB8 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A3EF2DF6AE2A810E25A7B56F994305 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F373132C0248800341B87D8F630767EA /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 377DE6DBAF253D2660305D2AFBDC8638 /* EXFilePermissionModule.m */; }; - 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = EAEFFF75A9C605A1EF339A10262B0292 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22042ACA6514EC558543411151311E54 /* UMNativeModulesProxy.m */; }; - 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4F9AB6B1E729C0B6BD989B55E05E15 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 838D58F01A9F34096C6A6D9A4E2C8DB6 /* RNCWebViewManager.m */; }; + 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C869EE92774047221126F2CAD6CCB4E3 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0F37EA39308EE6D96BC5808D6BB2C6 /* EXFilePermissionModule.m */; }; + 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C1F8FAD362FC436D035E3E4721D715 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8D26FDAA3A3743807DE4F675673AE3 /* UMNativeModulesProxy.m */; }; + 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 972B10C3A154FDD38D8A6DFE46183C3B /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A06E08A9F628D65737B6BC645F009039 /* RNCWebViewManager.m */; }; 7A773ABDF9C553C818BBEA466D3CF195 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1732ACF5FFF2CD5BF851CAC5EECC9D /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 762C67DDB2F53C56F04D6FA1783B9ACC /* RCTLocalAssetImageLoader.m */; }; - 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 267537452A82A3A232FD2A21CDA62841 /* RCTDivisionAnimatedNode.m */; }; - 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C7317438F32E76C74A5F078BC0E653 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 019660E9880963692A9DD654445F12B8 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 025EA157DF8DAF5E7622AB672CF7DA28 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FD30F76BD772A62E65C8492AADA354 /* RCTLocalAssetImageLoader.m */; }; + 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A339E7BB39F879D32110D7332480B700 /* RCTDivisionAnimatedNode.m */; }; + 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E88611FCC90E298586AB2C1EFDFDF4D7 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEED4CCE6737C7EBF8314C377B09835 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B26AFF04F1FEE26DC55FE531D0C411 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B469D1BA649E2A3DEA56273C87DD9B5 /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 046F3FE1986F3CAB8C4EECAE504FD06E /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64A0EED7740EBFB115F934F278F76ED1 /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C361AA60E60452354E55267A33BD6AC /* react-native-cameraroll-dummy.m */; }; 7BBEF92E70F2EC74F3D43B7D1E1E3B5B /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = F3275EEDDFC0BA335A45CCA50A050894 /* FIRApp.m */; }; - 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A46F7C3E0CCCA105790FAC868232EACB /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 10EED0B031833026C6C3F61672D8502B /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6843CF592A1AC8B5AE7185223515AA94 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E686FE56EF5CEC46BF66195FC2C9BFAC /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BA191249F4128BB2C5BBD28AEC3714F1 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7F6CFFBB5DA88C7B9A3E2CFBFE18C8 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C87A0BA4406932C036C25C471937D6D /* GDTRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F455304A67F7F226CABBEF3A52354DC /* GDTRegistrar.m */; }; 7CAFE1BF52F8DE2D0BEF15A33CC19C7A /* GDTTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD33013839FD99AEC9125C6F326F7D1 /* GDTTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A201234272B992046DC33FAEC1DE2DB8 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC61EEFF4BBF136045AB54FC22452E13 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CC52F3DE61510F717E8B0BF7FBB3FC3 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D0BA49BECBA977EE96145FF5714A5F3 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 98FC90D7FE55EC2A2B29F7307D6707A2 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BAA0AFCCC2CA89EACE6C4CC7898197 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 69897F67B1CE0D41A709DFC6B8EC563F /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF45E2E311666069F1D1EA35B8F0383 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D068CD903B1F0FB3C9BEFCC029D9EC2 /* GDTUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F9A9EDD59CCE5A4815F44076F37ED6 /* GDTUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E7BDD84650A291C7EBA3730FCCADDD3 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = AC066CC6AED1E3EFE73E3ECEF0CD0FE9 /* RCTBackedTextInputDelegateAdapter.m */; }; - 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02267B6764982AF7929F445941B9A3DA /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5853282F8FFB3FAC55D2507B207565D9 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C45A8743A1C35FDB9F4773F91EB4B27 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 09EE574DAD4B7AD8E9A5DADA2E42228D /* RCTBackedTextInputDelegateAdapter.m */; }; + 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5D8886EC2AEF3B4428AF073B0E19EF /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2857FD2ED29908954D251250C772C0F3 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CC1F39BD6B7A42FC80541F6BA0A436 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AA2DDD5D0523B8F594DAD36A9AAA5E70 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D188E8E3576D03C9340998F82A7DA3 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 451748833D01D28A51396492ABBE2394 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EDB9BED917BCE27EE5CA97BE801B215 /* GDTLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D890595FF12C9DBA5FCD00F8D7B716C /* GDTLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E16AEBE6E688D2B3CF4286F3156B13C9 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E94895128ACED1A886414A90DD13FE /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1850CFFC39379B889F6CC5008E75C942 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA995225964E165EFD31F85A2E16E27 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F653669B6A69DE9841ED9138F3355A7 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 148A15A5F1F22C46BFDC54ADCD4AB08B /* GULNetwork.m */; }; - 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7E580A039E778B60AA7E72B7AA8F26 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5690B9A979C0053589923673622FC85 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 27930C8F727B16DC3C632B02F0F45198 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C8948BEB83B8D42DE2ADD6A9874191D3 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BDC1CDE654DCAEE3758699D9DD7F54 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0BA5BC24EE4E864BF6C5CD481FBD25 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A63674238D8FC2FD6C1124AF57DC4BAC /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46AFE37F6388C286B8391C9A0E468EA8 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEB4E96DEC40AE7082A21584B0293E2 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EBE9D2DCD42DF4A6965813483257EB /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 25D76806A95BD94C3D3A37C4CC2DAAFB /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A01ACBA98CC707F86EAF5590BB456FBA /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 803FFADEF322BF208B7C37C7368C3A1B /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = FDED1EC33E807284337CE718720B8F32 /* UIImage+ForceDecode.m */; }; - 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 98513C9F247265E29035FC28FFDADAC2 /* BSGConnectivity.m */; }; + 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7EFB6D3C136BEA9E7C14E8EFE61342 /* BSGConnectivity.m */; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 90152979FEB33BAAFD0724D57ED6F6DE /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B7E564C956BEF94727167D7B1605AB /* READebugNode.m */; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CFDE95A6869C12FF0424853345B9B08 /* READebugNode.m */; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AE0EEE989352089575A595D8BF69247A /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8164D2DE9EA9493CD176F2BEF6966635 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = EB01C7233CEF74DFAA637F56AB8BBD38 /* FIROptions.m */; }; 817AD6EE8D4389A94BC361C34B67C504 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD153637D0F88F7863503888BF426FF7 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81931D53BE00E8FC4B75DDBAC7C86185 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = E228B19B85B5CCEB10625AAB1350D5FA /* FIRInstanceIDCheckinPreferences.m */; }; 81B0ACA7DCE8C57A1D20F5F0671367A1 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBBE1967FD8645B907167A3031D4271 /* SDImageIOCoder.m */; }; - 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61053461CADBB4522DC1CA7AB61F5697 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 226679663EC6272B26CD3EFEDBCF017E /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D0545F7A645289DBA3A922DAC960EA6 /* RCTCustomInputController.m */; }; + 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = CEFAE0C3CF1D99BECB230114EE412F42 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3051558B07ED6E28C55C39714DEFC779 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7365B28A2A1507AC15C7C3C948E0307 /* RCTCustomInputController.m */; }; 81D1A8068B0BE495C688E5DF7DFA63BA /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F3E2C09229F44C8129BBDB4F641D8034 /* FIRInstanceIDTokenInfo.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 756C6DD3B919B07F11B61CEDA6898ADA /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8208754E5259F6F76445FDE11F5E84F0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B39F9A3CEB4B186E40589A4D931C1257 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2292A52D69EDF56C96E1FA5920D3BF5E /* RCTAnimatedNode.m */; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAEC06DC768C4AB2569BCE557D67E62 /* ReactNativeShareExtension.m */; }; - 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C54BF46595A1579424DE393B0E7654 /* EXSystemBrightnessRequester.m */; }; + 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6D5385DA62C217BB2584B0B4FBFB6D /* RCTAnimatedNode.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 15DA5644A3908F5FDC2B07D97A66CB74 /* ReactNativeShareExtension.m */; }; + 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BF2015C38AF72591EF97C81BD68934 /* EXSystemBrightnessRequester.m */; }; 82444EF06A2067FB8B0AB470BA5E6F02 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = CD729C838803A5760395185A8DD7AABD /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FBB2A83EAB98E842AC78F6490F3FF33 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B484D5F9E15B6E79FEF8D3BD8BB7FF6E /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF99B5FFB2C980265F41EF33ABA7608 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFAA1EBBA031711C1B456D1E7A583749 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5CAA6CFF500535C51D7902A5DF6F0B /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD5C9E679C460FE63C5500480006BDD /* EXFileSystemAssetLibraryHandler.m */; }; - 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E9773907FA48EA314780340DA6C04AE3 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D4B0EA1C69FE98A7BB477DC3FCA5C6 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BEDCB5D17E18FAF51FB493BBD35A3C0 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF65D00D2E3926F0F65448B95953E2E8 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E450C88F4ACC0F32210ECDC76D87ED1 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5CC34B97248513D9C582B86D266F4F /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4E50930C881D54C475F4E9E2708438 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 50B424FCDE1357C73BE0A177F2AEA2BC /* EXFileSystemAssetLibraryHandler.m */; }; + 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D597118AAA3AA0D63E0264FFEA27E9F /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = C97AD60F608DA260967F6C6D51228FA3 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E155CC65CC191C04D68A04AADD4EF5A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83408F01EBA71440E6C97BDAC6DFD142 /* GDTUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD7DB831011E5990CA191C046B34CBF /* GDTUploadPackage.m */; }; - 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C46F2D672C59BA5F9AECB4DDEBC887 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3B9F7721281DC9A75D09D264F25360 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 186D0657010FE8E3BEADBA1E74FF07C2 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 836F27D41A90EDA63F478FC8EC9B6B2B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3CA05BDD3A8EE50282E2430A68C27E /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BA367985062220F1382DE1CCB75ECB /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F527931D0C875097618FB77F5DED35FD /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DF27017AAE3E8185C335CC76EB83C16C /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 882E15C3C47E299053A64CAC0A68372B /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83943BFAC59E2196EC1FF4D2E942776B /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF619BC2828EDB1BF708DA758672C714 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FCD016F4192B5A83FA4A67EACD8A6C /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = ABDD5FEEB0B4B846F2C916A95DE04DA8 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 133155EAE646F5287D3A95970889BA11 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 17815C864571987A0F2F6E43990868B4 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 84A56F291D661D21781412F8874C80F5 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7777D1206CF772174961C6A8960477F4 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 951E27838DC1211BC70B9F551B06A1D8 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDBB8B42194CD77021D65EA335BD782 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 840F678749E054ED962E71ABD47D958B /* React-jsiexecutor-dummy.m */; }; - 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA8156A453D95D792A2B3FFF1EB2115 /* BSG_KSCrash.m */; }; - 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = D438306ABC79A45616BB67230E8A3CA4 /* BSG_KSMach_Arm.c */; }; - 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C19CF08C1B8A9FC1A05A928B035C792 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9666DA1DD28A56848F233DCBE80D80CC /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E5B709DB109B425C4143DDD6811F3447 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B0D482449B83B8967059DB4231B9531A /* React-RCTText-dummy.m */; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = B133C726515ADE89D9D4DD3EDED65E7F /* RNFirebaseDatabase.m */; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6DAD9C5614BB881D7C20EB48748B359 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8DE89B4C8E0A59F30BD89DC6F21CD9 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3325F6C4A1A04B8F1C8AB907EEC24E /* React-jsiexecutor-dummy.m */; }; + 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D8CB53507FD2CF7B347980078D0B708 /* BSG_KSCrash.m */; }; + 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = C536BD57718575B78DB62CABC81A1277 /* BSG_KSMach_Arm.c */; }; + 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA7CD5401BCF2E898218597DDE17297 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 247A5EA03A4847E3A7AC163CE046CB04 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5503724E3438B0679C3F7E4CB8DBFBEA /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A41746DE0A98E4B82C4C89A3397C9DC /* React-RCTText-dummy.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 375FA80AE5E32155B7FDD0548CFC3EFA /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E8105BADBEB62C59C340CF71E2544D9B /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 865294460C9058B3F7E1DA3657B9661E /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 284717196E0B5452D66F98ED0D8E6102 /* RCTMultilineTextInputView.m */; }; - 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B496360C78CE6A33BB3CE3A0C754DD /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = ED17BB475760E5EB1808B1009503CA17 /* BSG_KSCrashType.c */; }; - 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 49E5990C5787074894C301AE6D55D25E /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 209405F6035B3B85D8066BB4F1B81D3A /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0771C6336639E1AD2E0DFD8D845FCE98 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 010A9585A33A6AEDFD199B7698A58351 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3661D9EEDCC436C5FDC69683507366 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DEC5F45A51DC3D386B80E88F297CCB /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1734573A1FFAF648D3E038462767F3A7 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 35A2E3904649AFBB24EAD823EDFFF947 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD325F453B46A7923257F9A6D95F78A5 /* RCTMultilineTextInputView.m */; }; + 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB1C6BBBCFC667C647FDECEC591BA2C /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 05B2A89D59FB73FB8BB0713988F4939C /* BSG_KSCrashType.c */; }; + 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC40F160B7A2931915500E5AE27872D /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C72A3D5F6D88608C76DFDFFABB74EF8 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DAA100D0372D6D695BD1BEE90566CB /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 32AE94794BB5B1659A6C44CC5F115E76 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F78CD7C2F3E2E0B3206A404242C93775 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F8FA0FC12A3715FA4378F662947DC2 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5A83566FFD0C1E52531603AA5E52CC /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 870D351F38C54A674C7A868C729379A1 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E69BCC3267990FBB5D99BB96D6BFAC /* QBCheckmarkView.m */; }; 874A19430FD98697B7C5E8E8AB50513A /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = ED604AB876EB29F716214E9151C8CE21 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D848F68395B70D6462D3770923C28EA /* RNFirebaseFunctions.m */; }; - 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6044529B504553E2405928A546581C1D /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = B294544F6F1732E2AB99624E8E1A02C4 /* RNFirebaseFunctions.m */; }; + 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 25911C20351B3EFCDBD5A6B009CF4574 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 83647078B615B2197FFAB849A9CD8510 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 43F9A867DE427FE12667E3B2732F311E /* RNNotificationsStore.m */; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5B7AA7F51A622ACDC3670AB5D0F5C2 /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A668A088D98CBD06FCBFCFA3AA2A8D1 /* FFFastImageViewManager.m */; }; - 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A82C6FF1B2D9D9CB4D0445F8A61A9D8 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 704BBF4B1E55AC7C888C769D7BB7808F /* EXPermissions.m */; }; - 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD17068DC41BB064E102FE1E20078E09 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = CB636BB0116A61F6A72CA1E38CBEA640 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C8035F5067C028D95B24C6EE0D688FE3 /* RNNotificationsStore.m */; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D324E3D8C10F168C798634233A3E714 /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CF99CEF282BCCCA7045904509F3CAE81 /* FFFastImageViewManager.m */; }; + 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEFD94BD06B3B9C73DD29579ADE16D3 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = E1AA147282D13B9A62FB98A4D23C0F97 /* EXPermissions.m */; }; + 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC35E952ED4A537722292F258BB37F68 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2944F8FD8DD98A3F6DAC616A45EFFB44 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 887878B7F152531BC505CBCDD925D20F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA4E722A5CD358D1D5FF57C4B0781A2 /* FIRInstanceIDTokenOperation.m */; }; - 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 89207DC46009BB0E33720E86E5E4FA19 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADE82CE2632A8AFCA54F0C72E29F2B6 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1DF27207F1A5C2C963E7713C734555 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDE9624A5F6DFBCD3AC7DBD6A9CC78B /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DEA694E7E5C1A607469B2F201FDF6734 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 054CA69973DEEFC863FDC9D9D7F0255A /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 51887EC3D08B15EC7B052FAFA9269DA9 /* UMViewManagerAdapter.m */; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 793A542DDEF956C411C64BDB67CA815C /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DACA43103E6BB038DB59FE3C1706956F /* UMViewManagerAdapter.m */; }; 8901A121AE37ABD75B36592B85401172 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = BA98DEBB67BD0B51A97B0283ED49ACAC /* UIImage+RSKImageCropper.m */; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FA6CF611A8F42EDAB70BE1C5C02805 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 608BCDEC8A03F21297F1CCCB6710D724 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F9C35AC7F2EA43348AE615F1F7E674 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = C490D848F8DFB508E94CD6FE5DCE7754 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C70C81EAA793BF9FB2740627D363F8F /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 893A87DB2A3762C63B0FAC772BB3EDC1 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = D63E03F1ABC7D78DD3F272FAAC453778 /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A742138C374705F38D264CE064DE8B /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C5E1BD69600847A1B33F947722ECF9 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8977464D4BB4700C5D299790C4821FDE /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4FF18BE38D2B2AD9966B86C10BA36A /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8992866FD890EAB7CCDC06AF809602BD /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A46BDA79D3DFF1C3023FB47BFA86099 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C03448830E3450C0DF8E7F6615C3356 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DDEE55A6C71E4E661BEE68007A7D3 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A2BACCA9758EE9824DE4BF78A8D197C6 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 85EC2C5BB6DECEAE4642CA0FAFD0F187 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C213AFCCE5FC50C963F2D24321B93A8 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA7897689E9DB340D216C1A8EB94A96 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1FB07B0CC8D15B8EABA88D0FBC9FA7F /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAC6664866FB387533C5CDFDDB9F619 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E77976B72B9AB6E7BA93B640FE4F43F /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A54A0A46C79160C041E5BC8B5148561 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4359E71E53C53B1E541D3AA5CC168B90 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 522AFF1E7ED2CC5B94FBD25D2F712FD6 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = DD656B4076DFABD877855D62FE4B1AA6 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B35015902DA39F691EDE01D75E786F4 /* EXDownloadDelegate.m */; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F48B38797ED7980805228D5492EFBC95 /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F003BFF1B69BDEB9D07000F955D7EDD9 /* RNCAppearanceProviderManager.m */; }; - 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7AE47FC245F21A86FEDDF8F9951FD8E7 /* RCTProfileTrampoline-x86_64.S */; }; + 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D63FA28AF80536ADEEC30404BB221297 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = E81242441E9F22364F9B01F7005A8B54 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C6376ACF4055834AD76BC0924194FC51 /* EXDownloadDelegate.m */; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA1A8CE0E5F92EC09329DAFFB686E7D /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D5667383EEAC7C0FBC98210A1743F3B /* RNCAppearanceProviderManager.m */; }; + 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = CFC75F75889338CAF49CA530BB3F311E /* RCTProfileTrampoline-x86_64.S */; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E71655EB93E4FC9928F6CADE45CD79 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0C8D915DA3564FD6B5B7B18703D8C2 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B311C84FFD89B80808E19467037D6308 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF821CAAAB48EB6071D302666782E1A /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F88E1771428488ADD1003A651794EC /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 815A097A50483150114140D813782E8A /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 562303B6C187D0491F4458296B758CBC /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B316B81E4609D922262AAAB60412C3D1 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 477A5D0B7C294048C9688BF7F1498FCA /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C947E3F75C661809C8E3BDBBDAB7593 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3F084BC58B9C5F2BA562EDFD9FAD42 /* FIRAnalyticsConfiguration.m */; }; - 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AECA93497D65F4FD67F870BE6B6D5D /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F4800FE217F808979C87C8E841605069 /* BugsnagKSCrashSysInfoParser.m */; }; + 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 199C65D9889D75B86AFAE1555C45BC08 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C62963DF0BC0564FEBF70A3FED8230FD /* BugsnagKSCrashSysInfoParser.m */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E9AA3A0EB6EF9F2CAFE19AA503FEFBD /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5782475A5B000620FC63EF2A7980B76B /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1949DF8F8BF713ECF190E90BB7389981 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F61B6AEED9503AE65D497C66B491B1D /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 743E39A4070D10E7ECCFD930E77B52ED /* React-RCTActionSheet-dummy.m */; }; - 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3577B94AB5AB78F3C9C7361639950547 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8D8B96BA47FC802E04F8D64C8BDC6B /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A42EFC34B1173E3B36A2387E063B15 /* REAClockNodes.m */; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7395B5C5E4D425DC7DB88ACCFDB5A03A /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 287DB838541FFB8DFDDA05910E775D9E /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = C9ECD84BF7ECC17E8A196720EF82C5CB /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BE8C08641A20E76AF3548379EDC8CE4 /* React-RCTActionSheet-dummy.m */; }; + 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4835F854BEA7430B1001BABA909F51A0 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7526C820683A597B5F0C52AD0E9AB4 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0142FE240F50CFE6EF1663C5229B8A /* REAClockNodes.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 73E2135C8D025A56637F6E9D4ECEA339 /* UIImage+WebP.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6246DA46F72F7B988BD18ACE234586EA /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9764E79537B6EFE0D4AE7488876EFA60 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 886796CEDF20A83B0184CFDAD0F61599 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2543E5CBEAF117CF42B0CB4FFB740 /* REATransition.m */; }; + 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 374D14998EABADA514170B2D08C33562 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B84D286DA657CD4D4B191BC3B948AF25 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9974891C36F24ED4765E0B1AB9DD4F55 /* REATransition.m */; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EA35C9BA0A713AA410C2F0D77F97197C /* RNDateTimePicker.m */; }; 8EADE023E455AEC580E9BBF11138B13D /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DEA6A2926AC579012A614F51820936 /* glog-dummy.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D866507B6D31ED844E9A73B3118772 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A2CBD005D5C1D35631BB6B310196EB85 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB5B29BE601891C479387CC8004CED0 /* react-native-keyboard-input-dummy.m */; }; - 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E790B97C4D3BA314D6D5D9A90E5579 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5286426CD2BBB19908ED46BB5202F3 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE02734C9C68F8D9E65EA58B865DD39 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8881B621F12A407767CC2F6FDCC171F9 /* react-native-keyboard-input-dummy.m */; }; + 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA0BEB0FED817F41CA1741A42E176FC /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = CC78F64D3E00349B2ED22DBCBDEA320B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EB774F8AC2C0CA3AE69CF2AC4A0159 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F67D72452129D5639844135A9C40BAD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E0D9FED283BAC85D389D557D525869D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68DAA8DDC78D988F0A71A01A1BD4B733 /* EXReactNativeUserNotificationCenterProxy.m */; }; - 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B73909EDBA5D6EB8720F3B8429919C /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A635FB4D4337285928E1B8E0256C596 /* EXReactNativeUserNotificationCenterProxy.m */; }; + 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0103F3DA1BF440C6C9AB5CE797E13A /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FE94733E89900C932AD73103E1ACFE1 /* GDTClock.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D016794F3744BC5E7046F6A587CAEA /* GDTClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 736D43C55C3596EBAC95DAB6D9A5B191 /* RNCWebView.m */; }; - 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A102FCDC3902B0B2F58E9639E0CB1031 /* UMUtilities.m */; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 255D5547744EF81D43E695DF8C791FD4 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD392D0C4BC960917D4C2C53314C3B5 /* RNCWebView.m */; }; + 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F973FD63C7F1B72112F3D18E7D73ABB /* UMUtilities.m */; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5DB6C4A6AB67A7659D6F8FE926080C /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F914408E2683348E30A3AD1A6A6A892 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9096C4C0065EF00C6C31D3B59172092C /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ABDE0D11DD6F3416807CF8C7D0C38947 /* GoogleDataTransportCCTSupport-dummy.m */; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 8222E6E89671DE9B232E57F3199A0EBA /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AD8A471224C419BD2F62DE884E74E /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90B80FD2A60F9E1D7768435E7B3FCEE4 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA779673BE0BE8DEBBDDDBEDB1F3213 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3C5D8902F9EF6C1905757B8E9DF4B0 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F69D7C608FDD38834B665020063BB79 /* RNReanimated-dummy.m */; }; - 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBBAD328E62FEDDE290D0F9081BF16A0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCA47BDDC923B7EFAA1A48587713D07 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E86413D607A01813B804BA192024B029 /* RNReanimated-dummy.m */; }; + 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EB359D7BD524A919EA6F9A4D4B01214 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 90F1C6C9EDDF2AE141098A4A5712A3C5 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FAC273F187940AD897DCC05A9CA265E /* UIImageView+HighlightedWebCache.m */; }; - 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ED5C1A02BFFD5E207406E1C79A084507 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA886917FBAD8DFD01E5AC78D026B6F /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9174043F2C5C946E391930C776A8F658 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D94D37216179280E900EA4C5B1230EA /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9178482012182F62E4C5BA3F50334C91 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 589518191FC005CA3EF3ED96614FF89B /* SDImageCoderHelper.m */; }; 91C83C1367409A169B8F743002D07A4F /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 971F83F90D4663B1850A2F8671A2D218 /* GULMutableDictionary.m */; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C272D01BD95A7F1439AFAC27F3C7F3E8 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = EEEE43297B60608C3C21606A46459B14 /* ARTSolidColor.m */; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6AF956858E605701EF28EA10F45FD59 /* REATransitionManager.m */; }; - 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AAD1E3BE0FAE3A9DC564AD26127A893 /* BSG_KSSignalInfo.c */; }; - 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E1758E76354C650C68C1A3A2BF254CC4 /* RCTInterpolationAnimatedNode.m */; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C465C75546851E198789BEF2A625763D /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = D1580BEFDD0199AB13AACB16E6426479 /* ARTSolidColor.m */; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A00827AE4E0526B2442C2B9ADA956E4F /* REATransitionManager.m */; }; + 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 635BA6554FFB1530CDB77E46994C2F22 /* BSG_KSSignalInfo.c */; }; + 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF17EF16E047477EDFCBEC50DDE29751 /* RCTInterpolationAnimatedNode.m */; }; 92855A1748072DD76EA73BD74B968795 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 232EB188EB76A659B22869443AD45191 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 650E82306DF8D0E3742EA9D069FA4D83 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 312143C6EFD4E709F7973078FEA4C744 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DFF6B78A47997D1A09075739A65CD297 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 037DA8E6EE514A34E3C6C04BCE858F09 /* RCTVirtualTextShadowView.m */; }; + 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB0B88F93C26B3205C8713D1EF273BA1 /* RCTVirtualTextShadowView.m */; }; 92FD213052E29CA5F30B41AAB84AB5E9 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4A4185C335D92544251BEE9BE5E8D3 /* FIRComponentType.m */; }; - 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 737AC3F710407600C85F60444DB9E625 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = F87018D1B97909D7DAA4B43070C022DA /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = E45604C26007BD9B5497EA865674F0EE /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F5900B6BE72B694A3F23E322A4E9F6C /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = A7CB22BE8E129C13B32901AF3E28A3A8 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8210FBF8DE752BB131C2C332056DDCFD /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9D419F5B1AC34A0A03C47A465D62BFCD /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 6FA5383284FA4E5D77AFB961CC32FEC0 /* BSG_KSMach_x86_64.c */; }; - 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = D0D2EE2B22CACFB5A687015D3082F7A6 /* BSG_KSCrashSentry_User.c */; }; + 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE2390FAF9D6C096BDAAC31A97CC854 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3CFF569E761895AD1DE27867B321E /* BSG_KSMach_x86_64.c */; }; + 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 06FF23DBC6702815A7D141F51674FF6D /* BSG_KSCrashSentry_User.c */; }; 942A1E450047CD3D7422D1A33226A320 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CAC7EA2FF06F7DE244FC10132CC8048 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD888B3FE6914181AC2421D76096D5D /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ACCCAADB2EABD98EEBF0E4F0FEBB25 /* REAJSCallNode.m */; }; + 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5683BD59AEAF94F824EB1B702529737C /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BBF634BD7911C5A0A4EF0B465BCF31 /* REAJSCallNode.m */; }; 947E227575A4E6B2587914526363901B /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AE0909BB6303673387EBBDB546C90F /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94B8EE53CDDAC46B5241443DD2B610ED /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7F382871D29FF65C4199214BF949CFE3 /* ja.lproj */; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CEAE5744147AFDBE5B69D1B05C0320 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F21DA5637D8FEC1E1EC72FD36D79B52 /* react-native-webview-dummy.m */; }; 94C13AEE39D1D80619F968CCE5C35616 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = CCBD7E2C2A91693A1460449D868EB806 /* GULUserDefaults.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 369719E5347402B6E47F81536F6481BC /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E99D01BB1DB856E4EB342FA7725B5F29 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E5ACC4F6FB79C540190270E906A01A /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DFE80CD1D3847735799215D0038E5B4 /* RCTImageShadowView.m */; }; + 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D67CCFDBD0A8587AF20CBFC44540F94 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DADD905867794EB8BCD2EBEA004EBBC /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C871C2A094B2FECE3482ED6E1DBCD71 /* RCTImageShadowView.m */; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B4E059F841E628E792FFFD9F6745E1 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 66896C98AE9CAB343CADA108564AB5EA /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2CDE8ACE04094A27C343B06B9D7E9D1 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D21287CC8CD2E34D27C3CC3F8955CE /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CBFF3ABD6A492A41EF206A0CBE9ACF34 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 643F413EB870ED5A3D3141A7E83DB9ED /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C9E55BF533A45C735F71912882815E /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE42F20F321B794FED191D71191AF968 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 18CFA87777A70CE8A32B608C88B50AB5 /* RNFetchBlobProgress.m */; }; - 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C66626C896826D1FE5176ED98C59AED /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A87AAA1C5BD52E2FBC34873666C749 /* RNGestureHandler-dummy.m */; }; + 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 030EC38CDEFF41D68FDBC8DAE691C72A /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DA098A930AE5D4F5DEE014046FEEC53 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3278C46B12DB44947D0BE2C1C4D94AAB /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A7A9BF12845DD2BB38B8AC584F82D0 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4814F7E3589300FD164E00A565756AD6 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD61F0884C908C799762789F059ED95 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 477C84944CA93ECD923D49B6D5DE0612 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 568DCBD7D7766031CA4173F36BA5D2E8 /* RNFetchBlobProgress.m */; }; + 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 9035E72802D369C7C7D38B73340C5664 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7500D05C606E958DBFF988E5E4149A7 /* RNGestureHandler-dummy.m */; }; 960BB6A747C122E41D0F93EEA6E0624C /* GDTTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 981C6CE2A9A0B7AA7676884BD6C0B33C /* GDTTransport.m */; }; - 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E6BE4C0A0F3C9A8D73C1385FCA7F3E /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B38FD508EEC7159D2988089AA995E20F /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 962F246F4D86BCE82B9E3A33080D44F0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E988B0A5D35272892F926CDFB44E06 /* UIView+WebCache.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 59A64223174653A390E391870F8CFCBC /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40017C53E9A62863BF8AE82C1BA2100E /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A8094FB9C0DB2FA0F33E45E5CBA6CAF /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D6EA4E2552CBA661742B411927914A /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F63586A5781B5C56523DB7E7968554 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6D5819019D8BC3EFD511785A370535 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = FA54854F9A39F5EF8C5B67A0656D4761 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F176D8D1036AD52B6FEC84FAC49139A3 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E71363BC0A5016D99246A78029C7F3B /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = C309EEE0027919F2FDD4A86918A9116D /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B120458315902FA759D8D59CB2C5B22 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97A46257E974C4FCF70DD15A759720F5 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD3E13C1519D040A1C496CA3A2272A0 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97C623DF2BD61587360EC3B26A8F5CE8 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6100DCE535D34DF87F374BD69DDEEBF8 /* FIRAppAssociationRegistration.m */; }; - 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFAE2B35892C4CA9F0F5837E647EAA2 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F3E35EB18A335E7F683CEF8E1E51DA5 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = AC6BFAA0C5E0C3BB56F6513C605D6E1E /* Color+Interpolation.m */; }; - 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8D63720415AAF8B81D0D5AAC31F353 /* RCTVideo.m */; }; + 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7F636FEBEA23A9F4137BB9AC4BDB57 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3813B67C685166172881570BC70A8844 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = A086E13D995DB17D30B6558FB987A265 /* Color+Interpolation.m */; }; + 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4514539C2C0C362A6F990F26F90E28E1 /* RCTVideo.m */; }; 987941CF7049804341214F98475B275B /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = BA43E7F5AF362BC38B9C816146ADF628 /* UIColor+HexString.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B27787F529AC269BC648A8B1420B0AE /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D418974B20DEA3AA2A59EC79E0ECB7 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A2DBABC7465D5F548708424FEC0D92 /* GDTTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7078F477550CDD77D6468339C77FD469 /* GDTTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = B105E501018C902832734A4902AC44DD /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C3CCCF5C71EAE01CC0E71815720E66 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98D876A1A244F466F67E906E6E55EF82 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 18261C8AF3E287C1D6F0EB3441F95FC9 /* SDAsyncBlockOperation.m */; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A119910390FC49412D70E9A3D650784 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC1D9B062B593261912037D96B1D02A8 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 227495E0087990E3409835CF75C620BD /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 96EC460E39F7C0854D7D9E1A79BEEB60 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 535B2BF88CC1DEBFD8DD565F4DD44AC6 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4B754971C4EB9A9F7641A427EA50B4 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 412EC6AD6957E1AB07590859753840BC /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C880A8B743FD86CE7D4EF41780C187F /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83AD1EF56E73C6124E4ECED2017D10 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBADEE8B615E8B44EAD4B6CE5584DB1 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB76FFA7572482BEDE2A0B8D85910228 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E205DD1A8A9821D013B25E0B64BD027 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F993C3028B25F0742262F16CDB4341 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C03628797BA32EB5BD2256EFB7E4844 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A3099BF1A3303D97FF4B77EE8FA453A /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7361A14E6913E84550C1DC3F58C2D8DB /* firebasecore.nanopb.c */; }; - 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D0BA88D0F5A567DD68ED5A77BA6E3D4 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9773868810945B365745B26EA5B256F1 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 137C6528127CE1430742BB927C88B16A /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = D65B743192481AEB0E97FF3AB7B38DE6 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 764CA911BD9503292FE83B55EB9BB8FF /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 264EBA628B0C20D7E378DED6DC0270A9 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B6AA6BED7B91DB529B424AF84064C6B /* RNCCameraRollManager.m */; }; - 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 488CC7474782AF422A553CDCC720C142 /* EXAV.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DB7B6C14365385426771BAD32DDDBBA /* RNCCameraRollManager.m */; }; + 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CCA785FA99DC148F611B5C6C3AB31C7 /* EXAV.m */; }; 9B328C7EB8E9F91C9E4940B976F51EDC /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CB6318C9B6B836940C40559EB4E7B1 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9E109EFEE82B18E047DD6F88138F12 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC758F6F1630844C1EF6C2D2EC34843 /* ARTSurfaceViewManager.m */; }; + 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 199B7FA4EFDE4249BFC480799FEF2CA4 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E31F1983D3D558FEAA109894B20BA5A /* ARTSurfaceViewManager.m */; }; 9B7093349498C49CA2524507AB88A888 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C994C0067A6A1E796C234B98F686CC /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C312DCD77A3F40600860CD64F411C56 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A6980E874057DC910E795C21713E96 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9B8FF798D120C0131DAFE922F8FA3326 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = F18BC7129E99CEC847457ABA17B4733D /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FBF553BD6F4ACA79CD6AAFD9FDF69D6D /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5520622C1ADCE8D1361729383303E25E /* RCTTransformAnimatedNode.m */; }; - 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E47B749B2D71B796E69BA4AA56D6F9 /* RCTSinglelineTextInputViewManager.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C5388E824750884E4EB7E24A809B4D /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B35F9586E3BACE323633DC20F8EE17F6 /* RCTTransformAnimatedNode.m */; }; + 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E50C73349AC0625D2B22337DAFB4196 /* RCTSinglelineTextInputViewManager.m */; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB262E6172FDB370844D045066A5FA6 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CC8AF94995AE4B94A792BD1BEA1358D /* GDTUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = BA95391EF5C3B7AF7BDD4DDFE117BFDF /* GDTUploadCoordinator.m */; }; 9CE103A0E1FF2B3FAABC3B449BD8D735 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CF4A01EE627F61E41AA1DD83D6ED332 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC13BBD2B6DDDED8D1B8741399EAD54 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BF300D9CD2D0C5E7616748D5304F44A /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E8B7FF0B07871D9A1C8D316BB50B6AE /* RNRotationHandler.m */; }; - 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F28F0BE74BAE1DF1601F547002E5EF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A512481F655233F8246BBCB59AF590F5 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A6AA08426C784ACDFEEF3D7B4B46AEE /* RCTInputAccessoryViewContent.m */; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE39ADE26B9FF8F24E22330086E7C5C /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB91B464A9EA80B3D2C485EE625F1FF /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E30D6BE7C5A8BD3F00011FFD64F58C /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9200C65635874B7E2D59DA1BC43B433A /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3746E701470AD603C00063628AD6BD39 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FC86158A8E3AE82E8EA0A55C1A9B64F7 /* RNRotationHandler.m */; }; + 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = B366790D7E16F6CFFAF462791FF116AF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A03D1A05B65B61B693BF222E5CAB339 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = E1582A14837CD50EEAC15B8F48CF8B99 /* RCTInputAccessoryViewContent.m */; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = CC23B0329A9F76B97CD45A0C34B223DF /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4595505ACB57B745C450588D2EBEE357 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F8EF5E7EB91D7D592579424BA23CC9 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E26D5D25561683EEEE343BA59A8D932 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 967CFE52F3BC079ACD521D75990E2CF4 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E5646F1A4718C6288E62CAE555592C /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C23355318130EE0D94B9F031ECA23 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BBDED4A9EE538D325FC8C2E9A7BE9A7 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D457C80055C29A2EEBCF847D13208 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E66453D10A11F0164593AD596E0E8E0 /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E57B49B68FDEC37DDD4EA4E510172A /* FIRInstanceIDCheckinStore.m */; }; - 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E776405B18BFC3A0921A01FCEF5D97 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 74660FF5F13E46FC9DF4685232312B5C /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 297DE5906FC3CE4D8A2A5293D38E1532 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A0047149EDD3362290D3B27E1D65AE7 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EB60143301349BE59FEEFAB98C50415 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DED07EB4AAC59C266370F90AE190D7D /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A4C7CFD1888902EF175DFBF0A84D81 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 467E54AA992F0A23756B154B35B0E0F8 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = D58BB2603E4CF6DE61074C51E8C43C91 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AA5F5D4F338AAFF3B7D3901B95C5ED /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 9307AD81DBBF310B8BE3E4035DD7BA80 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAF44CCCDE16D4247AF317E9245C25D /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D2606EA34C5F31C12B0C3E8BAC67D0B /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A404E425EF178A90BA382DF69B19D5 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0327CA14611D2BD60ABA934BB7B47C /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2282E5754D9ACC42C39AEF6821CE3571 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9FBA75FFEB994C4A17990D31A8F14FBC /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 168D8C9A5B4B6F4BDA3B81378B113350 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F754FFA9D3E65A692D42755E4D2594F /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B605CCAAE1AC3560DD864995FFE5AF /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD76BCC981D42AB45C3F80A61CCB792 /* react-native-background-timer-dummy.m */; }; - A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 27AF34E856786072C0490DA7EAFEE0E7 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE870E907CDFCF4871897A3779BDB62 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 72896FA81E04D7B430928F71991B73B5 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 81C5B51E7014177A15BFF9E972CC951A /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54C24149A3A1B3D3197BF7F331408AEE /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9FBA75FFEB994C4A17990D31A8F14FBC /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE8C79DA443432EA357DFEEB6C05B4E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 241A9FEBAEC2AD84DB50FD1D77941E7B /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDE6F8AF8D623A387BD8F1DEA0C2DFB /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D78D5C5E5A979D2E922CF3F4CE4B551B /* react-native-background-timer-dummy.m */; }; + A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 61AFC53D38AE61A9FBB42B58F86B0A7C /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB9EF3B0D94BB66C0A7D8CDA41D8E19 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 22AEECF0E7FAF915135D3CD08ACAE8A2 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8F16770B61D203BA7586DD93BF5AE7 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 082568B8F74F0C1E8F6AD4667EFE3326 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2787A002958CFED930565A4A9B63AA62 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23600A44329F9568F208F52F10DC0EB2 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A141899125367EFBDFABC1D40258574C /* GDTTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDDF46ECBC7383ADD3F63521BA9EDAB /* GDTTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1AF2DBE1AA6CF8976C7C0407363E187 /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E0335CE7297AD0A020364657C76193B4 /* FIRInstanceIDKeyPairStore.m */; }; - A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C988A7F954367174D7AEF4D4F36F296F /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D37A2042179ACF144088B152D8CCEC9D /* RCTConvert+FFFastImage.m */; }; - A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 16492D71EE665ADFAA66E1A15E7116C7 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BD90B5F0CCF49E1711CAE74B2D14AF /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E218755DD6D44C7810C4EB9D8151F14 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A21C97BF219CCE6523969073E46B773 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 874F6931152DE68462910E67CF869C91 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 45051CFF111C12067E5274086D1AD8C4 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D32E195FDA5CC0224ACC288F463B73 /* RCTConvert+FFFastImage.m */; }; + A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6F52EA4F16924172A07F5D50747553 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 900B7C7EDA009C3BBD15C6E61D862277 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BB986419F0F27DD2299861535F0233 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC05BB567B45A8F71209832313EB119 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 945FC3606AD98059EF1200700EC60D25 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A8A5EC10C45A2A2B013DF0FDB09FF1F /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C4B9B16BAF8D434AAFBE951D305CFA /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 49530A68CBFCAFB1CEFCDAA9F42B50D8 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A351627E81A36765AB4C00CFCECF3F17 /* GDTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8562A096DC667CF7F9AFA332F7B918 /* GDTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC7AA082B486DD6FDB546E455B8A59A /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FC33777B596CE2E3B8C419C6C37B5B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; A381D018508DD7639E2FE4C1A93036BC /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA6B1F3F38274DCBDDCF2564288EBCCE /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0A0022D5A37510935F30986F180472 /* RCTSpringAnimation.m */; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 774E139D73822D50DA1B206F134BF63B /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE870E907CDFCF4871897A3779BDB62 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AF839FCA4112FDEBE1C800CE2B88ED24 /* RCTSpringAnimation.m */; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E07EE358222A72786267B401D65856 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB9EF3B0D94BB66C0A7D8CDA41D8E19 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3CEEA552FEECF9935C60A49F2245451 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A214B8E13EF8E38F46AEEBD096639C67 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B43E7DA09925228BA708459EEA8E370 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB83DC17FFE31EB66C8FCB91483AFF2 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED4271184378A662C5899FDD8424B61 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 311E903AB266F88A48EFB9B4AC19AA7F /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C56EA5C4B31DA75C46B4D4973D73BB4A /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 759DC169D8E4D84047688465CF775CB5 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A4724DC39B48B402772E46F93E1B8E3F /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E253F25E6F03406A253B8F826FBBA6 /* RNImageCropPicker-dummy.m */; }; - A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 41556BEFDA4EDD60FA9C866BB39D762A /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4724DC39B48B402772E46F93E1B8E3F /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D05310B7FDA459B22F5746EBD8B9F4 /* RNImageCropPicker-dummy.m */; }; + A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = ED454F9E93C36A82D19796302057A7E7 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A48A78367616FA23CDE0EE8BFD8C2870 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D55BD71D9F37C0C70DBB7D0D84A1FC04 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFC92C8A9F553346459013CAFD85519 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E571ABF64A41CE4CBBE4AAE6202D42F5 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E60AAF61B5DA56B41F263EE9D35A4FE3 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FF09ADEA9F7340DB1BB906D7D6C2BA9E /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D3A2B8351A5CC262A5B77FF78ACB21 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C121310544F2A6D7A670B54988D90D /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 1741A8CA80C4156C048BB246552776BE /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A90834212C898DDA87F365CE3ECF33CE /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5654BE3CF2E21B0265F0F30371CD8AFA /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D1D1E6D24035135D70D5B0FF632CF22 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE98AE4383C426AEE9E1E31E0EF5F37B /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A57DB7FFC1AA6AFF3337FCE567C2DFFC /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E89431071A7491F4E4076F43F0D9B5D7 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A177374B29F7DAC869BCF41E1DA5CBD /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC5DC4DDAE29F872C71BCE57EC07589 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6572D7BCB0C0D9916F510DF77972EE7D /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 40178D2B0A8A63A48E68DBEFF053B4B6 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BC976D41F21AAEF157512E7FDA7E804D /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 975FA0E9E7BCC09C378476C99966B7B6 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 82ECFEAD2FB0364BAC21E54B58A3A9A8 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A65AB6AE536FAB89F8BD54D22A3270B9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 98887068BA56367FD1372084B2F3B93D /* UIImage+Metadata.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = BDE3B6E078332CFDF55D56AFE9E1D277 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C786E86B50E39341F733E7082DFB83 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD3A23C2C73AF02C7B123F5BF72FD76 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A70667C04F365A3A52BC558289A23F5 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A817D669CAD6CC063C6C508C72A5D55C /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26A258F41EF97F643AA8D63B40A4B767 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A820309FE601A2C8F95EEEAD890158B6 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3771A8388208707E9CA9FD7D62B2D46 /* SDWeakProxy.m */; }; - A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2D3ADBBA671BB5300DC2F47A7AF9B4F /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BBE193FDEB3045E7C2C8041FAAB6BCE /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B36D5D73A1DC243EC79CF1A07DDC91 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CF8C5BA9EE37BE6EA08F0BC5944361 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F120B6FEAD23DCD094D28B350A36F8 /* UMLogManager.m */; }; - A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79603E8BD45199E5B972AA82262057C2 /* RCTBaseTextInputShadowView.m */; }; + A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6352469D352EB3CDFDDF55A3201B6CF7 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A48BC0792F01838B2CD545480DFF90D /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A60ADE3BF08A5523805361E2D21254C /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 64256F252274D3A8699007081DF39488 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A0E4A7D921BAAE970FFB2AE0DBF2D /* UMLogManager.m */; }; + A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BF06209450F32BBCA280359DC01AD407 /* RCTBaseTextInputShadowView.m */; }; A899878ECEAE82DA6084010973FF7F21 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0620C398F45DC692DFDEA3FB115D98 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0992920E7447EA95B405AC270D74C6 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C9A896A97EFFDC35C95D9832CE6141 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9970C4B095AC2950A423F80839056606 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B90567EAD479807447C9599841BCD15 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8D70235F433DF4ECC825AFE0E7D5DD7 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A31E924DD38BACC61AAD1BF23479095F /* SDDiskCache.m */; }; - A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C9E61EDC0117816DC79B10E699FE24 /* React-RCTImage-dummy.m */; }; - A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = F75073C7525C65A17556396A1DF8B197 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AC4269391716B6940C888AA4DD5451 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB32205596E1C54CAD1799582A518B8 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 37096E9C79DABA64683E034C9F8E56B6 /* RCTProfileTrampoline-arm64.S */; }; + A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F30F7DDD011B6AB4F208D4402C6F7C09 /* React-RCTImage-dummy.m */; }; + A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA25FAFFD8601D819EDA22C11846BAD /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 74335971DC911411BF969612FC477D72 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 745A64730A3479DCBD1E56C51BE7F6E7 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 1C854232F42E0E0381F21A2CDDF9FDB3 /* RCTProfileTrampoline-arm64.S */; }; A99D016A3588F636AF86A6D2FB1EC3CD /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A1606592495CBD5536BB50C34A9ADE07 /* GULAppEnvironmentUtil.m */; }; - A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9882FA4CD8A6F3A5DBFD4F20B8765553 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EAD38E56CBCD12D7D253B809C78322E /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA7FCA9F298C4986D79923FBC1807573 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3CE4C3A71A509F67940BA9741ECD40 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 24AF778FA97EAF72E666CEB2A88CF0D7 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E74D19C9120F09C0EBFF1FD1ABEBA28 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3403650F0D63AA3E71AE9F8D5D73A0AD /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F3BC7AFDBB9E36B2866BEDE84B27639 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = C48515171AD4BF544311B0764085530F /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAA2E740FAE2A61A309C985C858588D9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E35F84003A303C89B2EF6D71A90F37 /* SDWebImageDownloaderRequestModifier.m */; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFE3F59A8D00D12B0D1D17C592A8ACB /* RNFetchBlobNetwork.m */; }; - AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4E31B2811EBB9D3F7FA88612E04E7E0 /* RCTTextView.m */; }; - AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587363767E6DDFE5B6EF79C5B99909B /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 793C439B8C3BA2C4EA8F0D803309BCF1 /* RNFetchBlobNetwork.m */; }; + AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1C8AEFF05FA25403176458FDF83847 /* RCTTextView.m */; }; + AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A94FC8265B2A05BF385C7740DDDA27E3 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AC7BEFEA1D9F9F4BD894A3BDEB754050 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DD5A4194530FDB347C29F71AA4FF3226 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76572092726857D1AE6D0A21BE54EC1C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A12E5FA43415EB87EF2E4A2B8EB6D2 /* RCTImageCache.m */; }; + AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6D119C241935EEAA66F92C1D65BDBE /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5DE73ECA9102A21C8964540F74B4B2 /* RCTImageCache.m */; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F8EFB6551B10AE3A44E03B9462574B8 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A5E1FD618F9040A05B2D0E333A9011B1 /* RNFirebaseDatabaseReference.m */; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 759104B0050089B19CC3C65417077CE1 /* RNFirebaseDatabaseReference.m */; }; AB6DA83EB836653E7E835FAE9744984A /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 55CAFCC3A7A8AAABD71308B90CD46554 /* UIView+WebCacheOperation.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C533A8E0968A0CAE5C292E79FAAFE8 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2484D5B2BC865802F527875319FFA4 /* BugsnagSession.m */; }; - ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5853282F8FFB3FAC55D2507B207565D9 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 732709D75AB31D0A7F0FA6B1A2891C02 /* RCTFrameAnimation.m */; }; - ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB1E15AD8D78EF24ACCC95FB9A47FD9 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB76E91FBBFA9A87AE303697B4A74D8 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = A189A35247AFD569CA00561337F0E80F /* BugsnagSession.m */; }; + ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2857FD2ED29908954D251250C772C0F3 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = FED985EFD2C3BD5B54AC82F3008B095B /* RCTFrameAnimation.m */; }; + ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B96ABA148C8C2709FC87516DC45228F /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AAF36698B12EC9A5F1499B0E23D952 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC1391E438DA90477947F994A68517C5 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D89C442DB8259151B8917B154A8E52B /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF0EDAC0274F23072A0184687BD5B65 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10ABDC36FF69BA3A8700170692F89B6C /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9FF635AD0D7EB6C33F29C9BC8CCAD115 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AC7E6E3BD2A7CD3A72D5C70405E31DB7 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1593F8F3AD3E11B7F6733CCCE3202DB2 /* FIRInstanceIDCheckinService.m */; }; - AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = BA5417214E9F5665E1E7F684407D13B3 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE0C766FDC8F386168B1F1043432A35 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ACA88DFA5AB4A617551CF5306214183B /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F7F4505B4AEFD5242486F072B4A45A /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2741F997495DA184952AF89A1EFB1DCC /* REANode.m */; }; - AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EED80239CB71BDC2490C075F9655E7 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89364B35EBA566E7244361212DA6140F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88201CBECDD0934923BFE668BC6A11D7 /* REANode.m */; }; + AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C87F803809CB9166D92FEB4075DE6DD /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC7A405C6401DDB6C9AF3DB85F834C14 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADC8D3D65F0543D6DEB99FDE0CBAF90B /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F63A055CD72438EAB3EF61B0C5D6FA2 /* SDImageCacheConfig.m */; }; - ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 256B4C6502ADBF7F084F9E1423832249 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FD805FFB38D985D452CB2E5238C3047B /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADFB5CBF150ABD49A5569C139D2F926E /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = E37F3226B79FDEE5D1ED287B68F1FD7F /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 91DE53C4047EF5CBF85E16D3333E140B /* RNNotificationEventHandler.m */; }; - AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F8861298426662518AF8C56468A819 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB466FCCBCE2213939C0C7FB6BEFCE4 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = DC20C5F5CAC17952DA0E8720A8F4A8AE /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D2AEE1A567DCB2CAAF5F24EAE0B7BA /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78026C44CB4771A074295CBD48676832 /* RCTBaseTextShadowView.m */; }; + AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C9EFC60CD18319463354968F16F86223 /* RNNotificationEventHandler.m */; }; + AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A964CDCD9BBFE2A22B9B062F46E3611 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F492DD3B01F0E0A1A1114D476E59201 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = A2413F9B1112C34BBC33D3D94999DC39 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E1C8402C3E642F046EB336B4AFB5B86 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 381856C980253139B3428125818491A1 /* RCTBaseTextShadowView.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C09D1909D155940D521C9CA8F52D15A /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C9A6DC94D054D443301AED6FDBF926 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = E5559923AA1F789D49B777E430398950 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF4E05A1A05A4A91C9B5C88FF89DE11 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C5A87B30661873B69238B2AE7889984 /* SDImageLoadersManager.m */; }; AEFF8C6DA7000185BFAB86FDFB63E0F9 /* GDTRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A233A0BA41BDE3C222CEB7D7954CCD39 /* GDTRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF077EFEC522E29FF8D788B663D300D7 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C97DBF0565965775171491B968A3386C /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0716E3962E07D8D9583DBBCE3AA19481 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9087A343EAD796B5EF7708A9AE478E27 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF783557C42133FF18F4E366E28EF300 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C60EB1364C172DCC4EDF601E4792F066 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; AF79242E97FCF340E1D5266D69041821 /* GDTReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 59023200C0F20F3F6A0E5921DE8B6716 /* GDTReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F2DFFBD015209A78F79B7C330814E4 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A50B8D7D7C326CDD59688588C09C4385 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = C3CCC815E2C8A3A492444CBAC37DED28 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC239C169CACED821B555E60271A9DD /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05451E914B53EF1655AC2ED22B068CF0 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1E9074E8FE2966BF6BB750060C419 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AFBB31CEBD7272995FBD79E1E4B97615 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B80980A4B1FD8F682760137A93F8B548 /* UIImage+MultiFormat.m */; }; B03C42B044033F100A1E04809ED61FD2 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D3D104D06FEDB10294E0B20657A73DB /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CA03E7E0BA0C0AA46258CFC87D6916C0 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C10297C7F04DE00ACECD1B688AC72EB /* REANodesManager.m */; }; - B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E599DF2E1EB50E35816E14B3D9E5272A /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BEF5B778B120C589B54B4C37B8C399 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E24E5D95788875AA9F98BC8F4A92C8 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE00DA4FA4953A7C98A06C183B9FE409 /* REANodesManager.m */; }; + B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C861D69529CAD2F70FF9D59FDD2909 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E01ECF3D95716CC76C2D8D8E6D7B3DB /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0D9EA67A437C2D4F14606D128C1A666 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = E88A1BA322F30E374FC36C05BB2758E2 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF97351CD2CDD8612AB9B48C0BC5E5A /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A287A3A02E0C83C770F7658B4984A1F5 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC23577415A061586DE6BFBE1115BFE0 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A81B4DF35AA3E7DC245F92694E0C9488 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19E284EEDADC2AAEB838E15A544C93A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49858E47CF76E28E2821D59D190AFE8F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; B19F2B637F6B23E5352C351E7F9D5AEC /* GDTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = DB72F4C7ACB2F1CE117913832159A5BC /* GDTAssert.m */; }; - B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = F4D92D870DE607D7B8C8194D1AB7A57F /* BSG_KSObjC.c */; }; - B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDD9348083B07153E874FCE0A08BD65 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DDFE1C5DE15E21C2382D0C647A24A94C /* RNFetchBlobRequest.m */; }; - B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE9D9CA74146F1A9618FB3ACF57C64B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 15BAB140985DFC9F32ED8967ED36A825 /* BSG_KSObjC.c */; }; + B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 43C78A7B765EEBC4F79BFCC653786878 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE50FFC676E29FD9BFB1EA54887CE9B /* RNFetchBlobRequest.m */; }; + B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F988BB9CB530CBDB9A1791E9293B40F5 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B263A4FE744BB18A7C7B543C66725FA1 /* GDTReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B4968DB22147854D234F5D171DBBA244 /* GDTReachability.m */; }; B2698816BE03D78D782DF5520083AA26 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17EDB1822E6F8061173003D435EE1975 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7DB1741BE6F459D6568806024C002D /* REAConcatNode.m */; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D375A942054AF499969DE6832D5620 /* REAConcatNode.m */; }; B28B3C3312242F7DFD9A49CC8293CD6E /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18773384DB62FB17C00795EBAF1F71D7 /* QBVideoIconView.m */; }; - B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A3A7F451374FFD7CAD3F7A9D27A4E07E /* RCTAnimatedImage.m */; }; + B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = DF27A0F5D9C24DC0FF20189052D4DEB7 /* RCTAnimatedImage.m */; }; B2FA0A7642EEA39E75D3D03EF2E15B4C /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D16FC95975F74E79569D058C5442ED48 /* FIRConfiguration.m */; }; B350DA3DF951BFDFC56331C90C01E200 /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 742E5440B777A8B7B7A9FC704D40329C /* FIRInstanceIDConstants.m */; }; - B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EBC3E2D6ECBBDE8F45F99120D7F43AA /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 712E7E9D6D5EC20B9405BA2FCEA2CB60 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BE468F015FF53F8769ED896BB558FD7B /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E2025E969F4A355BB168971258C3B173 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 667F3BFB62F122519FB99A3D0251AFCC /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 969E8C3F5B691A1E16B2076AB59ECCEE /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B1FF2AC40395AD4A4C1BD974D62A21CE /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9CEE916A7CB9AA263794699B5A2EA1 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; B41B88AE6081A9D0D8032DBD315DE541 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D715E8B4DE1CEBBF6120A95EBAC89838 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23AC3694E47D45C230C083D876D6938D /* React-Core-dummy.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC53219F24A563022B76C606896E715 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = A08A9CBA50474D8B415788D13F8CBA7B /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = E517E6B50DD86058B24162FBFB740286 /* DeviceUID.m */; }; - B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A20DCB385D4F056E25D80D3132C378 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3711D94159E3D7F15972750F9C35469D /* React-Core-dummy.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E48DF270EF504627AEDF6064847E41 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = B7FBAF412502DA3718AB5678B93FB742 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 224C3853AE53D9D61A871DD7F8B301E2 /* DeviceUID.m */; }; + B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0410A5C14A0972819B5EC2F90D23E3 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4AAF4E42C54B9F9F4FC2D9F8A46B29F /* GDTDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 348E94250746518A7806840383B1E11D /* GDTDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8BB176E3CA80CD84F96298F308F42F /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE5C8311396FF92EE08B3CE1A731314 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4C3A72600CB8D619C537CCA7E59FFD7 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 089EBBA93BE1805538484C172DF301FA /* UIImageView+WebCache.m */; }; - B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E05BBDE8FD5CF74A6ED70C866D0D20 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 563A54805F9E15AB3E1073061A1A6257 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 60911FF1F8A388840484198157C69D02 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DAF4B3734906BE42CC60B2F924C3F0 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B53803E0BA4AF13B0CAB686D6FE5D0FC /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E99FE2AC919270F659BD0546476213B /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E445C509F373BD6C5EF893C17883771 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73125AB98C6A7276197AE7AFE921B8ED /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F67F1AC6F5CF2DBC46147151813B627 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 40CED93B20D9FFF39C80A720C8A38A57 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5BD49BAFD353D954E0840F64E4A2821 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF8F03CCEC8054A1A6D5F51BE7DECEE /* DoubleConversion-dummy.m */; }; - B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D0B49B14BAAC56A1964D6EFEBAFEE2 /* RNBridgeModule.m */; }; - B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 34102A33C3D29F5DC288E1C743B3A0A4 /* ARTNodeManager.m */; }; - B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7434BF0CD9A334F8BA077BD5E0DC99A7 /* RCTImageView.m */; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 18643D1C0F9D8AB0C1752850CE848C57 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA0FFCA817B9BB029A31235C95FDD47 /* RNBridgeModule.m */; }; + B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB396762A9674F1C5B2410378C25E4BA /* ARTNodeManager.m */; }; + B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70906589313A0FED299955B12363520D /* RCTImageView.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 897A6C14722EEA5FF364F2E0F07C02FE /* RCTConvert+UIBackgroundFetchResult.m */; }; B64FA42E184A0EE28D65B959449C49FA /* GDTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E1E403AD292FAF3D42C2C412ADBA7F /* GDTPlatform.m */; }; B65ABCAEC3B324AFF74CFC314E05D488 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AAB0B583B5185ED50F89BBC10F45D6A /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A73B7D54D1BE6342190E29E0329133 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B73D2D91D5C3DBC787ED2C808AADE575 /* RCTInputAccessoryView.m */; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC7C2B1E113D97290E46F1F96539849 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0D589E14519AC73BEE3A160AADA88D /* RCTInputAccessoryView.m */; }; B70FD1F085F4B1DAF7EA12B132D71569 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D1D312623E33B7A38749C5DFA66DA8 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; B719B6CE8FDBC80C42048ED1A4510024 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = EF594034BCE978C5C293994FCD6EC5C1 /* NSData+ImageContentType.m */; }; - B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 218B0452EA6C74BA96D19E1FFA93A405 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7138F704A6445B722A1765D2C6BC981D /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B72B9DBE5446E5510A628F76A191A0C7 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7564A1F13E29A4E11BFF153723BDDB4C /* SDWebImageDownloaderOperation.m */; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E8E4135161797AD2A3E9F84FB1313299 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 268F7F7EFB3E947F83F5B9F2CF88A0DB /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7047C729FB0A115C5B0ED9EDFE53E4CF /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDC33C800F1575A055B922793143317 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 897F6C2F1375F5301C3829E3A604FFCF /* REATransitionAnimation.m */; }; + B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 18327D94E3FECE2CEC5A97BE593BDDE7 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7BD509DA6643B58855ED3144CF45F0 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 816FB35DC5903426E821F1995F565692 /* REATransitionAnimation.m */; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8ADDD9F754DF1DC3565EC72038C2FE /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 95236F1C1997E77999E28FC481CE2832 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 839512779028DBA6CB110199D87FF7F1 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0BD146BA1D4D5795E01309BA0E2F9F /* EXAV-dummy.m */; }; + B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF72A9ACEA8C2E20997ACC80E819BA40 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F11D64FD1C54C0726523DA779674B67 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC3F08044367E5701821F9AA6CC21B9 /* EXAV-dummy.m */; }; B890C8FA91883956E89ADE3B6B17679E /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 682F6E4792E01F83E62FDAE84681DDD5 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CC69CA9673723CB33BD74FAA3AEFD61 /* RCTBlobCollector.mm */; }; + B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69C0FA574F6E2FC7F6A2131FAC2F557D /* RCTBlobCollector.mm */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA0397B2B08261B1E953EE871D5C37A /* libwebp-dummy.m */; }; - B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DB9B8A955A3D699293827ACB01901FD /* RCTVideoManager.m */; }; - B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A09FD2FDDFF6EDF3720803EDE86CAF /* RCTNativeAnimatedModule.m */; }; - B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0E24054AE40C9CD36A0E9F54F63186 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4106E6108C7F9B186510BB81EAF0AAD4 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 672D35F1B37F73FB06F71BC116EC3C15 /* RCTVideoManager.m */; }; + B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE67390DB33CBF818310CFA548018E5C /* RCTNativeAnimatedModule.m */; }; + B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 92403C0C7B1D4F437F93A60AAA768932 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7FCFB9C0C6048613A3DFE761F463840 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B9C1E38AD3D1F98B5403FB50A6003E43 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FB511F4A05635B55609527D9515A1D25 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E55564B49A16C717F3AE7848EF80CEEF /* RNFirebase-dummy.m */; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D364413691C778F21582D89FD37B82 /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 911D6F23C6FB6C7954F8447BDB357F6D /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = CF703D154827EA4596E3AC3CDA7913F3 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = F040D15C66ED75B1A6BC63E377BA4854 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E26B4778A2E346310E558D4C7BA06CC /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D94E6FCBC75DDF51AEEE3283443DD321 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = C566B6EB9F57FA3C87E707D6D74B94C6 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C29689FB804AE7B71F149CD28F78EA8A /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B07CCC1F57AF035C7F0A5F05DF5F21DF /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF62D8BD8F81C87F7678E2258FF7298B /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = EA69641476EBDFD775EE1A153B4DC45A /* BSG_KSMach.c */; }; - BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CBA58A86EFC487C36D1C9833C5D6E6 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE2E9E05A04E41002D438E2EAE393C3C /* ARTShapeManager.m */; }; - BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 356B1FE083963ABCBE2D82121CA472D6 /* BSG_RFC3339DateTool.m */; }; - BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F8E2AF283C247B7769E2D109654EB1 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 73748A783C6B7DDB36A887E64DDF81ED /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = F4EB053F88B611F207628060A709532F /* BSG_KSMach.c */; }; + BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D8ABA72F0E8855B0F38E6EFF24C531 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F800BD2C4A4F294A3BDAC5EB53F37B43 /* ARTShapeManager.m */; }; + BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E3EBA9E2084BB088AA32EB8F79630F /* BSG_RFC3339DateTool.m */; }; + BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7BC4A3AB982847EE799E6134804887 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = C7821887EC75F1976C084E486D5951CB /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3681C4DB91110F2DC00479AF090B5CD7 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2631E243EF61902279E4E44BA8274AD3 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A2AC7C151D3304C515E8B87C31ABCE /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA5F6B8D2A6F58EA44832A16CF89DC2 /* RCTMultilineTextInputViewManager.m */; }; - BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = C61ACCDC904EE04CB043E9D210F30D6C /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F562F79FEA0DC18F659C702B32DC93D2 /* RCTMultilineTextInputViewManager.m */; }; + BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F9B8D49D7836C792AD1829FBCABE7C7 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC39A14139D09DA09D179898A87CF021 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B8996D5AB0956EA7E5595D218610D734 /* GULLogger.m */; }; BCFEDCF75CD6C632198EA59001E2203C /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF297C2CF43BDAF7ECA04EA33DA8249 /* CGGeometry+RSKImageCropper.m */; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3ED46A156A912B7EFC28D9216E415C /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0050F422BD1C7C80671188634CC725 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 482FDDDF2BCF7E9C2AFA24213D7B99FA /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5BDE0FB49A15E590FDEC3D9D947CDD /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C1ABCC63C6117F6139F5E754A885B208 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD65B77B25285655EFA60B4C9F3F23F9 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BEF4ABF6E8169D3727CEA15BABCE486 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2635AF6ED610E433DD12BC0E114CA3E /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 069E16C7D5116FD35DA825A786AB6CCE /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDAE1642C9CF0B63DF602E868A7970E1 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = D8EC34EC8CC38CF16D8663A7854E1F0D /* FIRInstanceIDUtilities.m */; }; - BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3E21EA3C6753D184118FC7057C78A4 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1954F4F2B6C752A44608FDD6E9942E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE37FB1F5349BFBD966F5B1CBB9B24B0 /* GDTUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD00758F5E48D4A3B8218710D7D5C07 /* GDTUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D21287CC8CD2E34D27C3CC3F8955CE /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3278C46B12DB44947D0BE2C1C4D94AAB /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = BDA5D33F399DCAB1FD228ECD932912C1 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BE4F13C44F376AE339DD73231DCFBACA /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF4F22DC8A83366111A7A756E4A9AA2 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE5DE257A36811BEFB4F2626DFDBD03C /* GDTConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BD684EF1D3EA7EF62481985911AFC7 /* GDTConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B625BEC14900C73F42A045E4443F97F /* RCTModuloAnimatedNode.m */; }; - BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 562BDAB9E04AD4A9972D18E880FD0EC3 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B4DF9F94C2A65E6E1204DB8D24D00840 /* RCTModuloAnimatedNode.m */; }; + BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED6A2FE645B4C2CE9C0CAA112C005E /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEAACB445A8428E8D8A345DFAAF5C23F /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = ADBD04C24033E70A57BE371F9E95677E /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C0315431FD2FF9B79F2094D7B169CEBB /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E1D4C0A7F385C24A1B699EEB7C119A /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BEB014B667D2D37691883E689C5B22F5 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46610F5B03BF1D264385A4E958941598 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B136D058D3F594D25B893879B7F0C2E /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEE4B0E524B825FBF453B242122800F6 /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BDFD803D35E23046615364556059747 /* FIRInstanceIDCombinedHandler.m */; }; - BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FC30379579DDE50B5E4A40FF067AC181 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7562E049ADD629B8AE223457C9B2B425 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC3B68DAE9A3E01C769D85966493AFE /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8644D8314E793C80A1064FB00B2CA5 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 7625F33A5FD9A5D4D791A97A180C4F0D /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 37677EE64429D5E6813BBD62C03DC730 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EDA0CB2B36DDEC0132A8257FD0A4D6 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = A215F2AED7CE7F6AB106DEBEAC8BC6A6 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A885C83B69E89EE743E1A0A7D9267E /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC3DBBA6E2E7BA421C6B0182A7246C3 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF6C73488638D5E9B195DC5890E36369 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A429E17C3C53FA1DE5F1B6805ACFF5 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01165657A3FAD6941F11451F5E5226E1 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DD843FEED6C2152F9DD2C2890FCBC526 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; C003FCC72FC7B55D846E71062A6AF1CB /* GDTStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFBF5219A0D3AAA47E060FFC717E668 /* GDTStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C00BC444C909EC94EB7A0B9972BE02DE /* GDTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D3EA066BBED7BCCB24EAF46CC65828 /* GDTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 02FD33521F8002162046ECF724387EAD /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = BD33BB56B13458D0C76D6E7F50DD2247 /* RNFirebaseLinks.m */; }; - C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CD9E734C4FC85F53ADBBDF44B64B49 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = F06D3ADEB9AF413332ECD1AEFE347834 /* RNFirebaseLinks.m */; }; + C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CC7A68857E49954F1F3F103C9D61FB /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0EF38E2CC4F5D1AA2CE7684E58C542D /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6987D722A6047F50A05C5C98BB4D26 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7798DD73DA86B4D47929B732B687D6CD /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = E2A015033875EC5BE7D392791F17A964 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D1EF7E39CDB9ADE3B7F5F0445365A1F /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7024E26CD218E8F1D0CA346F769979C2 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5959AE39C14A8819B5DA39F68FD8CBC2 /* RNPanHandler.m */; }; - C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7798DD73DA86B4D47929B732B687D6CD /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54999C07928BBC15D8D97428F4AFD69F /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C4B9B16BAF8D434AAFBE951D305CFA /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6483A25CD832C95A33A7E589D46901 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9553BA3B1B3CE3276F6A54B62DD54A13 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F85F9B60E9C93E77F44E2CB0645774 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5210BEE1B83C6FAA39C29DD8643A61F6 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1613165AD3D38B77EBDBF0EA8019FCE1 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46458FC5BA171238711C4452D9FFE1BC /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF4F25F2C55008268BC35CA2A9EB7EB /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1216DF5913FC67AAAC23A8888AE9DA /* RNPanHandler.m */; }; + C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5210BEE1B83C6FAA39C29DD8643A61F6 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73898F0A4372AA1F40A34F41671305FF /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 49530A68CBFCAFB1CEFCDAA9F42B50D8 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7A54F3586E2E3E3689005870160DE4 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F108073C5E16583055E667DE547B61C /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6621DB48196F8D256EA0730409A00AB6 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C207569F8719A271C767D198587CFF0F /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5506F95C9DD2C96CB505C5DEC60279DC /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 579B692837FF1A6468078CEA7859DEDC /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B6506265F3367141E31DCF936763ACD /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C22841039EF7FCB0A38C0A4BEF6E233A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 54711596EE065CCA239EFE8201F0E41B /* SDWebImageDefine.m */; }; - C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B58F66926DF66A28AF4701D64EAF9CC /* BSG_KSCrashSentry_CPPException.mm */; }; - C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E35ACD97B399AA544D30AC6DF3FACE /* RCTNetInfo.m */; }; - C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E9ADD22F7A84683C2040C9705117DCF7 /* UMModuleRegistryProvider.m */; }; - C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = A40F457419656C4E46D7621EEA616612 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFC68F0413B4C9A826D7B5B96793F07 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEC72A4F5EB0A672AD4A657C3D64FC6 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = C96EFC242C43FBD164324E0B2023512B /* BSG_KSCrashSentry_CPPException.mm */; }; + C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = EA28F8CD09A6D38BD4F0FE8DEBD01185 /* RCTNetInfo.m */; }; + C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B1BCC00D2D8DAF70A113D49EDDA48641 /* UMModuleRegistryProvider.m */; }; + C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 865E39F06A42C6FAC5C5E86CE8717766 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B8735479A382DAE21A14676BF542A6 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4174C3DA62C6EDE81EC9F9D21A6F2728 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 191C7A61A45A4E62643670F51F090822 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 669D982572D28923DCC11393AF50589B /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3A2D6BCDBDA123DB574B839F8BD2994 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9C66031E52E764B6BCF7FDE9CE3D55 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE5E34FE8EE79376EB837070EECF228 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3A2D6BCDBDA123DB574B839F8BD2994 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = AC50FAD51606C7A7BDC77BEFDC97ACF6 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3D1000FE91F1ED6637A85A0B3393FAE /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 4869B54B0EE37591D6C195EFA088A309 /* GULNSData+zlib.m */; }; - C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = CE800B9F6E783B4ECE7AA67C76B71C7A /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A32B07E78DE2F7FFC25E1DEB5618BEE9 /* EXAudioRecordingPermissionRequester.m */; }; - C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CFD8582724B97B03F5597B888745CD /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C0B954E85FC75B7EFBDDFCB4506E4D /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BF675BDCEB62F9E372C87820209D75E9 /* EXAudioRecordingPermissionRequester.m */; }; + C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78321E51A4A540D13D5D8BD2DA2809C9 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C463903550363F2EC8E73556C301C2CE /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BBB8F40356ABEB7E55A02AB87D8BD73 /* FirebaseCore-dummy.m */; }; - C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E0E90EF0C183F2A43724E79B0F6C73 /* UMCore-dummy.m */; }; - C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FEA960087566F7421F1A598F2DFAB8 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A765F8ACED619016BC5A4F78F5CB63C /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69319F03CE5E5C62BB0E8F87AC0D27EE /* UMCore-dummy.m */; }; + C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB519EE03892715ECE983731D559519F /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF023C46434A618EA273DA8E3F8C49B1 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C50BBFD660177E04410B43D6C45ABBE7 /* GDTEvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E297E5E6E76E62B903BE587078B295 /* GDTEvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = A90996A1D17F8B19F648CCA2F3DA90B1 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B50C53F771CF8130CFC0904AE4BA26E /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9C6BF7BA250086B1CEBFEA43E3257F /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B389CB5B56CFB334BE535D2476F79B /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E44A6DBBEE242422FDDC66DCFE9D0E /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5B18DC66089E744774E2B7348260CAD /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = EAEC75E92D73486F6BF98F23AA7FFE58 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFDBE9DCD0D1C4FD161BE5B0AB525F3 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD6A5BFCF174B7789C908F39E1F9AC8 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C5CEDA86340AD47E9F861BA2E90C0098 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 119D49631AB3BD4A36F2818E213042AD /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5608687BECEED09E461BFE33083ECD /* BugsnagReactNative-dummy.m */; }; - C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5493D1C1E055A9856F1F178A6AFA311C /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = CF66AB4F9569D8AAE1EC3C3AFB7FB420 /* BugsnagSessionTrackingPayload.m */; }; + C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC9619B8F1E2C194DE511CD8A7AC973E /* BugsnagReactNative-dummy.m */; }; + C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 152B32D40B0A4AC5A72EA9301B83D89B /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E4261E9DA1E9B9EB1D83DAA337845CC /* BugsnagSessionTrackingPayload.m */; }; C65E95799529526B6E7D878BE5A8C15A /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E30DF42DD6363F4750ACB671F106D0B /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; C679826BA06A7E8AC3F0C873125401AB /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BDDD0244A987883DB876E8A5EA00D8 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21E35835724174C091DD2D637640DA47 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 739B56805E685EF005F087AB1580E6FB /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D91ADB02B9B30E471534B4A7862374A /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A1EB196B3717EEAA36328830AFB6BF /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 735DD463B733D6480E74D6EB513438FA /* RCTNativeAnimatedNodesManager.m */; }; - C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C87A3F26A69C3761DF2F98B5CD940471 /* RCTLinkingManager.m */; }; - C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4922C303E8BE18448BC0BF66971099C9 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ADD84A27CF5B35366F5D7A1CAA1A09 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D5BD3615CAC29F1FFCB30EAD767F4AC /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = D2A6D1E488F8616F877E6473D6DA102C /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC0E242FDDCF508E8D27DAE5915C5D4 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E400FA303B245EEC239368D0F13B7C /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC31B49E2571BDE3CEDB84B28DE5525 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76DDB51F2393776542183257E816A139 /* RCTNativeAnimatedNodesManager.m */; }; + C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E86E683042BF472105F52DBCF26CB84 /* RCTLinkingManager.m */; }; + C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F661E60947B4E42E1D50EED00F0407DA /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 22509F6CAC0545EE9C92B24406594D33 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EFB624DDACF745DCD4B1F2D9425193 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7D3C394C908F36CAD5033116E989AAD /* GDTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C3EFB4F4EC1CD06DDFE2D949BE8E6A0C /* GDTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B5B2B752B7A47FD8AF43C90B4DBCEB /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = B80B5D56226EC314252E94AF85AA7930 /* BugsnagBreadcrumb.m */; }; + C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 916E0498FFADDDFC20485574E2CDD6D3 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = E087FF5551C6FBCDDFF393AEC10380F6 /* BugsnagBreadcrumb.m */; }; C85D4BD99F069300A31F363E422EB484 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D328398F059C6753CB6FD284D94ACD5F /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AAE8E41BAC9759B900C505DCB9BB778 /* RCTMultiplicationAnimatedNode.m */; }; - C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1284BAF15F0362B14FB97344398DD252 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A99B8E12A26047272700D4C96DC2C6D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 53307E5952D6AB4A314D232013266EAB /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 904837736D2EA97FF81880EF770E0569 /* RCTMultiplicationAnimatedNode.m */; }; + C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EAE546DC43AB4405DBA7FEE69967526 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFC5BCB4620933A2A03665A8B4317C0 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C4F0617EB699F61CEC22F253F934A307 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; C94DC516C2F48A7868DF9193BAB277CA /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9A2DD3B4EA1CAC0E1E3C0CC971E625 /* UIImage+Transform.m */; }; - C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CEE254E63E0D6884439E68ED87F2B9 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = C4131C059F65B93F9CB55EF0E7A391D6 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB833DB91F3C3F00F5659F874B8DCF2 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC873DEE6E3D81E6C3D6F548B7590A7 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9C06DB7739CC4EDD00EE60BD45AB526 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC88F2D8A0A91D11E8A80D44390B6D4 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6D70295C27DC7479939B2A1AAD1218 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45EF96AF0A51B3561D8B4A6F9AA8049E /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3B441E1D796AF3184CB0B15AC6C639 /* RNFirebase.m */; }; - CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 09BE3D4D922399E13F4DB9DD6E84A795 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 363F26D5D2DF4C8A2054DC4C8972854E /* Orientation.m */; }; + C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9046263A87404FE2FA089678B448B3E5 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB880D07B8E49F0D9D486FD8C4EBCB45 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = F796ACB971B3220AAEE056E1A82AE383 /* RNFirebase.m */; }; + CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E610B481CD90275D742AA79C56D73B /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = A49BD0CA97A040D95882D2B44D220DE0 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 7438CA751822D791B12E58204A868D57 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 057103BC1D4CBB368BF4ED05636BBC26 /* ARTRenderable.m */; }; - CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = EE7DEC430284CD7F7EC6768D1BEDF3DB /* BugsnagNotifier.m */; }; + CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 9973B00F34DCC89350270D19C4B78C45 /* ARTRenderable.m */; }; + CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 421FFB16EAF6AB59C2EFAF20F0428076 /* BugsnagNotifier.m */; }; CAD5136F6340CDBE7374F28BADC8E8EE /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7607A9B0AE15AE2637A412F178FD449C /* RSKInternalUtility.m */; }; CAF7B83A9944FC42D125FD8531A69A20 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A3959711328FF127A9A09EDBF43483 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB451FBD339977E44FF2FC313068B5EC /* GDTStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A639FF9F42C51D2970304EDD7F9308E9 /* GDTStorage.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E7435E92022103111ECB2B3C815C98 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA536876C2A2AF9664307B7ECFEAA71A /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB58C69E5D7000D8AE64ECC794C216F2 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 594F6298D5A3FF425E7667904063669C /* SDAnimatedImageView+WebCache.m */; }; CB64648C0E1E4414FD4489211DD002D7 /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C8233D3E197592FC774570D40E374962 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D981A1DB1221804922B01B00B454BC4 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CC6C18F9D85D5EE60E7881A52C8F50 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC7BF41CC18F7090E36246E2F669FEB /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 938D0FF3A492BC685E470C27C1300F78 /* BSG_KSSystemInfo.m */; }; - CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B93487886DF9C2E02FE9B0C2D47007D /* React-jsi-dummy.m */; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 833F94A63A4ECF6AA0AD7F77C60C601F /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5820002AC47A904ECFE57A31695A2041 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1748C2FC56FE6C226D70EBA6787B709D /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = EFCA9FCA0CFD1A5C5A7F1497C3E224A4 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 56ECAFA4C28E74E2E2888F511B86E35F /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC60DEE78FC30648336F862D99C49E2 /* BSG_KSSystemInfo.m */; }; + CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE0B56F032CC900BA568EE3A5F53A9E /* React-jsi-dummy.m */; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1640597D9EE540D40FF4401209ECD47 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = A5889432BDA0DED33AC1EF66E706F659 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB1D5B32296BD5CF76CB332AF0AB90DC /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEDBD95631D1F435453BD192A38C031 /* UMViewManager.m */; }; - CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC34455410DAD88E1FAA52B7A94250C /* React-RCTNetwork-dummy.m */; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABB56ACB5DDE3D19E6003FA462CE393 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB04111CFEA49C3BA0FAF650F134602 /* React-CoreModules-dummy.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 954F9FB4042B9C5613E655837B5284A7 /* RootView.m */; }; + CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD7C631C3703B5512F6E0CA99FA0F460 /* UMViewManager.m */; }; + CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB341FAB1543F13B9E7D22FBCFB2CA9 /* React-RCTNetwork-dummy.m */; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F4F3B8CF85FF6088AFBDD2E0B9CF85 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD3906522CB7A056BE7B533EE7AAECF0 /* React-CoreModules-dummy.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = FA564AA83167F3AF33C645641EB17384 /* RootView.m */; }; CE2605D3A74C9DCC6A5A1C6ABC04ED98 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = CBC675CAC7646C3D2A0E25803D8F155F /* FIRInstanceIDAuthKeyChain.m */; }; - CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 64897C6F9812F8293BE1045CFA69D513 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6606E37A9C09CA729C7D2FC244FEC2A4 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = A05C1AB40A6978655EE7D1A21597957F /* RNPushKitEventListener.m */; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4425FBFCF5E1B982BE206B70D958C3 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 663B9E0F053B534635FDB576D642174B /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = B57EB7662EF4BC9689BFE45F76E6B5FB /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 2593832A42DD4CCCB3733C186605E387 /* RNPushKitEventListener.m */; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = A1ACF5E5E35D45C8E93D1A812A4B41F0 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEDCA25A4B55E64D9A49FDE6D20C638E /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFE58F2F7DF905A211BCF64AE4C0FA8C /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1662483176957A52BFB23EF9FCB4AE55 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27956594B5865746D9D106DAA231157A /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF2DBEFC8F676A6C89BCFA1DCBC02491 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8266C442388677C2FCF13167301096D6 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC51CFFA0B2E94B2C8C10220649A29A /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA99B2E10162FD11E167103AD76752C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 48967D0EAAD400B6C1756763B482F85D /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D02279BA02BD4E067A2468A5B6213A6D /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C9063DE74F66137EFFB7D1CB6757C8 /* GDTCCTNanopbHelpers.m */; }; - D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 550F2CCD6ECB3B9D99992AEB94B55300 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F10E4F82ECCC9C01CC40FDD5AFF1857 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C7422BCC5CF5CA60B228FBBB3082486 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B75B0058C060FA91AF0E94596092C78A /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 06539583B1454F6E72D06B88BF48A43B /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E380B95E21AFEEBF77A120F248E7CE /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = EB07099CCB71AF0E678168B069B44205 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B9807BEED08F60C9534922B5809986 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0D1E7C0D38F8F07555211A4AA20537B /* GDTRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D2322CA9EC6811EBA2D12ABF5E0AD2 /* GDTRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 62430ADC842BE7A615225229BF8724CA /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = E6A5E4BEFE7F41537E5CECF90E5E83F7 /* BSG_KSFileUtils.c */; }; - D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1941D4FA114443ABE1991F5E16908ADE /* BSG_KSCrashIdentifier.m */; }; - D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBE7D5A59B8F1DBBEF688B1E0E63755 /* React-RCTLinking-dummy.m */; }; - D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57809A890A2325234AEB3EFF03A9CCFB /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F64200FA3494FE3782C02FB024CF97B /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F4CD5F24417B0900BAEB078D8E6C71 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D8FE86334A54267A0944F117EC32EF /* BSG_KSFileUtils.c */; }; + D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 33D0B8B27FCF7C0CE3392525865DD2FD /* BSG_KSCrashIdentifier.m */; }; + D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5487EFDEBE08F253309F245D788F0514 /* React-RCTLinking-dummy.m */; }; + D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9873371C2104E1C78F4B2935D14AF9E1 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = D71097868824A10B6E5D6025B9CE5C13 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA719374BF9C3DDDEB36F059761932 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBA4B691ED78F42C1F6204633203B66 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE0653F9DC15DA4DA653DE8DDFA168B0 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; D1E2823715233023751BC1A650312E68 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D03E6E04BA7FB962A87E8249DC83ED /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1933BF4771FFFE32EEEC5DD49B084A /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = ED039CC8E2D258B12AACF3BAA94BBDD5 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = CAED344FCC1C522675E638C9E1B74B56 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B920E9A76DD9B7564DF2EFF9798DAD /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5434944859BF2284F9080CFFC0B04E3D /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AC7EF3484B4FBA656D8C1C2EB7BE83 /* RNLongPressHandler.m */; }; + D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = C25D34BC5BD12F75E17A5CDCF0EECBB4 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE7E2BABC7879C5D9AFE432EF097569 /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E5A3C18B5D608336D84AB10D0DF85B /* RNLongPressHandler.m */; }; D2BE8317E9EBBE5FD4ED18BA5C53794A /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36898F6F3A17E35E4B79457A43BBAC39 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFF3D6DA73503BE193DA001AF40848F /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D4C4833101030D0CF0D412FEC21E68 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6EA0D4D0F0F3E78CA9E164E2F117F5 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCB61056D2A2DE31144CE33220F0B6C /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B1789B432E0A8183D470E042D37360 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3427935755BF962371D067EFC408DE4 /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7830133E02017B820D1F11EB0E2EE9 /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB12BA4347B46ED3E6FCB85E85BDC70 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E398C60B85FD0481103C79C6EAE25AB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 797E5CE06E9B9B51140134FE084E6A9F /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = F5C159AF450FD701B85E80EF47EB8CDF /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3E2973E1A77B52217E5151ACC4C40F9 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4493626E5D7EBE75F85C62707A33036F /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C971A080CAF4045E52DC030F928315FC /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61F603C852ED842BEA31D284324E81AF /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6960DDCA7EA96234CC36AA9D55A9BAE0 /* REAStyleNode.m */; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1367756BDE37FC6B7D7B9BEB393B7E7 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E42561FD25274B8CD626FFA97DCB7E6 /* RNCWKProcessPoolManager.m */; }; + D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB877402E672F8A003609B814ACF2F6F /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3682BC07B13C3913D99CE605DE58217E /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5124A71B9959609807270C74C521EBDC /* REAStyleNode.m */; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D05769483CE1B7B36032C215CEB2BAC6 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53BB0547E6A0633B1676ED1D03C87314 /* RNCWKProcessPoolManager.m */; }; D5459FA80234303AA34ADFD42867D41A /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = E4DBFB4E3EB87512BFFC27EAFB4D7E2E /* FIRInstanceIDKeychain.m */; }; D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C613FF4E2A125F0EB455A9B28448FD8 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 01112CDA9C6B4D17A9BFBD45BBF9D498 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2C39987E14A691FF9F9CBC45983ADC /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5D452E5668A65252CBD1865BF47312A /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 02914C56F64CA92183E30842641FBE0B /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E80CA7F21EA9447D0ED7262E489282CE /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 19EBBC763C73E55A4C53FFA6166FF5AE /* RNGestureHandlerModule.m */; }; - D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E808A86D11B52E5C76DB57D79DE4CDE /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 83670C60DD32A046C142C279AD1BF0B2 /* BSG_KSCrashSentry_Signal.c */; }; + D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 558915603AF11306686E59F03CF0521F /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 841B25552AF59007AF5F708CA47B8DAA /* RNGestureHandlerModule.m */; }; + D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 383F75F79C51D1F463B71D72C88578D9 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E67050C46585971FBBCBC894D517A84 /* BSG_KSCrashSentry_Signal.c */; }; D6171C8EC6F0B8271D6FEBE6D0BF4192 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFF2790DE9D663C1E7587227F59B572 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50872EEE1BDB14CB8104E116422B5BCC /* React-RCTBlob-dummy.m */; }; + D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDA8B40730E825225F4057078C4457B /* React-RCTBlob-dummy.m */; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = B495422B40687B5786370FAACD615B60 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BBC16EA3A6C090D1477D66570BA76FC /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87179650DF0B52EB02B734E5424A0BE7 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7182C0FDCAE8B97CE1BCDC7866C69FE /* GDTEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D7A7B3758C1D359A15F4DF30C28E57D8 /* GDTEvent.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 34978C6F301A9CAED6C961535869D93D /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2013CC1164B735BEFB4E7347C9C63D /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 69549F7167A5976E3F0646387CC22A36 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D7ADEF068518F7CE4F646F7EBB7F384B /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B25C2F7013DB491EBA70CD15C766277D /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FFB4730ACE0DCB77A8A34C4015CD46C /* BSG_KSString.c */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B3A4194FBF855305AD67DC72205C80A /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 770527F9DFBA601C0169B1167B38979E /* REAFunctionNode.m */; }; - D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A64FE1D8156746761136A5D120580B66 /* EXCalendarRequester.m */; }; + D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = CB678DC13D310D5F4459BDBDDEF35A46 /* BSG_KSString.c */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA8B9528242AA4B453A477F337EFB2 /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F28D4D3F3D8943317DB46F355DB2220 /* REAFunctionNode.m */; }; + D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C23A05811E5A08969071B98F5D6FA4E1 /* EXCalendarRequester.m */; }; D8657431950ACD09CD921390BC208E99 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2647D7CE97B25E7411775854BD8AD1B /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F8C773ED252D06DCA1DB6E14F56336BC /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = AE3CB43D8CCEBF1F5B8D6F9D6F3CAC26 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D8EE6465A9C79D73344294522CA1631E /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EE738B3A601FC77C73C28D6421C75F9 /* UIApplication+RSKImageCropper.m */; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 634B493CBEC263608C0B23096186E37A /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 47396539803F6D5DAD6C44517FBCBE7E /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9F4B66EE7652E0F2BCC18E113FD5F7 /* BugsnagSink.m */; }; - D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7D5301810BE26C48FD38C4EF968066 /* React-RCTVibration-dummy.m */; }; - D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = CF387BE93EB6E9CA6ACEFD82F6AC1D58 /* BugsnagMetaData.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B22BD68C280DEE9CDFCD2BDC341471 /* EXHaptics-dummy.m */; }; - D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFC8AB78F4EB413F1E0B9D0369C9F0E /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CAA23FA23F0C7E1DF5C9751B02D722 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBE09D8BC9D3CA679020FB1EE11D644 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C04C08B1FFE034059D47B28F8BB03D /* BugsnagSink.m */; }; + D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1870B42FA1BF7FABF1ADF818582505D1 /* React-RCTVibration-dummy.m */; }; + D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D3261AD5F003D68136DE60A838D198 /* BugsnagMetaData.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA05208432EBAB01ADE3051E0DDC468F /* EXHaptics-dummy.m */; }; + D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 14128ECA05432211981258AECD55A721 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = E1E51FE5092CD4D13C651F128F55E751 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7EC17A8FA42C5353C9099F3229B948 /* RNSScreen.m */; }; - DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 49F5191ADF7A52BAFC1F0C03EC3F9D30 /* React-RCTAnimation-dummy.m */; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F432392F467FFED0E683F8D259EF2E /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = C3B8D99375736CBB89C2C356A7C8B338 /* RNSScreen.m */; }; + DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BCDDD7DB6B1E4894935BB2821D35D00 /* React-RCTAnimation-dummy.m */; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 754EABC0EB1BE0FFB98FF8050FFAF7AF /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAB5F47E749603B8C537105E02546533 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 32417419448BF9223832C1202BCA80BE /* cct.nanopb.c */; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE8BA2EFD00B780218CC8E537FCB63F /* RNFetchBlobFS.m */; }; - DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E20142C80FA5EDC6CF2E7B584F05970A /* RCTAnimationUtils.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 3772EDFAB6079CDD709B999FAE9504A7 /* RNFetchBlobFS.m */; }; + DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 698FE0484A539BB14D90E0BDA75745C3 /* RCTAnimationUtils.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E7E0CA1C9019E1D513061F8AA10BBBD /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBC7E845D42BE5AC021FCE397D926B2B /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B076D054445DA78D8360BDD9660AFC37 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AB0AC0DD2B830F69AAE4284EB4826 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1460889D90DBA75997B55F518648FB7D /* rn-fetch-blob-dummy.m */; }; - DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 32B1A0AD172D5FEB77FDA5EE3A58EAE8 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6B20C92C7BB0944A74CFAD9963FE8D2 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B11F7935C19D82510F1DD4929B409E74 /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E6C26D0A88F1156B17D0BB8344EEA1 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E356A1577B80364B95DE1871626C066D /* rn-fetch-blob-dummy.m */; }; + DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 019C0E800661744EF0D3438C0676B8C2 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBB2215A03529D784DE3DE650A02FD45 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AF947193A9EB226E277E245ACEC85A9B /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A279D5DC9F3692C129B20E9B873445B /* RNGestureHandlerButton.m */; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = FE408F62848CBE57A7C1319F29C2F4FF /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FCE4E36340938E13A3903617D683D4 /* RNGestureHandlerButton.m */; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = F31A9A59A052D6F7EB940F9D3A6D79CD /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 11FD97EEA3A1A505C450598EE1B29380 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B3390B9042CE527A10BD2C7A83A437A /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = D67B7CD545E3FB0BEB3931F8B928AA31 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DC68D05D6350E5C93111DED36C4508F9 /* GDTStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E1B4751772BB4FD74AC8082E204C82A2 /* GDTStoredEvent.m */; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = A334EA6BDDE579C470B715F4EFB8C0D3 /* RNBackgroundTimer.m */; }; - DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 608911C3E52CEE0623802BCB68B9AC7D /* BugsnagConfiguration.m */; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7CE2F99B0B2E3EAE018B5455148BFA /* REAPropsNode.m */; }; - DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 112FE6CA274DE84DCC9B32ED070D75DA /* RCTVideoPlayerViewController.m */; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B9EB005E0AE8BE95FE42D4A10E24F5 /* RNFirebaseInstanceId.m */; }; - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2B6AD3706960E23A21BA9D9B026055 /* LNInterpolable.m */; }; - DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 952192AAB62B39C4EE50DBD20E01392E /* ReactNativeART-dummy.m */; }; - DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96E10B41DE736BCA81104A5FE048B26F /* RCTBaseTextInputViewManager.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 39914856EF6A29A6C2F0D5B1DE42259C /* RNBackgroundTimer.m */; }; + DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = BAFABD63F5210B2671007BEAADB230AE /* BugsnagConfiguration.m */; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF645CB5451C84733660BB79C9FE2153 /* REAPropsNode.m */; }; + DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 046CED75C001E550AFB9F94D53222FF0 /* RCTVideoPlayerViewController.m */; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D6E36EBB6C6709E2B246C46650DE2CE /* RNFirebaseInstanceId.m */; }; + DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D6BBF053D543F7E540ED8C92265DBB /* LNInterpolable.m */; }; + DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C58390A83AB01A7454861AC7F511E242 /* ReactNativeART-dummy.m */; }; + DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 409404084C453D06E24ECEEE5E16CD11 /* RCTBaseTextInputViewManager.m */; }; DE2209CDBBB1FF739DD3AFE8D7EDA04F /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5172B1F1216A09DBE64EACF66766FDA2 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 75EC17E421E4E64FC4C136693256D120 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = EE8F86CB1A6A99E11E3604FB3EED2811 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF96AB8684D15E8B522B32E3C4C0040C /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A85708678FBE7B05C15BC5627A0E5F2 /* FIRInstanceID.m */; }; DF9AF82CFD185E9405454B58BFB1F031 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = BE94D59D6A90ED95B1F6E7B18C8E00CC /* FIRVersion.m */; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 01303812247D9D0D9810E6E57C5F301C /* RNFirebasePerformance.m */; }; - DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E41BEA18D5C9A442C93226CF8EB9B3D /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13255737D68BEF5CA5207F73B9A6C42C /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3C78CD2543A1CF6729C277106A9B25 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EDEFC74D73E5585A99482F8910E029D /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9249B6997BEA6CABB1A1353DE8D7438 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B9D77B42FEAE3A5C5A6F2C427F1594 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 858A831F7A94869D2392B130C501CE40 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B2BF55B7DF5F7DC442EA9112846E3F85 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 82325A477E75BADD23CB0A88F2E29306 /* RNFirebasePerformance.m */; }; + DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE332BBFA9EBF740D1DE60CE7CEFF05 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 811A189C13279895F1162EF2A40D4904 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2108B9C07424EC2174F3964D3445244 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4ED23D2A53497958107B386E7127258 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7B66BD42BC878EA51C2BC82B338C1B /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE55F1B0D9165A56E7FC49111C772D /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B4ACFDCF5494F481184D5A3B38A60024 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F9363B3349F3D205297C76DAC16F50D /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C378C9AACE70EDB586F37D1F5F54EB9A /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1266E09810540E459FD7D39AEA1D7BA /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 025B1FCF58AAB212E448A0BBD58CBBE5 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = C664F93BAA891AF0FF9EC0DB1F408895 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F2F0731A51B790FD2904FAA4CFAB0A /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; E136DCA9404C6709A708A1CDE213306C /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D4060D1EA021856193B54C9D39E758 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; E18AF3DECBA29CA26E94E3AA78232910 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 01089515CF71EEDA6B00D630FC8A9EF0 /* SDAnimatedImageRep.m */; }; E1C16957DAAF0BBC2BA568CBA21CB60D /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 715D0CBC1A0CC82FBCC264DFF0172A1A /* SDImageGraphics.m */; }; E1C350EB67C41B14911972FCE699FCA5 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B33D83FA8DED2E998E91F2C1409CF98 /* 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"; }; }; E20B9DA81BA44271F160D54C4B3F0CE2 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 162A8DBC37BC0C03DF8FF66FAFBD9F57 /* QBImagePickerController.m */; }; E21A8F3640D69AFF96A60DB6BBE4B79E /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85529CF7E1A03066A8EBBDA1888E4A63 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D054CD0100E3DCC1CC4EEC875C517A /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B29BD9D3C6B94CE636A7EF39030F71 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E23132F7114B73DAB797C1605129F8FE /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B4D048FC2E4AB388AE85B12DB498818 /* SDImageGIFCoder.m */; }; - E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 932FA24E79500381ED43D45BF87FBA5D /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3356D0654ECCD9F91792A399CBEDE0 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E272409F0AB241D83659D93F160A6BEA /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 304B64A89E638598A9E65B7A5FB5A012 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3FBDCB7C2D40599A440E30D3C76C50 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E1E757F500D70CCDBDD23688B72E2E /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD26B32FF25148C61667F4AA76D7922C /* RNDeviceInfo-dummy.m */; }; - E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A11F3E94C537432CAABB1F9310874882 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = A14E025CFB4A98FC2CF786538CFB4570 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 6403CC8E224FBBBC23AA1751A737A21E /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4FA519078044EB4C4E950F1ADBF33A5 /* RNDeviceInfo-dummy.m */; }; + E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98AFA6E59257431A9AA02DDFC5621569 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E32657D4D707837BE7FF65E4541C0078 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7EF407D151CF5312080E9FA6756C80 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36F85C2049E33D0D5568D05E95D01C9 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C48EF77B7E63248AD939425395455D /* SDImageAPNGCoder.m */; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F908369E5111C116B8783DB6EC8F60 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC6E49F6394BC3947789CDE321BDFE6 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3B7CADB949FD1E05DE1D804627D396F /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = F306757A7F52D0FC9929E2BFABDC8FC9 /* FIRInstanceIDAuthService.m */; }; - E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 225F759A534ECFDD2F60AA88A99267B9 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CBD3723711AE79AC36F658E2A1988E /* EXAppLoaderProvider.m */; }; - E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C67981B3FD8CED45B6F5DAFFF5FD03 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 95AB5F946C38ABC254DDEF1C159E750D /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E855C116680FF9FB16990497C8F510F1 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5230BD3E3A0F8047A7D45E0D1CF56CF8 /* EXAppLoaderProvider.m */; }; + E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A834FF9AD422C88C1B419D5CEFDDCCD0 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3034484CFF3719E0A09FDB6C053AC4 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; E41F42D6341870D7941259F2DA2F6CEA /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F68614DA4BD83FD88638B2D6FFE432AA /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5844A68D6B3B4D005BCC46ECB0CB222B /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DCA5053AD6E0FAA24E10ECC578C80C3 /* BSG_KSCrashReportStore.m */; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0282E5FA3AC27F85124E41667CAD55F2 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F84FC51799C8CDB5DFF75A4024913E72 /* BSG_KSCrashReportStore.m */; }; E47C254AD48009FE84A72BF9BD0A2013 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACED9F4DF79E95A18766C12251F1609 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4BBDC1C561DC471AB6A780C063BBCC1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4CBE67363B2232C57BD2CD42D32EE1 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 17217E3E3687E8FF14776B035C346D4C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E4AF841D8F2BF5B4E1B7A3BB51EBDE /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5216B6E62473377EA6E284532506268 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 550868F8B354C387FEC258FEE790F14E /* Folly-dummy.m */; }; - E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = AD937DF3970AD1236B22AF168378E354 /* RNPushKit.m */; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBFFCBED60AEBCF25524A6709D604EBD /* RNScreens-dummy.m */; }; + E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = D69982EDF3E3189BA62CEB786BA571A0 /* RNPushKit.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1355971F5ED604D43C24464B23D2E0A2 /* RNScreens-dummy.m */; }; E56A382EFCB1212FE0C79493D0A3A9E2 /* GDTClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F46CF4F26CA396B398D161F08B1C1A /* GDTClock.m */; }; - E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAB6C31DCAB1233F121BDDBB98E7A72 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D31724619E3321ABFC9D94C41AC44B /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A77B92EFA4C78BBF35CA2CF762F74659 /* SDImageWebPCoder.m */; }; E590557528529B8071B97A4AB8EDF4CF /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 014E45AD189B1336120DC9E8586365D8 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5B91C01861A4322F7F66723B878316E /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 31AE6AB1498B353FDC643E095E7A39C7 /* UIButton+WebCache.m */; }; - E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 442CD07F1DB8846A151DDA3BC3D596FF /* React-jsinspector-dummy.m */; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C92270618C3F38F45AB13CBC0002CB /* RNGestureHandlerManager.m */; }; - E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E927B04D6693CA9C0EF0BEDC75F8EDEB /* BugsnagSessionFileStore.m */; }; + E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 214919E23612A309342CC7EED519DD14 /* React-jsinspector-dummy.m */; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B949BFCB44FB8932EE0CDD0A9FF82037 /* RNGestureHandlerManager.m */; }; + E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 62B9D18CCAF589880A35D98299E23446 /* BugsnagSessionFileStore.m */; }; E5FFDAAF26DC2A5EE78AB195E68D7A6C /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 448A30501796A418DC547CE32C7F3317 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; E65C399538D7D89567465C7B349F2C04 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 09163101D9B7E00235E192BA91D25025 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A57298DC428C94662BDBC68500643F91 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = EEE5729F20CF52915638C7F9B0EF4C3B /* ARTLinearGradient.m */; }; - E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D34B0518D763888260CBCA4D27CAB07 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBACE0CB8175007159EB79341E5FF2AA /* RNFastImage-dummy.m */; }; - E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B896AC7D9DABB6B6E4B0B536BC7327CA /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E1B7BD37A18BB8812DCE5135F5A3545 /* RCTGIFImageDecoder.m */; }; + E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 762A2EE810E1F78EF4BCD75D95B0BF0B /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 00ED015520B1A5CEB93B568312D4B0E0 /* ARTLinearGradient.m */; }; + E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F50D868A6D8C20A7D11B3718ECF40DD /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF5C23759DC629965677C0E16517F4DC /* RNFastImage-dummy.m */; }; + E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A96D1F154AEA87D016369A0C3870EF /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3705716BBE7DEB63B20D332F6F24EB4D /* RCTGIFImageDecoder.m */; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A611F89BAEDF8226B087FB7105C03D4F /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = FA497F74BAF4E9533A468D33B347590E /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E0E7B2ED357A5649AF19017879B03B2 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E17A2EF70C40EAB41925A2983530F0F7 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4089E243FC5108FA17DA05120B28683 /* RCTTextShadowView.m */; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BE7A86EE34835C2AAC3104BB3F500552 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = C94B4A04E9B68E29AEAF311EC415684F /* RNCAppearance.m */; }; - E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A22616688022F140FF0E0FCBC270FB71 /* EXAudioSessionManager.m */; }; + E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D61ADA0D65AF7B704FDA8AB935CC54BE /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F7C71414E7A687F23D5D9F0F2AEAD1 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7740F5C04592BE2D469E4D7225DB5D /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 51B9F8ACCD896C009E3495C16685D24E /* RCTTextShadowView.m */; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D423632AE9D7BA4119B5968AD8B01671 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D60AECC0FFD09038D82BB1E68B2F474 /* RNCAppearance.m */; }; + E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CF83338819AE52A1BD15DB7641F1F4 /* EXAudioSessionManager.m */; }; E8ADD9FF1D22894886D0DBD93EAB58F6 /* FIRCoreDiagnosticsDateFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F924F4BCFF41DF00E2D16FC29F4D79A7 /* FIRCoreDiagnosticsDateFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 993162D3B3E7C342C7579E508EBE5E60 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CF8424614339AAE0B9D5417A5C3464F /* ARTNode.m */; }; + E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = ED641C78B588F31D0AE58DBB99AE6142 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BAD92EEFCD985EE3CC050DF1285A2A /* ARTNode.m */; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E74BAC7BBFBE1098B23958D35B7CA789 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5F185B26ADE4DECC44F2934DF3EC20 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4E164A3994CE19EB733D241DE93CCD /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A95AF7A093BF5BAF835D6BBE26EED0 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 889F498307EA1081D82E434001B02BEA /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 561957AA8E4D6D438D9C8EB2712D30B7 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA8E0CC67E1BA5567A4154B6A83AD53 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA04E96F998EF83B5CA813705CFFA952 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 967A3406E51C49B6293A74B85877134D /* SDImageCachesManager.m */; }; - EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = AF804193C33FB58CBE5BA166426FAA72 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 401149FFF984995BED9A32C13BBBCF4D /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE0103BEDB08DD9049FB3AA3644A40A /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1458E4E4EAE7B330DD86A82D306C54E5 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F785C994B38A585CA88F6FD3E67C19E8 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3E24580BE08E5B95D8B26751FD5B75 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1165BA585F1EE5B96D006BEEFE1AA65B /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = CD16FBC9E587ACB91BD74D1E29A9318A /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DD7A68CAE989C83B0012BE162E2A24 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB9924D58B07EE3EB3287F501A3E8DDE /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C44D06FD9B95D8A96A2C5C12FAE325 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4228A2927237DFE71BDB18546D00CE64 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = A4308035A15D5B869AC760CE2E021029 /* RNGestureHandlerEvents.m */; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 00DD1E17FADBD9970827C980A7A23A11 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 49BEE40C24683E301CB66E6A4DACF492 /* RNGestureHandlerEvents.m */; }; EBD07BB27B77720C17D34C923052FCF8 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E58FFC4E5E4E52B5906224506D529A /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A86A2E2AE05EA89FFA1D7B8DF2941F /* EXAVPlayerData.m */; }; + EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 06CB3D40713972846A122E52966832F4 /* EXAVPlayerData.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B5C12C9057A3C3F80B6FE63DC672B1 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA3E56B402EFAB8A6A5C000A0022DBAE /* RNFirebaseAdMobBannerManager.m */; }; - EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83EEF844542D0293187BFEED661C90F2 /* RCTBlobManager.mm */; }; - EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BADCB78F0AB6C960985E2CAE7F97A45 /* RCTBaseTextInputView.m */; }; - EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5535B64C0D95F931CD88E7F2EE0AEE52 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D7740CCBB91598F7C6D66B10A284B6 /* RNFirebaseAdMobBannerManager.m */; }; + EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9895BDFACC41F63BF601939BFFAF2A89 /* RCTBlobManager.mm */; }; + EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 174B066C4F232B044FD1B4BDDABE8252 /* RCTBaseTextInputView.m */; }; + EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = F844C20A54D995CE7E93296EC2B64F8C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC948F82EF1983AA5BEB6AF4EA40501B /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = CFDDE8E0E29C88DDA0C9E8798860D878 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AE7D92C54A488BDB7AD0E3F283BD9DF6 /* RCTTextViewManager.m */; }; - ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 973F3258A60E4FD62A39E54D76CCC1E4 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBEF071D65684E062330ADB59D9D05C5 /* RCTTextViewManager.m */; }; + ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B66034AB472803832C9006499BBB4D7 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 75FA850F4249EEF039D14074CF29791C /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EDC7C6753DD7336A6DAB5677E860B474 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8554D73855D891F21F3D4A1CAA79A245 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CFC715693F19E44F33F66ADFBEB6415 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D490F6067594391B77BBDDA317E72D /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE4BDF8FB4021FDA1409408B21AFABCE /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C3F1CD6A3EADEAE4CF1D0F93935D414 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9420F89FA08462AE32838455554263 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E05F2C6F33CAF5336B8740CBCA2A516 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE5C2C00E8185B79989EC2EB1A7A1FA5 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A086F979493189EE91F9C149DDE8B1 /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DBB3644572377E6227E8F0A5674372B /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3233CA3991ADC282DDC155994E84A82E /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B3AB92FCBB720DF9940897E9D1F8CEB /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA8CB4BDD699CE785BDE16E2769C788 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF06B917E566C842CE410ABC8810873 /* RCTSettingsManager.m */; }; - EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4059D86E13B5BD3B77C3865778919A /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D0414802185B4FE7CDBBF860A00BB4 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4B743EB144717A68239203E5483B35 /* RCTSettingsManager.m */; }; + EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E87031255BDDC756EF8EA2445A305577 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EB2B14916B3055E72BC51BB66F56D2 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E97FDAF6A2480C048C7D59A0F1089B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 287650BECBB76C9B1FF6B790694E0A37 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E9AD8818B806CBDC2E64036364B7256 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC0D5790EF381188B2739066F327485 /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C078287057644DB319CD83478B3EE278 /* RNPinchHandler.m */; }; F08217569EB41ACFAEBB6EA9A653124A /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FE3742F9AECB83E54106826071ED4 /* SDWebImage-dummy.m */; }; - F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EF5660E45E7B0A0A5D036908ACCCC0F6 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B30F34C15CBCEED206C7DD4B2223BF73 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E038BA992C7ACE80C4C2AD8D8EC6304 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFD26AD0B6B93ABF61F3644CA78A1701 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F0CCBD5B1560D8D8B467FBFE07DF74A4 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 881A995EC3D900DB72C4272B69CC47AA /* UIImage+MemoryCacheCost.m */; }; - F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC5C58801626282B7B517E9151DCD92 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0D8D6369C2064A4C610EDBE99F7690 /* RNNotificationParser.m */; }; - F125C736F79D6F7E3EEB77021B05B342 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 87808C98E5B3B22FD51665EE19826AE7 /* ImageCropPicker.m */; }; + F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5209737C33E43597A9E139095CB509B8 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F3A600554A29214EB7C2216B00E15992 /* RNNotificationParser.m */; }; + F125C736F79D6F7E3EEB77021B05B342 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E859BF7FD662F7D787D8549B001AF7 /* ImageCropPicker.m */; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 16F9DA7E073B94C4185D905556E88155 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F19BF0C7860B5391D62C5E675AB146B4 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = EA96D3E246ECF3DE06A0AC55CEE6829A /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CD130116A699DC621AF848D5D8E2397 /* BSG_KSMach_Arm64.c */; }; + F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = CA87F9D481A71CC66F620BEF33CD7625 /* BSG_KSMach_Arm64.c */; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2458545E3325597DD6A4B811C7E66B92 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CC749B0E2A9153CB4C7E1560AA1AB45B /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9001CBF5857D2FF167B7FE7933AAF405 /* RCTInputAccessoryShadowView.m */; }; + F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3ABE8DDE076301985B03E9838E6E92 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F57304B8E6F2DF74420AFC132DC25D /* RCTInputAccessoryShadowView.m */; }; F2826D6E1658277DA089B70D6A8EE819 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ED62654065B0051EE7BF8418A99C030 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A2991B86A47D1BB6ED19CC933044BD7 /* RNTapHandler.m */; }; - F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0F47B23EE7517CE5E9B8D2AEF2BEEE /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = CED7956F795BB4B3F702234E8CB630D6 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A249D0DA845BD71A9288775610F95281 /* RNTapHandler.m */; }; + F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E219AE5CBEEF48D96AE1DC1EE0373CB /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 870EB3DE4EC6FE75B94939F40FF0CA8E /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = B523E283430B206BFABB777FB7EA77FC /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3D627DC15CA09424071F3BC53A106D0 /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E52A16238EF44E7C37B27AF498402 /* FIRInstanceIDKeyPairUtilities.m */; }; - F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E31C47AC2166B0489709141138915398 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2235158B222B19EF02C08099CD15FEFD /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09953BEABC4D27E0A39F52882C8BF629 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E97DB02C97D26B7C40BCF28A04258E58 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40EA7396762A710141555DE1EF792D0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F78661868D7093AAE0E7699ED8543A26 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AAFA6E0A391B9079526E0FB374F2C1B6 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42576E538BA4EAD61737ED1918F7E19 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A03FA4EB2CE9EC8037E4630CA27DF39C /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 89229B4A886BA8BB472EC585D9ED59F9 /* BSGSerialization.m */; }; - F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5B720B7C468A7586AF649B38716B11C /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B7CE1881C6172919E8F1120A64ADED /* BSGSerialization.m */; }; + F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDEBF412DE7E3ED85D2FC7E5E36A457 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = DD41DFEB4D20816504C0ED50EE6A03E6 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 9599986551EE5C6D09645935D938432A /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA0198259715C8F432E0DB66B05BF01 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3FB84EC82B5E199929CF5D662B536E /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E130A6685FA21DFD3AB3D51DC6F5B2B1 /* REABezierNode.m */; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = C818C00C3BEFB8DE06843791342A4D17 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 72A255A67FB890E9C38AEEBB2C8C50BA /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9CB065251A7AB1AE576E2211C2E763 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B47ADCACBED842C655D8CFCF877CD7 /* REABezierNode.m */; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 01479C2645C082B6B80D617D5F01F290 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 59BFC8722B6941D3B037DB30FA6230D0 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F559AD1366957B0028F9C2E8CF3746BF /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; F56B25509F8FD04924C91D993984B005 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0371827EC613DDDE6E2F523FEBA8F0F5 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D50ADBEA301ACE724E39EEC59E7D7401 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 8875F1DEF34576C96EFD8153CFB944E2 /* ARTShape.m */; }; + F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C83A45F34C05FDC9F84E01F32F46263 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D39D57EE6339FF442978B150F2F571 /* ARTShape.m */; }; F5D27F49E8DEC09ED4DF62A5F2975463 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD2E678C2D94CA5B375DD1FF14B2B3 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; F60AFC502521A8956123317B2306FA2D /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADA5FFE88BEEFE75087544EF53976CB /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3B93231E0AE74F58DC1C02AC948CDC5 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1447CAD6AA2050CCCEEB864044085161 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFD311E240041154E118EFC719CE99 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0E62FEACC9E49A4A484367E061F37BA /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 07DAB8EC81730CD97DB2B6C1AA675CC2 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C72004FD57292D2E614494D7D9C54E2B /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6BC3D6090988DED79B6F5CC48074FEF /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0495E0AE91CE73E0349235CDF0E64D /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; F729FF2845CD5C8CA9F83BC033C4A4D5 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C3B18339DD82E677853D0FF7F725CA /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; F72BF847412E0FAF84E1A7E16EA97A46 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F83F5667A9B217830748AE33EE67B5 /* UIImage+GIF.m */; }; - F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 585F8B38616FE9A0E6FD8F2497DE3C9B /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CBABEC94E70081AAEE2424463752F8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B83ECE53C806DE9E734A6A0C67A45C9 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE80D776A22CAAD6BA29A345BC883F99 /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46E7C6CE6CFACCFE8DEE602C55D05D96 /* react-native-slider-dummy.m */; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 03DB14D6500613E1BFAA6C4D64877145 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D86B85DFC07E3B163992F6452ED056E8 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = B39EE0EF27689B02A6811C6D712DE93D /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7C3B037B97B6C77B9C02AA6E6A366CE /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F722E6EC33131558CA0D9118A0F8F5E /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7E5C972E05E7175549D6B5131A4AB11 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA548026BC294C38F90EBF3902F9658 /* SDImageCache.m */; }; - F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E27E4AE7E5438025B3033C5A3EA246D9 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C468F235C6359CF14498360F3EE89F37 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7FAC1E73D94665C2A71AF67FE7A9930 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 999E80EF208B453EA422E9289CA5C830 /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F548CD0F6078F1CF7512DB8977556CA /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B9AD7F8DE1437AB420CFBBEEC39F8515 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8577EBCE6AD05B8E5BA37B57ABFAB9 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2B33AA450968108C00CA328D8929D /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B81BFD13C51E703ADF3467AF47BF75 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA846A7E972417C6D0F9D749BD466139 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0916E2D77A3E67ED66B363A3040548 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 444FD0BF1AB213D078F9B010C660DF17 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = F2FE43E8C09201806C0221BEB76A1396 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A46B6FCA029E139372B7F5CA1B9500F /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7478DF8D8A7391F013C061E011395DFB /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89DECEC5BA10EB7025185E6B80FEC4FC /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = F706FA8688F45B47E85CC664DA8CD79E /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F903E89A908134BAC586C99F1EFB8F92 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = D303224896C0540A955BA28C9B201751 /* FIRInstanceID+Private.m */; }; - F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 246C602719C906644EBC65A6E205C426 /* RCTProfileTrampoline-arm.S */; }; - F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D4C3338BEAB4A17E8FE3F52BE87DCF3 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB77070CED9511E922A63DEC446AE7A0 /* react-native-jitsi-meet-dummy.m */; }; + F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 1E38F27EE3D1DDF70053DD09AB23EC0C /* RCTProfileTrampoline-arm.S */; }; + F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 632D734EBF072B36C92E49CF98712EC3 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA9749D964D0660A6EC2BB114A0738D /* react-native-jitsi-meet-dummy.m */; }; FA0980CF93ACFCE4817D2934112E098E /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 977010B1D7A1BB9058285F5B12C373E4 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 52ED103881FD477454B892F8DF3D4F6F /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FA2139280D0DB8CBFE7A6CC71567CB34 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33849FB08B2D1A66D62C9DFEFD628532 /* QBImagePickerController-dummy.m */; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B1EEBB9725647C1825930EC50BF172 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D8FC957DC3D9891D6C2213715A4A3CC3 /* BannerComponent.m */; }; - FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ECF8CE8E45587754DD6CA2C7A374214 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BFA64390F2297C72F735CF5C9DA5D0C /* RNVectorIconsManager.m */; }; - FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E85EA29B7D10E54713877DEE6E8C19C2 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8097639CAAEAC14DB33641BCA5F76A09 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA73D9116E3E6FB1B522A8D311F63D9 /* BannerComponent.m */; }; + FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F75EFC7CE2E08B668461CE1F083CDB /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CFF0EB764BC9AD5478CDBAF1F1616F3 /* RNVectorIconsManager.m */; }; + FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A55D3CCBDDD7927545D0702888EF3D58 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAF4E061760C22B95BE08E8A7CB52005 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F41B48A54F45CFBF9E54AF1B29CFFEBC /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB12BA4347B46ED3E6FCB85E85BDC70 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E554CBFD47A5DBE00B42D842BA9D51 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 759D024A83871BAB5A9AB81DD714E418 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E265D8F6F85689533C709A9FC9579C46 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 259E4501D1D6650A9B4670C2A99991C7 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E398C60B85FD0481103C79C6EAE25AB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 77EB82852535283CE02345BE4C8E40EC /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1170E41A93AAC135601308AA15AB3F2 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E8306CD04616B2AE9ED86313F79FACBA /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97C73D35C3F8342122E3D4A1B8345EF9 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBA3AD3723EB355128F93C3892B5514C /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FC772577BFF47AC4AEBD355A0353ED3B /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 96E9464270DFA0748E8883DDD19267F4 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 20E78353CA089C0AA42E7A32E86FC6F0 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F7156A23284105AA7C4121711BF1FFC /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = CA97A1E11835A8EF80ADF1D107049CFA /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC3D97DAF0161899EA3D1DAD4BC63767 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B537E1480C08251B27BF44AC40974C9 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CF3515D6729AED91017203BEFB76A927 /* RCTImageBlurUtils.m */; }; + FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 87E9D60A4716E741764A6CB9588AEB79 /* RCTImageBlurUtils.m */; }; FC7637AE23AF20DDA06CE6C7CD5BC193 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = C9452CAC6F952F0A74204730C3121CB6 /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBA29BF4065BC799B3EBE1305390E35 /* UMExportedModule.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF17E61ED47D85220336B275F63BDBF /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EF8A91F5485827872771CED65D0208 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 06595D20C451CB9C2F9AB7EDDD7A7C95 /* UMExportedModule.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDB27E785D4D6DAEBDCB5C57E7DEF5B /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 181122469084C654B646247B9E0E4375 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCD79EFFF5C8B0950B52990E332E637E /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AE31E09B2E2FA3A5B15DE7150AC88B /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1BD8915D456FE4ADB60B7E71C18D53 /* RNDeviceInfo.m */; }; - FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 5531FE118FC285029F2319A4A0C952AF /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E410A15B31656AC6971F3D3B084B743F /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = CE79789FB8E987B27ED41A49D6B4675A /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F794A51B1D3BCBD1E47EC5D497217A /* RNDeviceInfo.m */; }; + FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = D24E677BBC14DAEEE0447A35209AEAC2 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F27A6172A4529BF19BB7F287C544B5D2 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E148A8AD46E58052ED2D2ADA498EEE3 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDE0CFBD5BC520CB3EA47DAA8C5FAE48 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 8101CA79A5AA30456AA6165282972ECE /* FIRBundleUtil.m */; }; - FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03002407081BA5F21DD29F403C78E310 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C28972CB23BE10EBE6758B47E625461A /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; FE2DAFC3D1DB1C90CAD82D4C6CDC4BCC /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 89727035FEE7F64491F5E950B5FE800C /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5C61482E71AF20A55ABB3BE40456E0 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0A6E511A6A98667DA1F0AB0C169AE3 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 268221F035874F9F853B1E7F784BBDF4 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = C13B9D5ECAC5E9AC528775C6FD081E33 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEB08A0DFF9F7B151A3598DFABD3659A /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E9D3BC635E9660003BAFD58CBB5F3C /* GDTCCTPrioritizer.m */; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B28807606D3BC1F3BE3785ECCE22078 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = F151FD2B2793EEA2AFBA711AD59876B3 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A20B936BE83D17C8AD27C518CB84FF73 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2B3D1687FD3940720DB6745F9B30B8 /* EXFileSystemLocalFileHandler.m */; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A9B4024E4482F42172F4B0A22E38664 /* EXFileSystemLocalFileHandler.m */; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AE6E07E996DD2CE02771A4670FB4399 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 365B865A2228D9505717DC16C6BE2135 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00E0E5675D132F64A85F7880AAA5ECAE /* PBXContainerItemProxy */ = { + 00B8AD7082EF2E650487570300C22CB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { + 013B90B33AA066E5675D93493FAA0C49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 023632A16B85D3D267BAE68E218B3D57 /* PBXContainerItemProxy */ = { + 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 02FE946403F5F44821C5C5447F89D9A3 /* PBXContainerItemProxy */ = { + 014FB5572623DB3374A3B66B796D1AF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 03EB0CB2977F421EFC96EAE43AF194E4 /* PBXContainerItemProxy */ = { + 029AF32D317908210B205172A350DF4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2046,68 +2051,54 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 06E2FE4165D801B0B318F7253607753C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 0797A8E5F21D84E99A31F8365FEAD7D5 /* PBXContainerItemProxy */ = { + 051E3EA807D7125B8FD6AAE4CA75FC90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 091EF88D4A7BD6481BE97BACDC0F96A5 /* PBXContainerItemProxy */ = { + 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 09C55BA58A5B57940C2CD2F161A53C1A /* PBXContainerItemProxy */ = { + 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */ = { + 0B31EB3B887112ADB976F98D69DE6C00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; - 0A3E73F0B97A19CA73C8BBF07506F561 /* PBXContainerItemProxy */ = { + 0B53C8A816A47D1D2989D25B318CEF23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; }; - 0ABD7BEB53565320A162575E2D58E033 /* PBXContainerItemProxy */ = { + 0B5B5E7E0BEA97ADB8192F0BDEDFA592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 0B31EB3B887112ADB976F98D69DE6C00 /* PBXContainerItemProxy */ = { + 0DC67079C36D074DD70BEF2B58719707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2130,12 +2121,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 112B1288072ED6F11077B4B5069E5873 /* PBXContainerItemProxy */ = { + 10EBC828B2DBF9A3EB9EF2D5895F6AFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2144,12 +2135,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 11DAF58BDA6D2E4BB305EC32A5E93715 /* PBXContainerItemProxy */ = { + 1336D1C64C9321D878EE5B1F763D938D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2165,47 +2156,33 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 15B1782E09EC99EC871A019DEA961869 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 1770F445FD84C5DDE56FC3508AE7CF7C /* PBXContainerItemProxy */ = { + 1421075EB976D2FEE9D9806B5415204B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 17C1670FDD3257A2D701FA19AEBB0D74 /* PBXContainerItemProxy */ = { + 14A364E800C3EE53FC573E9633007F09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 18063B96FCF92525D0A75EFD6220E96A /* PBXContainerItemProxy */ = { + 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 1828A99450267BF6C2DE050A74C48293 /* PBXContainerItemProxy */ = { + 17D8A91B9959849E8234DADB2913B918 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2214,40 +2191,33 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 192B37A7D911651F9762ABCEFF75B5E9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; - }; - 194B97BFCF1B1B66877AFA036C4BCA87 /* PBXContainerItemProxy */ = { + 199D8BD0D101EBE315003325074F9B0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 19E62068013074AD0DA46A93E8AAC012 /* PBXContainerItemProxy */ = { + 19CC10DDD342F470CF9E83A31C3E960E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - 1B904F5CB370E802DB9EC7223C433841 /* PBXContainerItemProxy */ = { + 1B17BE1DBB0ECE0A222B46FCC255CF51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 1C1C0F293D53CB2680F5C306BD182A84 /* PBXContainerItemProxy */ = { + 1B4E035F5EF51E6B8DF0C8C0CC9107DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2256,26 +2226,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1E4D34569A88F25D483E3E4FF054B705 /* PBXContainerItemProxy */ = { + 1D2F6034C1A8096F570C3480FB4D1B2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 1ECADA04DB9DBFCF336B35AD0B9024FA /* PBXContainerItemProxy */ = { + 1EF1B0065891118A9274EBE57360F778 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 1FBEEB2C6801D8C588F8C41D07E8B814 /* PBXContainerItemProxy */ = { + 1F1DC048FE195748FAED9100FA7DE946 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2284,20 +2254,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 2046A21EC6E36ADB312915EDEF13D7F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 20A9C7DB592D86944720E45460AD3710 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2305,40 +2261,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 230930FEEEBC58AC3E01ECF2BABF8D40 /* PBXContainerItemProxy */ = { + 21ECCD52EA1815957E8E07EEB6D3D120 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 2391766D6A974384522F3D7FC414B28A /* PBXContainerItemProxy */ = { + 223891320A84A86E1FF4F9FD8DB0E7A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 239E26AAB92F77B05BCDF65519B99403 /* PBXContainerItemProxy */ = { + 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 23C25DD19C97249E79164CFDBDE77674 /* PBXContainerItemProxy */ = { + 23606BE87CE39804C557EEBB5F3B65E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2354,33 +2303,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 27581D19FD0AF8BBA12E1C5AA9EAC569 /* PBXContainerItemProxy */ = { + 26C650FE1161C7A094F89284F7121A68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; }; - 281CE6AD6D041FE977D6FA0246BB8541 /* PBXContainerItemProxy */ = { + 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 29D1B15D2B3837B0E9B944EF023C368A /* PBXContainerItemProxy */ = { + 2A986F19F3D6A75BA59F743DF65E9DEF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2389,12 +2331,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2AE51F0B4D7BF0C1A7A773EAD794213B /* PBXContainerItemProxy */ = { + 2BA52A35CA32F98ED7E80DBE98B1A67A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 2BA87C80F636B0480FC09D41CB82927A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2410,124 +2352,145 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 31C3A7F687F151A13212655478227718 /* PBXContainerItemProxy */ = { + 2C99838F8F6E104B4507D1B2E8D39D12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 31F4C93651E6CF48FFF4687738EFBEA8 /* PBXContainerItemProxy */ = { + 2CCE3E79F11EB5F05D306FBE9C020D51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - 3244CD2224F923174971DBDD1394D666 /* PBXContainerItemProxy */ = { + 2DDA8A59AA87442EA1835C36C56EECF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; }; - 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { + 2E0673628140085DC5D6DC85DECFEF05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 346F451A3434C063F95DFA3D8E329BA7 /* PBXContainerItemProxy */ = { + 2F89D43FC9F27EEE87D3D0CE54DEB559 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */ = { + 322C038969155807A6FCDAF537BB6E46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 351CB442F4A44EDC48EF5F8AD1F8EF3D /* PBXContainerItemProxy */ = { + 3296120312383E2FEEF25EBE2E498DB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { + 32BCE27A19CA4339058901C8A648A42D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 36922F2CE21CFB888A0E5EC2F283270B /* PBXContainerItemProxy */ = { + 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 3744D7862E2FE234F12CEACF9D39347A /* PBXContainerItemProxy */ = { + 339A687BEBCC63ACC43DF6C250DC472D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { + 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 39727EDDC5631055FFD2495EB82A5608 /* PBXContainerItemProxy */ = { + 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 3B808640A04F4F3C60648FD86B5DBC95 /* PBXContainerItemProxy */ = { + 359A14B8D8DF41C5606D6DAFFE9DA1B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = C49345AFA49B098B0384C4FA864A4868; + remoteInfo = QBImagePickerController; }; - 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { + 364ED74F7B68BD55D2B23FB069614BA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; + remoteInfo = EXAppLoaderProvider; }; - 3DB470882CAC47793B8D6402AE8601DB /* PBXContainerItemProxy */ = { + 38096FFED39CB35DA1F86976401D2F27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; - 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { + 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 3FCBADE8879009E0D9A56FB37D8F1ECF /* PBXContainerItemProxy */ = { + 39526A737154429A92A749D57C7B717A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + 3BF951AA316115840540594A25A72DD5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2536,19 +2499,26 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { + 40BB41992322CEDDF12B0BE78E8E6390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 441A8CA5B05168995FB5AC472420352C /* PBXContainerItemProxy */ = { + 4131B6349E5022A3C45397E1174A4F84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2557,110 +2527,110 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { + 44F0F2519A7D81002D5D351E72320819 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */ = { + 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { + 457D913E6F9428BA75BFF9701A514900 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 46FD5B6E4DC2D1DC82E17C7B123CD578 /* PBXContainerItemProxy */ = { + 45AE2A3F3F10B1808260F6A1BD148143 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - 478BCF3A67982787EA23A4AD2CFAD636 /* PBXContainerItemProxy */ = { + 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 48EFFB1A0ECA7ABABF5A00CE6E5739F7 /* PBXContainerItemProxy */ = { + 463F70E46A7575A43584E8937355E375 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */ = { + 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 4A3B0278EE276CCFEAAD5899379BE3CA /* PBXContainerItemProxy */ = { + 48F6FEEC600460E8B290E64CA0FC1317 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 4A45D081A487ED808828B17402663208 /* PBXContainerItemProxy */ = { + 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 4B16E47D780F73A3BED9BB9D575D956A /* PBXContainerItemProxy */ = { + 4914E4CEF51AA0728F9DB4ED2D455232 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 4C6AAEE98CD4FB849BADE4BD61B97A28 /* PBXContainerItemProxy */ = { + 4A4EABDB58EE3742F5D7BDD94A1F7A60 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 4C8E320B8C959E51B886C3A315DCD840 /* PBXContainerItemProxy */ = { + 4AA36531954EFABC76F017DC097B4347 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49345AFA49B098B0384C4FA864A4868; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 4E22DD29896ECA0C9E8378D5BE7C8740 /* PBXContainerItemProxy */ = { + 4CF7E56501DE22EDECB64C9B88F4ACD1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 4E30C42F809418E1FE1838FB0605279A /* PBXContainerItemProxy */ = { + 4D9483B6C64E893C6D8B255403D6892F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 214E42634D1E187D876346D36184B655; remoteInfo = RNScreens; }; - 4EEB84A070E78C5C312181100A969048 /* PBXContainerItemProxy */ = { + 4E95F493B1D3292DA5DC0B9A9C289502 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2676,20 +2646,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 50C09519A0BA45CAEC1E7D0189FF096B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 50F5F34E22DBA3A51954822154D0A5F6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2697,13 +2653,6 @@ remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; remoteInfo = JitsiMeetSDK; }; - 5320895412AE202778C3CA34EDF263B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2732,6 +2681,27 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 57B2EFFDF4D8B46E9D5C8BE65BA675BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 588715A57056E246EDC6308ECE55A085 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 58E5216ED8479923BEC4DD1D75CD5A1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2746,19 +2716,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5A5B6C292361603B47084A7AB916FB26 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 5AA450206925FEDF77B06A075C4F713A /* PBXContainerItemProxy */ = { + 5B2D324264AC982E8E70549AB476602C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2767,40 +2730,40 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5DD842DDD04E261756E250C559B4D2E0 /* PBXContainerItemProxy */ = { + 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { + 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 5FAE7DCCD5A38DEF78DC85AFC55AFB04 /* PBXContainerItemProxy */ = { + 607E6ED0FFBB135AD244F6A0CA45723C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; - 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { + 638AC976E5FB68381B400F51F2D2F106 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 60FC5E653D3A0DEBE239C264F1CC8903 /* PBXContainerItemProxy */ = { + 63C3C84BE8E0BAD8D842915A6E7F6E2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2809,6 +2772,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 653BE8616EF0FBDEA5F62D1853200EC6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2816,47 +2786,54 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 65C764149220F31F62DC7DF8CF001E7D /* PBXContainerItemProxy */ = { + 65790BAB97B2A2F3ED0E30BBE0D35A3A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 680EB4B2CA20E3A26C27E93744FF3CDF /* PBXContainerItemProxy */ = { + 659411621C92AF9563AF5F4D3F68C081 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 65A1957046C1BA07E70D8729B523D538 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 6836F08F3BEC5E00D821A33E3F488323 /* PBXContainerItemProxy */ = { + 66C9F8EA9FD5F521B983512BFF6A0661 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; remoteInfo = GoogleDataTransportCCTSupport; }; - 6999A24B8CFCFD9F065B0CD06E93F0F8 /* PBXContainerItemProxy */ = { + 67E63F2C5FD5FBFE8AF0A2E8C2B1E66B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { + 69B38E241EFC3F45E5D7CB372A8DE8CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 69B88AE44C9AB16B07AF99E64691DB8D /* PBXContainerItemProxy */ = { + 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2865,6 +2842,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 6A0F121F649ABE88A339FC671F6ADC87 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2879,47 +2863,40 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 6C209D716E0B5B1CF8558BC9EEA88150 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 6D94BE959501319539A85DC2411EB55D /* PBXContainerItemProxy */ = { + 6B6F2CD6F1EDA090471B40FD9881BCEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; remoteInfo = RNFirebase; }; - 6E699FC20A9B6628B62D8A6385F35849 /* PBXContainerItemProxy */ = { + 6DBBBD7D8C47FA13876FCC9539B2E757 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 6E83AA5BEDDF9CE0CB09EB45E9579307 /* PBXContainerItemProxy */ = { + 6DC23E6184DC91254794D470273D17B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - 6F1062F24CFD2D4674B600ABD915FA6E /* PBXContainerItemProxy */ = { + 6E0D8749920D654008FC83ACE2DBD974 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 6FB4BE11D411335AA9A217821B27CDC1 /* PBXContainerItemProxy */ = { + 6E6F31C7404904CB37338FF9D1EF1D2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2928,26 +2905,12 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 708C87B337C46811638D19B86B254725 /* PBXContainerItemProxy */ = { + 72935BF85DB5DFD13D10DA654BE43C62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 70D5E1883B24C8E34A5EB293B670F8D7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - 70EFF67166DE1BD5C4C932A191ACDDF6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2956,54 +2919,47 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 731883C1A5F45ED09853C5D11F6CA129 /* PBXContainerItemProxy */ = { + 72ED0B5B27E65A915859B01D0DDADEDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 7483BB9168223C1F46199F8A75C668E4 /* PBXContainerItemProxy */ = { + 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { + 7385D57E0D6B908B9FCFA58F656276AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 75B647DC3A2FC7A0DC0EFC08CAA5649D /* PBXContainerItemProxy */ = { + 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 7674E98A8D7EA1AB92B98F6A15466E4F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 76EF96F87D4CE35FC9889CA0A8387ED8 /* PBXContainerItemProxy */ = { + 7606ACE747D0B9277E50C81A7F417ED7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 76F7C72C4C32B2136E89696576BB5DE0 /* PBXContainerItemProxy */ = { + 76E956BD39B1700F4FE1D2A76280F2FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3012,13 +2968,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7AB08AA4B9A205D61636649A1DF06D2F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; - }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3026,19 +2975,12 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7B2510FDAAE6882DC6A22E26120DF33F /* PBXContainerItemProxy */ = { + 7BE619E5B283FFFB50D88F6E95524F0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; - 7B5FA0C6BDF908F2741F671B48D29C7E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3054,12 +2996,19 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 7CEED9E7E388F29A5B72342FBFC499C4 /* PBXContainerItemProxy */ = { + 7CFF68D0A201981A39136FFAD966A55F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + 7DB66960FC601F6E99C14345F55A9D94 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3068,19 +3017,33 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 7F0C8BA205CDCCA50C905295C45878EC /* PBXContainerItemProxy */ = { + 7E567AF9F6696E9BABAEA18B0F543692 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 7FF01257197DF67859CBF36B42E16E57 /* PBXContainerItemProxy */ = { + 7E9C6A5E27B6C0AFDB34AA3191DBE107 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 7EE3FF58C79408BEC7B08E7853FA8F5D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 7F0C8BA205CDCCA50C905295C45878EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3096,19 +3059,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 824E303C82147EA33BAD466DFEE12819 /* PBXContainerItemProxy */ = { + 853BEA7545F4C8ACFE2BA8F668600F68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 85D6FA57B42C1487996A9B1B542248F4 /* PBXContainerItemProxy */ = { + 863E41BA7A7F1117440E8FBD60D9AECE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3131,82 +3094,89 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8A5252C073088E8CE0DC5DDF4F31EE6A /* PBXContainerItemProxy */ = { + 887B04DAF0CD700600E4B5122BE0481B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 8A73E44BBB44EA1F56E63ACFDA0324B8 /* PBXContainerItemProxy */ = { + 888B4FDC61D8E9341CD9F82D70532963 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 8AFCDAA1A8E47C4A9CA578794B1967F3 /* PBXContainerItemProxy */ = { + 8A59BFC9C583E87EAA2E6B8065372556 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { + 8A5FEC65150A496438EEC1617CAFEDF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */ = { + 8BC80843B5C0C73400CF4BE181236F6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 8DF3F5DCB9BC4EA628981FBF0D5ABF2D /* PBXContainerItemProxy */ = { + 8BCE02FFB3C5D82D1B32DC17EF5593F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 8E7F59B6C136E6E4229A7E0F82418B4F /* PBXContainerItemProxy */ = { + 8C57F396D03163B668A11E7F0192FD5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 8EC3B351E5CA7717B8BDFFFB61F2E1CB /* PBXContainerItemProxy */ = { + 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { + 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 90182E61D61A7417A1FAFB3081E63EB0 /* PBXContainerItemProxy */ = { + 8DB26D32659CB196DB51A1A34156ACC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 9035238607980C27A2E266E0C07EA375 /* PBXContainerItemProxy */ = { + 903F3233CCABE0A16568DD6BBE9F3DA7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3222,26 +3192,26 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 94940F00FE04BDDBE0E65D5C6F103D07 /* PBXContainerItemProxy */ = { + 931D5543FB51DE2A6D5247C6E4D46EB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; }; - 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { + 939E7A1046CB374F8C89A0A1686DD850 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 9669815F75B8D4E0E7511655DEA69FF2 /* PBXContainerItemProxy */ = { + 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3257,13 +3227,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 98229243C7BCF99AEC1BC2C56F1A9B87 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3285,6 +3248,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 9A6CE1E805A3AA61BCF656DB9F9561E2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; 9AC1F06D86A0940CBEDC84127390E31D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3299,19 +3269,12 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 9C48A44709EE294C16BD21F468273594 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 9E4B59DA48DD48C7F473B55C2C57DB1E /* PBXContainerItemProxy */ = { + 9CFE594A99A5A9EC92C9B9222B637BE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = C49345AFA49B098B0384C4FA864A4868; + remoteInfo = QBImagePickerController; }; 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3320,47 +3283,40 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 9F3F1684A7AD32C8CA9DC0337C9038C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - 9FD4CB5B242D0DB27D64EA5B3AA1D23F /* PBXContainerItemProxy */ = { + 9F415156E5A2C2E1EC66C613001CC006 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - A027648A383E7F28D35C68C19FED9338 /* PBXContainerItemProxy */ = { + 9FAE2CA79291EAAB2208033BECD5C0C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; - A03B2FD2E022A65A51937697A5F72B82 /* PBXContainerItemProxy */ = { + A052E15DD70BD9E2D9948988BDE7D2D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - A0D7EED39A6CFDC6C4C26DE097CB4D72 /* PBXContainerItemProxy */ = { + A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { + A28FF71B6D790588E9ECD274F6E2C459 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3376,26 +3332,19 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - A46E0910AE9038476B82E4089209C311 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - A47BBAD2A8C878A6F35C1459CF8A36D2 /* PBXContainerItemProxy */ = { + A4DB59DF3C1258519A58F796169FDBAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - A6053A2B8E5878BB1AA83BD0A05442E9 /* PBXContainerItemProxy */ = { + A610CD42155210F6D6C0F89853B4E104 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3411,12 +3360,12 @@ remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; - A88D3CDF0C397BC041BFFD9F69DEC502 /* PBXContainerItemProxy */ = { + A8252907A5DB492F4067B22F6CA071B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3425,12 +3374,12 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - A913736EC65CEFCB71EBAA6C25832B3F /* PBXContainerItemProxy */ = { + A90B477E5E770A5E8A723BC38061B91C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3446,6 +3395,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + A9F14AA672F579B6CE68FE7180E24425 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3453,40 +3409,40 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - ACDA983A7FD92733E5ABFCFD31DE733E /* PBXContainerItemProxy */ = { + AD20E884F81A84B9953448DFC846440D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - AE390AC4B9C261709A7788D8DA1864A9 /* PBXContainerItemProxy */ = { + AE7D6E027CD712F28C9959B5136593AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - AE7ADA6EDD53022DF5D8B342ECA06721 /* PBXContainerItemProxy */ = { + AEC4CC76F0D1BD997DC39487469EC609 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - AE98A604CFAEE90B22CF41E34610E018 /* PBXContainerItemProxy */ = { + AF19E89F793A537D6E53E375EAD68EDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - AEEDA574E8DD42C8F1E79D2E97D9D2E6 /* PBXContainerItemProxy */ = { + AF4C42320C47D13C65A10E8E48CA3ECA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; AFF74AD800513E8ADF86A29EA37DB955 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3495,19 +3451,12 @@ remoteGlobalIDString = C49345AFA49B098B0384C4FA864A4868; remoteInfo = QBImagePickerController; }; - B0802D316D13C7C3EF0EE74EFAA92A01 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - B102DC22200816F70DF4E5747A3BB60A /* PBXContainerItemProxy */ = { + B060697673EFB5CEA3DAFC3A5BED9887 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3516,19 +3465,19 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { + B3F767C57D4CD142C268D2D8E8386D2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - B41B9C41046C19FC194691845812F92C /* PBXContainerItemProxy */ = { + B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3537,19 +3486,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - B50EECCB68BD0A30F1541B6DEA079A52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - B53B863CE7C121A375684313BF48804B /* PBXContainerItemProxy */ = { + B4D1DC1D87B27262F538757DA60FAB65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; B59CFF3791DD86ED3E948C16CAA52C6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3558,33 +3500,33 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - B5F83F05DE6EE525D804C3A916FA188A /* PBXContainerItemProxy */ = { + B733DCAD61F1D2E8DF4E9A5F07F6CD79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - B70575597F7204E053A335595B90CD3B /* PBXContainerItemProxy */ = { + B7AF12EAC59B26018D9EF1CD9A4583B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - B79580E088309AEDA1EAAABE28F66D76 /* PBXContainerItemProxy */ = { + B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */ = { + B7E023F06278BFE603B9D59472EBDD3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3593,6 +3535,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + B952EF7966471C6FAB472A9C1CC38129 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; B9F6134AA6CD3820CE35B60CB340E91D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3607,6 +3556,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + BBA1A90899E814F46FBDE94880F13E47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3614,12 +3570,19 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BC49856C3C40B2023D07422A4DD1C333 /* PBXContainerItemProxy */ = { + BD11BF29418FB5DED9D436663EAC04AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + BF29A707BAA69746C68FC6247E559B43 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3635,13 +3598,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - BF79C498C99E201CFC243E52FA4A59C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3649,19 +3605,19 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C13C6625CC7B81D4041FD0F0F4D790D8 /* PBXContainerItemProxy */ = { + C141DFEDD55048C5470D6A0AA4A92D23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - C1A992F4AF64CC2F4DBB1C4BC24D061A /* PBXContainerItemProxy */ = { + C2235A27F5007B9C8E32C82C1F5BA18B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3677,26 +3633,19 @@ remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; - C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - C65796CB4E03DC2F755A9F9EFB10B506 /* PBXContainerItemProxy */ = { + C5F2DEE55B252D17B96E97EE57C863D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - C673DE5EC39C743E1F33151D7500064F /* PBXContainerItemProxy */ = { + C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3705,12 +3654,12 @@ remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; remoteInfo = FirebaseInstanceID; }; - C6C4DC47A35428DD89F4C65FAAFBFAB8 /* PBXContainerItemProxy */ = { + C7234391A2D448B979BFF7701270FC5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3719,26 +3668,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CA0C03BD502C8BBAEBD2505A682761FE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - CA161BE260E7AE3C96CF91225E255579 /* PBXContainerItemProxy */ = { + C849ECCA6DB63EB5946262809717B066 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - CA94FE56C811581034B0756FB54A2068 /* PBXContainerItemProxy */ = { + C8A6F6BC4D027E691B20283D2CBDE12A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3747,13 +3689,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - CAB685DC2A676917F2C27EF7E0FBEF02 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3761,13 +3696,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CC7CBD301D65312E6A18CCDC6BEE304D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3775,26 +3703,26 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - CDCF1E729A9C3F5263EE7CCD315F87E1 /* PBXContainerItemProxy */ = { + CE3F526A6E8FEE984C13CEFEA5F14CC3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - CEA8AE4D1D363E8C6D80A1C511239FD8 /* PBXContainerItemProxy */ = { + CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { + CF89074A6675624B726FA4D84C994E5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3803,12 +3731,26 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - D160BFCABCAC06E37EF5B77DBD3B3708 /* PBXContainerItemProxy */ = { + D0AC3DC5ACD56608863F72BC86F892BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + D0EE951EAD6998DFDE5F28584F63E951 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; + }; + D0F15BE0445FA82710CAB0CE77128DA4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3817,6 +3759,20 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + D29F8BF74B57EE0A574C7E3C323C19CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + D2DAA1CE9BA689CBB86D032EE610AF1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; + }; D30AD787E43DE3AC8E24B315F185B31F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3838,6 +3794,13 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; + D593C54472FEFEE5CA8330FB9C07D0FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3845,26 +3808,26 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - D5F20AD3AF4DD5CF6A949DE6CFFC8859 /* PBXContainerItemProxy */ = { + D76EED7E57A8AC867FB994DBE71FF18D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - D68FBA9E731638BD71BFF3EC0762ACA6 /* PBXContainerItemProxy */ = { + D83A65BB197390BC217AC725BBB2A09B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - D7097650ACC15693773AF21FD8A22AA0 /* PBXContainerItemProxy */ = { + D9BF9AA4A049C2B97E28A7A37A8180DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3873,54 +3836,54 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DA285DB53CB4BD6EC3F3E4D2C17C44D9 /* PBXContainerItemProxy */ = { + DA12705528BA645F1EB99675AB21EC65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - DA3CCA0A4A159A197C784309AF8BE7BF /* PBXContainerItemProxy */ = { + DACD7A76174C99D62A0ED52B1AD3A06F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - DADF91888AE65CFD7E3A273384F2287A /* PBXContainerItemProxy */ = { + DB157DDF69F49DD233A231D4FA1C4D20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - DB6C2E45526E03612CCF7F48FAD5EDA4 /* PBXContainerItemProxy */ = { + DBD7FB37F3AAA5CE9BF78B349CDE45A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49345AFA49B098B0384C4FA864A4868; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - DC04D4B8C57E322CC7834C7386FED33D /* PBXContainerItemProxy */ = { + DD56B73E7E87398AB92815DB75CD081D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; - DD56FB525C8EFA9D1975BC6AAF08DDAA /* PBXContainerItemProxy */ = { + DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { + DDEB10F14071A3A30BCAF1C27335B185 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3936,6 +3899,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + DEE3FD7474B6EFD487E0853871BAB007 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3943,26 +3913,33 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - DF868A85E14C1B8BCC909AC95F683226 /* PBXContainerItemProxy */ = { + DFECDA4DBABE855EC64A242A800A2FF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E2B9E9F4D3734FA76FC4CAEA06FA044A /* PBXContainerItemProxy */ = { + E0AF3E938093ECED9084C86F958033C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - E3968F6471BC7F7E153FD54C3DF02487 /* PBXContainerItemProxy */ = { + E0F8C5B0EF2DDF9E46B284D7E297247A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + E2E3D33DDF54CE98E29BEC1445D2E512 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3971,33 +3948,33 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - E49A1DA11E031B17DD365A75C36C9A92 /* PBXContainerItemProxy */ = { + E5648A80504808A8B0D99F44C076AD03 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - E4D2A2A32B031B9942FE387A27B87EF8 /* PBXContainerItemProxy */ = { + E68C96015B7ED7FA617DCED9A5AF11C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - E5164F3AA554D0AF23F54C9472FA676D /* PBXContainerItemProxy */ = { + E6ECEB03029FFF043853C5AEF5D37401 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - E5ABFE9A5185008CB914566E2F333392 /* PBXContainerItemProxy */ = { + E707FE2EA10658DE58AD98C77738BA93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4013,27 +3990,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - E812D84C09181828D3BCD32E827D9A03 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; - }; - E88BFB660FFA4A20034D584C1BD2D3F6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - E8B6B4B9C39D4E8DDFE0FF9C6A6130BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4041,12 +3997,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - EC4F00EB2DF8136CA4ABB8F3EAE009FF /* PBXContainerItemProxy */ = { + E9B630BEA98303A56CA01C5D8C4713EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4083,6 +4039,13 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; + F12B36ACEE8A62C2EE3F282BBD11E2C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4090,6 +4053,20 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + F1721601C5F8D6F9553BBD7B8BB9E7F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + F1C1E6D53DF54035DAB5D6D1D49E22D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4097,6 +4074,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + F2D9ABF57B5FFECB408243177D2BE738 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4104,26 +4088,33 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F42D22647FD2BF1CB74427F3DC124B19 /* PBXContainerItemProxy */ = { + F3C9C7F35AA5270219A8F93BE6016194 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { + F44F9358EB465CA1683C405C3AEF7CA0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - F58A5073982F5CA5207B228208B35C42 /* PBXContainerItemProxy */ = { + F4E33676AD2CCF769C848D17F582A5C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; F60823557509BCBAD04769F2DE3B592E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4132,6 +4123,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + F683F40FDF11324EDA20B4171C558FD1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4146,12 +4144,33 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - F891AF176138F0F40423FFCEE86AE8D4 /* PBXContainerItemProxy */ = { + F852381E133218FE64E857E8E42C0F3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; + }; + F8FF8F00130B90292C25FD5A541C8256 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + F9F46FF004780C9E9089E597EB38469B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + FB47B238FCCF94E09F879F2A2C7DE3CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4167,2214 +4186,2236 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FF1AF1C99CA79A8E6F7EF45E4490A54D /* PBXContainerItemProxy */ = { + FE6638491CDE98C2C7FB03380605B721 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - FF906DBD6B53903FD58E0D49FFC2BB10 /* PBXContainerItemProxy */ = { + FEB99FCCC901EA9D72C9E495C0052459 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + FFD43E184427B6EA9ECC6F4437AB219B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 0048D36470E53B5FF8A46C8A01CC8EDC /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 005BFE8D450B842344F1001F99C8B120 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - 00AA5F5D4F338AAFF3B7D3901B95C5ED /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 00C5785681FEE30171D4791232D6B033 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 00DD1E17FADBD9970827C980A7A23A11 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 00ED015520B1A5CEB93B568312D4B0E0 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 01060FCDBEF265BFA21F91667CE83154 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 01089515CF71EEDA6B00D630FC8A9EF0 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 010A9585A33A6AEDFD199B7698A58351 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 01112CDA9C6B4D17A9BFBD45BBF9D498 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 01165657A3FAD6941F11451F5E5226E1 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 01218DADF8441BABFC26F82C320D15AB /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; 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; }; - 01303812247D9D0D9810E6E57C5F301C /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 013A69400B9028E3D0F8ABE2803749D6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 01479C2645C082B6B80D617D5F01F290 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; 014E45AD189B1336120DC9E8586365D8 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; - 015105489BE88D6B7A958B5FC40AA949 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - 0175CE46F11CDB1ED332E8FB610C328F /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 019660E9880963692A9DD654445F12B8 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 014E853B9D025C9AF4A4CFE27B22865B /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 019C0E800661744EF0D3438C0676B8C2 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 01A2F49418B97F60147D903753995625 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 01D3BD7C2D742F77CAC96646E5979822 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - 01F351481C4C4AD52E34BBA059E86E94 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - 02267B6764982AF7929F445941B9A3DA /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 022BA8466297F4D9B13C5CF55FF192E5 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 02511183F0809AE5BC72DB78870C820D /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - 02597CDA7BDFD060932D57516110A586 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + 01D908E1D8B10CC726356C6CBA99FC2D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 01E85D58D25E1A8F4B47A3ED7BEFA4F6 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 025B1FCF58AAB212E448A0BBD58CBBE5 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 025EA157DF8DAF5E7622AB672CF7DA28 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - 02625289E4AD50D27CB80B7A01176C6C /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 0282E5FA3AC27F85124E41667CAD55F2 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; 02914C56F64CA92183E30842641FBE0B /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 029E49944B031B0ACD51A3E63B91B74B /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 02A556EAFA7A6B7CE43E4E2D6F94FEAC /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 02A7A9BF12845DD2BB38B8AC584F82D0 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 02B0ECF6D038A17BB0A76F3FFE3BE5EB /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 02E1D4C0A7F385C24A1B699EEB7C119A /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; 02FD33521F8002162046ECF724387EAD /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 03002407081BA5F21DD29F403C78E310 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 0305F3DD1F9B74004C93B4DC8704400F /* 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; }; 030C26EC65F7BCA58C6A85021C58C638 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - 031C605D695A4BB6BA35BE8A3DFEA8C2 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 030EC38CDEFF41D68FDBC8DAE691C72A /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 031D10D05273D16F9FF1CC69D89F4737 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 03401FAFF52132A91A038D9A41DF9297 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 0371827EC613DDDE6E2F523FEBA8F0F5 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 03741CDD38C3E8BE05FB21A3997FC0DF /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - 037DA8E6EE514A34E3C6C04BCE858F09 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 037FB23BB574BE0B3C39E431D92A9646 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 03A4C7CFD1888902EF175DFBF0A84D81 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - 03D4C4833101030D0CF0D412FEC21E68 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; 03DB14D6500613E1BFAA6C4D64877145 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; 03EC24014F9CB938280AB34C3312805F /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; + 03F11CF333F81CB8CBCB9D7C6A425155 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 03FA6CF611A8F42EDAB70BE1C5C02805 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 042DB439959923C1AD80F32ACAE3A5D9 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 0449A871CB5530320BB50C89A08440A1 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 04697D895FC603B0AE96D229B1C98A02 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 046CED75C001E550AFB9F94D53222FF0 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; 046F3FE1986F3CAB8C4EECAE504FD06E /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 0473533C419D5E3C0DF45DE92668F3ED /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0492EC25173E684A7BF9642E60FCB955 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 049EAC666464FDC8A25C8974CD848DB2 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + 047DDDE0E9AD61AC03E3207D9D8A05E4 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 04957F4510C9D58E0120F2B232B0B1FC /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 049A683B5A422FAB5B9E63522BD0324C /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + 04A0B811CAB29369C222BE3D98E2DDF9 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 04A3EF2DF6AE2A810E25A7B56F994305 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; 04C3B18339DD82E677853D0FF7F725CA /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = Firebase/Core/Private/FIRDiagnosticsData.h; sourceTree = ""; }; - 04ECA724DB9F5B53FF34C132300B76F4 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 04FE3D64D1C7022838F5216CAA22416C /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 0516BA5C785D1728D4FB7BF43B9AE36C /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 054CA69973DEEFC863FDC9D9D7F0255A /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 057103BC1D4CBB368BF4ED05636BBC26 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - 0581318D6A97C9CF89ACDF1103209FD3 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 05BC9C4DE68D5443A3FDA830FD0CA2D5 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 054292323642FE11ABA159F06B04F67B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 05451E914B53EF1655AC2ED22B068CF0 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 05B2A89D59FB73FB8BB0713988F4939C /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 05C06B6406205BCFD668DE5D8F54A96E /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 05DC4496E37AD1073A68EEAC52272B35 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; 064120011AFF24AE097CA29C2983ABFF /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 06E89AE5A60D35CD6E9119CECA641AC3 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 06ECD4866519E509B39FF4090E2C9C41 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + 06539583B1454F6E72D06B88BF48A43B /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 06595D20C451CB9C2F9AB7EDDD7A7C95 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 066477951B48CE2421C5CBF1DB14E431 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 069E16C7D5116FD35DA825A786AB6CCE /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; + 06CB3D40713972846A122E52966832F4 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 06F614576935AA84BD0BBDDED3E4D8CF /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0716E3962E07D8D9583DBBCE3AA19481 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 07268468A808DFF75FBC6A255EC9F0BE /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 0771C6336639E1AD2E0DFD8D845FCE98 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 06FF23DBC6702815A7D141F51674FF6D /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 0776B7150119D3FF69668DC9B5FAE7FA /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - 07AA302EB838053172E64E85842C57B8 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 07BD51791FF14F83F4B4155C0721655A /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; 07D6EA4E2552CBA661742B411927914A /* 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 = ""; }; + 07DAB8EC81730CD97DB2B6C1AA675CC2 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 07EBE9D2DCD42DF4A6965813483257EB /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 08036CD9D5C61DBC78EE61751B30F309 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 082568B8F74F0C1E8F6AD4667EFE3326 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; + 082959F2B8E4426107DFD7A58A2F1A2B /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 08323B44348E91C55325CF7C2C0C8140 /* 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; }; + 086961721FA7185894FA0D3B18A38BA7 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 089EBBA93BE1805538484C172DF301FA /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 08A87AAA1C5BD52E2FBC34873666C749 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.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; }; + 08E89CB7B556BE3C15C57410C8D145EB /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 0902A4DF2D5AA54E895AD57345B34929 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + 09070D0B74632AFFF5B70770E9EBEB18 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; 09163101D9B7E00235E192BA91D25025 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; - 0934F23676656CA6E9E4B183AE71892C /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 0919CC701D5F76D8506D5E6FDC0C64DD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 091ECAD49A159C22516EAE80A0659275 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; 096746B6A34C79B2C2C70DE6137E81A3 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; 098BDD36233552115AAE3CAD9B95A204 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - 09A8C6CDE1AE2B0E817C47F53467B416 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 09A9CD6BF3878BDD484FAF1D0C88F75B /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 09B7E564C956BEF94727167D7B1605AB /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - 09BE3D4D922399E13F4DB9DD6E84A795 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; - 0A21C97BF219CCE6523969073E46B773 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 0A5286426CD2BBB19908ED46BB5202F3 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 0A668A088D98CBD06FCBFCFA3AA2A8D1 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 0A695B08EA87FA1103D656D40A947067 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - 0A82C6FF1B2D9D9CB4D0445F8A61A9D8 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 0ABC5A7FB631317834AC67F5AA871C9F /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 09953BEABC4D27E0A39F52882C8BF629 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 09A2AC691820BA94DD0F244DB6D6E786 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09D0D29F8226040107B7428A81702616 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 09DB2FB75538C0F7A31861C00809F0CE /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09EE574DAD4B7AD8E9A5DADA2E42228D /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 09F77CDD7F7A0108AAF824CA344D662D /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 0A03D1A05B65B61B693BF222E5CAB339 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 0A6529DC992977269D32EC6E31AD7BC1 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 0A718148264A5FCE75ACD866F4B40602 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + 0A75E4C172CDB1EE77C504C1284D4CA1 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 0A7740F5C04592BE2D469E4D7225DB5D /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 0A964CDCD9BBFE2A22B9B062F46E3611 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; 0ADA5FFE88BEEFE75087544EF53976CB /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + 0AE2390FAF9D6C096BDAAC31A97CC854 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 0AEB4E96DEC40AE7082A21584B0293E2 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + 0AF7D6F19831A2EAC34848A9705C9715 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; 0B1D7876432442870E5B38CEED78B5DC /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 0B2652A7D5CA703524DC2E8EB96A11A2 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 0B35015902DA39F691EDE01D75E786F4 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - 0B3C78CD2543A1CF6729C277106A9B25 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 0B3E21EA3C6753D184118FC7057C78A4 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 0B625BEC14900C73F42A045E4443F97F /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 0B6AA6BED7B91DB529B424AF84064C6B /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 0B6E647645C49AE8A5FBB9354CF640D0 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - 0B7533902582F0897D80E9DB3E7F3415 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 0BADCB78F0AB6C960985E2CAE7F97A45 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 0B66034AB472803832C9006499BBB4D7 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 0BB2579ADEE7C759DE9786F9C48BF1B2 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 0BC0E242FDDCF508E8D27DAE5915C5D4 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; 0BC88F2D8A0A91D11E8A80D44390B6D4 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; 0BCD2E678C2D94CA5B375DD1FF14B2B3 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 0BDFD803D35E23046615364556059747 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - 0BF80050453E99EB51AAF86B96B85A69 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 0BFC8AB78F4EB413F1E0B9D0369C9F0E /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 0BF1E9074E8FE2966BF6BB750060C419 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; 0C05E9BF59105830FBD1EB174BEBCBC2 /* GDTEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEvent.h; sourceTree = ""; }; - 0C10297C7F04DE00ACECD1B688AC72EB /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 0C3661D9EEDCC436C5FDC69683507366 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 0C361AA60E60452354E55267A33BD6AC /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; 0C54CC7F5A51B5BABD015413DBF96E7E /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - 0CC69CA9673723CB33BD74FAA3AEFD61 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 0CD130116A699DC621AF848D5D8E2397 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; 0CE1DB3BD42FB01C6A229D7E803314EF /* GDTTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer_Private.h; sourceTree = ""; }; - 0D0A6E511A6A98667DA1F0AB0C169AE3 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 0D0BD146BA1D4D5795E01309BA0E2F9F /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - 0D15A3F44298B0A59B0F8482CC241374 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 0D335854DE756DEA31C32D0B9E5A77BE /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0D70DFBDE9CCE7847F3234A7F513A23B /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 0D7A9380AE8FEC9A05B657440AAAB8A6 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 0D848F68395B70D6462D3770923C28EA /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - 0D8644D8314E793C80A1064FB00B2CA5 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 0D8880D941A7943D0B5C4F8D3E73E65D /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 0CE44279443FF42C9A8AF1215FBB93DA /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 0CFC5BCB4620933A2A03665A8B4317C0 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 0CFD130B2A73F0FB43AB17A23FB6F399 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0D064EB54D8B6C62A259E4FF78DEA4A2 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 0D2A15030BBD7E453F08CB2638712216 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 0D890595FF12C9DBA5FCD00F8D7B716C /* GDTLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTLifecycle.h; path = GoogleDataTransport/GDTLibrary/Public/GDTLifecycle.h; sourceTree = ""; }; 0DA548026BC294C38F90EBF3902F9658 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 0DFE3F59A8D00D12B0D1D17C592A8ACB /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 0E1B7BD37A18BB8812DCE5135F5A3545 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 0E298623C8113EDD2F7DA73268BF8949 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 0E445C509F373BD6C5EF893C17883771 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 0E5F185B26ADE4DECC44F2934DF3EC20 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 0DD3B947B1CC3C77423B663874CA0A2C /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 0DDEBF412DE7E3ED85D2FC7E5E36A457 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 0DE5E34FE8EE79376EB837070EECF228 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 0DE5F0559E7ACA3A6996EADCDFEC7DAA /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 0E01ECF3D95716CC76C2D8D8E6D7B3DB /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 0E2DD79F3185FA2FC168B3994A11E0CD /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 0E31F1983D3D558FEAA109894B20BA5A /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; 0E60D61EBFEECAC2BD93B44484272D2D /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; - 0E6EA0D4D0F0F3E78CA9E164E2F117F5 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 0E74D19C9120F09C0EBFF1FD1ABEBA28 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 0EC6E6C4EC9FFBFBA93007ADB224A492 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 0ECF8CE8E45587754DD6CA2C7A374214 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 0EE4E45B140F7B38EAFA76B778C29AD6 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 0EEC72A4F5EB0A672AD4A657C3D64FC6 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 0F41462905F88C5D7E83A7C19E974D80 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 0F49FE03700918174AEC164794F2D225 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; 0F4D24EA40409FA406FB89DC4839379A /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 0F5687DABA366F02FAC8DA5394E6C9E3 /* 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; }; - 0F61B6AEED9503AE65D497C66B491B1D /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 0F71403F7DD62BF20974AF873CFC1BE8 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 0F872C499647EE5E0A3FF68004F104E3 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 0F8EFB6551B10AE3A44E03B9462574B8 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 0FB50A378E098C24E8D3B9722246C460 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - 0FBB2A83EAB98E842AC78F6490F3FF33 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 0FEAFC2D29194943D6A039D11D4011FE /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 0FCC789D18CD3F2D2461A981CA0E6D7D /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 0FEB5FD7C2D6CF90A766E97373612019 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; 0FFA719374BF9C3DDDEB36F059761932 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; 106E85F647AAB3B051C2E5458E35F30E /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; + 10934ACE7B15F5AC3D02CCA4E7AC8A5B /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; 10A429E17C3C53FA1DE5F1B6805ACFF5 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 10EED0B031833026C6C3F61672D8502B /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 111BD1D6CC902B06AC43CDB6F8EDB137 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 112FE6CA274DE84DCC9B32ED070D75DA /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + 10ABDC36FF69BA3A8700170692F89B6C /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 10C411D3236565B3A06B8A05735867DA /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 10D8FE86334A54267A0944F117EC32EF /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; 1130E17A2E1A50713AD5AC9021C8C356 /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; 114BC0FBA8A47809F19D3FF249FD6EF7 /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; + 11637996F6BACCC679A5D7D7556DFBE7 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 1165BA585F1EE5B96D006BEEFE1AA65B /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 1194A785C0CF1FA86D666502DEED9369 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 119D49631AB3BD4A36F2818E213042AD /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; - 11A42EFC34B1173E3B36A2387E063B15 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 11E7E6E3B304EAF2808428C08C4ACBD6 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 11D6BBF053D543F7E540ED8C92265DBB /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 11DB17B398F89556A128A8730636AC9A /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 11E570372D9B3EF0DA21E72D3FA1D03F /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 11F1813A9D674B4CA2B5BF846AE4A838 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; 11FD97EEA3A1A505C450598EE1B29380 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 120AECB355307C9E4A7138290743C815 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 122A57C379254096DB8E5E734A106B2E /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 1264F013A1BF0B5AC5A2C3E4D5E61DEE /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 1284BAF15F0362B14FB97344398DD252 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 12B1EEBB9725647C1825930EC50BF172 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 1273B2075324AA5A35ADD3EEFA93A812 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 1278F6FD1923201980C67CE796DA9DD3 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 12B978AEF9C4D9F952777FEF0C025372 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 12C04C08B1FFE034059D47B28F8BB03D /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 12D6DDF0809405EC84AA186265E7476A /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + 12E77AA9AFFB6520D1CFEB0C71E7C2E4 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 12F29C81F4D65245171AE6B575212B64 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 13255737D68BEF5CA5207F73B9A6C42C /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - 1325EDC71335CFBEE0E5DFF41E89867A /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 12F9685BAA8BDA1D4DB413B7DEC5918B /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 130C84BC7008CC3EC658498950644BA0 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 133155EAE646F5287D3A95970889BA11 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 1355971F5ED604D43C24464B23D2E0A2 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; 137C6528127CE1430742BB927C88B16A /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 13996B9F012212A5316ECE131DA1F4AD /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 1447CAD6AA2050CCCEEB864044085161 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 1454EEF0AE1533254C943C167301BF1A /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 1386113097CC1FDE6E2557A4518C1268 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 13AD44A211A5269ACEA88CEC0012E3B1 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 13B47ADCACBED842C655D8CFCF877CD7 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 13FE5B7DC64A6E9F42C8297AE48B1586 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 14128ECA05432211981258AECD55A721 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 14401E8417F07EEDB7B93DC7BEB6249C /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 14572E0870D2BC4E6806D5758D9D2F46 /* 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 = ""; }; - 1460889D90DBA75997B55F518648FB7D /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 14634337625129A3A939C1F0E42B21F3 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 146E8432115267B246B7B17308A7D916 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 1458E4E4EAE7B330DD86A82D306C54E5 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 148A15A5F1F22C46BFDC54ADCD4AB08B /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 15640CBE61329EB57ED2567362949E7D /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 158B735A90C027CEDA34FBCAF69BA419 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1498C709C92B779078AEA950ED04240E /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 14B5DBFA2F27AE12D683695CC6A0EDD3 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 152B32D40B0A4AC5A72EA9301B83D89B /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 1593F8F3AD3E11B7F6733CCCE3202DB2 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; 15A15B78AEE842C9C76037B062424F3E /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = Firebase/Core/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; 15B09F7F9121E23D66CFB7EA2FDF3E2B /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; + 15BAB140985DFC9F32ED8967ED36A825 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 15DA5644A3908F5FDC2B07D97A66CB74 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 15E7E201770E0C51DA76600BB01462A9 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 1613165AD3D38B77EBDBF0EA8019FCE1 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; 162A8DBC37BC0C03DF8FF66FAFBD9F57 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; 162E52A16238EF44E7C37B27AF498402 /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; - 16492D71EE665ADFAA66E1A15E7116C7 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 1662483176957A52BFB23EF9FCB4AE55 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - 1680E842DE3EDAC364EC755FF7E627A6 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 168D8C9A5B4B6F4BDA3B81378B113350 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 16F28F0BE74BAE1DF1601F547002E5EF /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 16F8AD7EFA7628FEF5811E59B2F1E610 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 1696B78BB6DEFB2287C1F5CC1327796F /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 16F8FA0FC12A3715FA4378F662947DC2 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 16F9DA7E073B94C4185D905556E88155 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 171B8AC9BBCC6BA3BD06559401F683A3 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 17217E3E3687E8FF14776B035C346D4C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 172BC77A90390B1225883519C2201917 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 1734573A1FFAF648D3E038462767F3A7 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 1706B15B1ED8A8665C6596CF0F53293B /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 170D4C06361FEB7268E6CD7CB57E7C16 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 171F3044213232C08FC3D7D6AC89900D /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 173C4589E341A31CDC9E01A41673AA33 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; 1741A8CA80C4156C048BB246552776BE /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + 1748C2FC56FE6C226D70EBA6787B709D /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 174B066C4F232B044FD1B4BDDABE8252 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 176FFAB39B2D6AE5A1171AB5ED0CD3D8 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 1797F31304BF85171448F2A45CE72402 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 17815C864571987A0F2F6E43990868B4 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; 17AD7950C914DB0036C86CB9BF7EBCFD /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - 17E17BB23627E1BA02957C5B5995D92D /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 17B3808D010EAE5E4DA1D386D6CA94D6 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 17B8F9A5CD916AFF017F03D0B58D705C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 17C0B954E85FC75B7EFBDDFCB4506E4D /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 17EDA0CB2B36DDEC0132A8257FD0A4D6 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; 17EDB1822E6F8061173003D435EE1975 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 18036A0DD7146828A82C97DF9FB2F436 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 180B3F3B2CCBC0A1899AC150C2304993 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 181122469084C654B646247B9E0E4375 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; 181C1CF9C0D53241BAE1B63565BE4F81 /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; 18261C8AF3E287C1D6F0EB3441F95FC9 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 18643D1C0F9D8AB0C1752850CE848C57 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 1827F1127DF158706134416FF4B6A087 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 18327D94E3FECE2CEC5A97BE593BDDE7 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 184580D07CC78549E4FF02C303DCCE37 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 1850CFFC39379B889F6CC5008E75C942 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 186D0657010FE8E3BEADBA1E74FF07C2 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + 1870B42FA1BF7FABF1ADF818582505D1 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; 18773384DB62FB17C00795EBAF1F71D7 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 18A6599B5E7845BCD69061F3A303D97A /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 18C01916E129FB5F985A6A6B1A8B3563 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 18CFA87777A70CE8A32B608C88B50AB5 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 1911B46424E9C6A3CF5DCB67D1BDFBB6 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1888F24E422773DA2257A17C200D38DD /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 18A0B7F3E92DA701681D15C3E5BE230A /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 18B5C0F19A0E3BEE3AA456024193C320 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 18FAC1774558F6AA1A4C383E707F9678 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; 191C7A61A45A4E62643670F51F090822 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 1933D9B70FA4266F8FBFB00C762F6D24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1941D4FA114443ABE1991F5E16908ADE /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 1949DF8F8BF713ECF190E90BB7389981 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 192B4BFD2EAAE2631F266302B554D878 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 1940DD790D06E2D31255DB265DFA08AA /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 19894FB1CFA58E290D9BE9891F271CE4 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 199B7FA4EFDE4249BFC480799FEF2CA4 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 199C65D9889D75B86AFAE1555C45BC08 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 19D03E6E04BA7FB962A87E8249DC83ED /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - 19EBBC763C73E55A4C53FFA6166FF5AE /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 1A177374B29F7DAC869BCF41E1DA5CBD /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 1A2DDEE55A6C71E4E661BEE68007A7D3 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 1A490425FF97F332574003BE1815FAA3 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 1A48BC0792F01838B2CD545480DFF90D /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; 1A4A008B57CD5A6E9E1C2214467F5DD0 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 1A4D942BA287F50685CC1A52CC189675 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 1A90490482B5CF1E36BAD7CE03D6C4C1 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 1A95659DAB37834A199DC8808A20E14C /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - 1A9E54B8C06A1BBE8C3A3BF8BC2F5EFD /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 1AAD1E3BE0FAE3A9DC564AD26127A893 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - 1AB7102B3AD1E3C36674EB5C257CD4B8 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 1AEA55051C846DAF6CF2A29BAD1CD474 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 1A5F77B36C55D6D7AE6B8BA3989A518B /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; + 1AB1051659F7CBEC4619E3E4F70D0882 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 1ABB83E16F1E5752B75D3435B92D0587 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 1B1DDD9677896735626915DAA2466246 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 1B565AC50DFB311DB14EF47A37CF9A63 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 1B5F66A7469A492A003869067B8A8CAE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1B69B9E72831955F1B7FCC4F58931BD4 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 1B9055B4CCCFD33CFC7E4239C6EF3F35 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 1B9A2DD3B4EA1CAC0E1E3C0CC971E625 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 1BAC6664866FB387533C5CDFDDB9F619 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 1BD0242730F72EC571B4E5C64EC03FE2 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; 1C04545DF72C8133BD387E44DB618D8B /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 1C0F5FD5BCBEABAFE449D7A64FD25357 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - 1C19CF08C1B8A9FC1A05A928B035C792 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 1C21AFD8A32D52BF98E6EDE9DFBFF698 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 1C63FA7C1210846B888831F24CF9756D /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 1C6F71948B518036363AC19461CCF7BE /* 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; }; + 1C854232F42E0E0381F21A2CDDF9FDB3 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 1CA4E722A5CD358D1D5FF57C4B0781A2 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - 1CB11379A91985A0B1F4A4DA062C7663 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 1CB544ED2ED7431E2542B6EBBEF31CFC /* 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; }; + 1CC4FF1D730AA515C33188B504D1C67F /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1CCC865E70FF1ABB44F457E8644D0F39 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 1CD536CD7E68C29FEDB095FF41612CF8 /* 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 = ""; }; - 1CD888B3FE6914181AC2421D76096D5D /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 1CDE1CCC43729B11B1EB0CD96DB532AB /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 1CF8424614339AAE0B9D5417A5C3464F /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - 1D34B0518D763888260CBCA4D27CAB07 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 1D3C7FB57675D35DBC4F65FD222AC607 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 1CDB27E785D4D6DAEBDCB5C57E7DEF5B /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 1D07CB2E2D6A6B466D1E9A18803476D1 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 1D0D589E14519AC73BEE3A160AADA88D /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 1D2606EA34C5F31C12B0C3E8BAC67D0B /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; 1D4A4185C335D92544251BEE9BE5E8D3 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; - 1D7EC17A8FA42C5353C9099F3229B948 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - 1D7FA54348708E26FC9BDCE3A9791E17 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 1DB3F7C67F08BF46BE529A99198B47E9 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 1DBDEEB7B041D04D9796FE55A9C05BBE /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 1DC0D5790EF381188B2739066F327485 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 1DD7F34093205C98B4E3AA38720E16B6 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - 1DE39ADE26B9FF8F24E22330086E7C5C /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - 1DE81EC841E4268EA77FF9FE8A746669 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 1E42561FD25274B8CD626FFA97DCB7E6 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 1E45D05D28DE40EF4859BF54C4F93D00 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - 1E5B69B58243A758FACE527D5002E5E3 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 1E7BD073E8E234343A349355E2A8D013 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 1D4B743EB144717A68239203E5483B35 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 1D597118AAA3AA0D63E0264FFEA27E9F /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 1DBBED15B89611831F8A4DA95B21FA37 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1DD8B72DBDB997D8574A3A2BC15CCA8C /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 1E0135D46DF131834F793B0B429E1533 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 1E38F27EE3D1DDF70053DD09AB23EC0C /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 1E77976B72B9AB6E7BA93B640FE4F43F /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 1E7BD509DA6643B58855ED3144CF45F0 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; 1E7E0CA1C9019E1D513061F8AA10BBBD /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; 1E99FE2AC919270F659BD0546476213B /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 1ED0ECEFFA4E9FA5FD7014CE70F695A7 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 1EDEFC74D73E5585A99482F8910E029D /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 1F5523C40E3D425C5338B08EB6FBEE65 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 1F5E4A417391626A3FA13B93ADE301F2 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 1F754FFA9D3E65A692D42755E4D2594F /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 1FC28DEE582DBC128838358F4823931A /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 1EB25E45A8E61C16D680DAFB1A4FD7C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1F21DA5637D8FEC1E1EC72FD36D79B52 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 1F231AD2679B7C9EE706E6BBCDE7D22E /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 1F9363B3349F3D205297C76DAC16F50D /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 1FC7C2B1E113D97290E46F1F96539849 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 1FCA0A141ADD27ABD3C523D23FB6576A /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 20261AF839A266429005BC132E5BD885 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2037B71C0E6E322B709F9308458EA14B /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 208049EDC98F6FA872497D64D295A3C5 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 209405F6035B3B85D8066BB4F1B81D3A /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 20D054CD0100E3DCC1CC4EEC875C517A /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 2094B17B932F0291907A328EF66C43DE /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; 20D73B80DBEDC9935666EB05B502A6E8 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 20E78353CA089C0AA42E7A32E86FC6F0 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 20EE457BFDCFAB6D806D177B0D42ABB5 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 2104B8C23A492CC02B6E9A259374A039 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - 211A4ADF1B4716CB169BFD5927015344 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; - 211CAE2A1EE82EF06C89A9DE024C57E4 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; - 217C453C85A6762C2B9C48CAAD0FE938 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 218B0452EA6C74BA96D19E1FFA93A405 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 218D06A629DCF242BE7F1E4EE1820A21 /* 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; }; - 21E35835724174C091DD2D637640DA47 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 20F511A3AE582E93EEC40EF2BDF8F751 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 2136384B7D6B8627E2971FE805B09E72 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 213770343AE98C8AAB8DF517E5F3B0D1 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 214919E23612A309342CC7EED519DD14 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 21B1789B432E0A8183D470E042D37360 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 21D6CCA47D1C4248E6A4121A52E968C9 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 22042ACA6514EC558543411151311E54 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 222F24FD6FC53DB2109B5B5BC6F4535B /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2235158B222B19EF02C08099CD15FEFD /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 2238F6878C569BD9DE62658378F43980 /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 225F759A534ECFDD2F60AA88A99267B9 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - 226679663EC6272B26CD3EFEDBCF017E /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 224C3853AE53D9D61A871DD7F8B301E2 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 22509F6CAC0545EE9C92B24406594D33 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 227495E0087990E3409835CF75C620BD /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 2282E5754D9ACC42C39AEF6821CE3571 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - 2292A52D69EDF56C96E1FA5920D3BF5E /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 228AC5316B37F9112A15C2489DDE1E55 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 22AEECF0E7FAF915135D3CD08ACAE8A2 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 22B89E8B7F03CF3AC298D30704C10502 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; 22CD6908E6D35EDAB4715197D48DBB89 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 230639622F3EABB93F2AE5966BAAE996 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22E5A3C18B5D608336D84AB10D0DF85B /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 232EB188EB76A659B22869443AD45191 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 23A647E30AA17236BFDEE61D0BA16440 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 23AC3694E47D45C230C083D876D6938D /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 23B400CFD688C97DCF1554B7B1925F92 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 23600A44329F9568F208F52F10DC0EB2 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 23879EEFF8CA9AF370F72C443F440029 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 23A510721DF32D432E5E58DF50E4D051 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 23B8B3FF66993427CBAC56A542C655C3 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 241240DB29A9C77295ACF522FB2C081A /* 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; }; + 241A9FEBAEC2AD84DB50FD1D77941E7B /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.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; }; 2458545E3325597DD6A4B811C7E66B92 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 246C602719C906644EBC65A6E205C426 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 24AF778FA97EAF72E666CEB2A88CF0D7 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 24B920E9A76DD9B7564DF2EFF9798DAD /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 24C611BEB3B7B32D72497FCA7274017A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 247A5EA03A4847E3A7AC163CE046CB04 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 24A91666C5E60525D7863CC82F20106F /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 24B479A5347E6CE6A9645129EA6A7159 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 24C136296458C68467209769F81C270E /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 24E4821FEAA0EEB382ED9211E1D198AB /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 24FA5A3DD0407A834F248C139742ADB7 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 24EEFECA3BEC42F87EFF618D0CFB87E9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 25023246C576D25227B4AE4712355E3D /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 25267DB2604CE566026E1F22B8468B73 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - 255194BF156820C940AAD066457EC31F /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - 255D5547744EF81D43E695DF8C791FD4 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 256B4C6502ADBF7F084F9E1423832249 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 2573D9D6041079FF47BD50EBD8AADBF9 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2597C32D353393B8BFA90E56A865EB3F /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 25911C20351B3EFCDBD5A6B009CF4574 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 2593832A42DD4CCCB3733C186605E387 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 259D2F12ABCF462092CAD9B27FF0A88C /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - 259E4501D1D6650A9B4670C2A99991C7 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 25B9D77B42FEAE3A5C5A6F2C427F1594 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 25C54BF46595A1579424DE393B0E7654 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + 25B29827EECA6282CBC136F619978150 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 25D29A1CA5B4AAC43112ABF5B6FECFA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 25D5B5E920069C5AB4CCEF59BFD14E5E /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + 25D76806A95BD94C3D3A37C4CC2DAAFB /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; 25DA1555851CD85592046C2B2AEAC27E /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 25F6E99D2AAABA2C11653AF33876167B /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; 261691467F899D94E6BF0F490C2F7865 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 261D22D100484A59E19499DF1B0DEA5C /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 2631E243EF61902279E4E44BA8274AD3 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 264EBA628B0C20D7E378DED6DC0270A9 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 2655AE4B93DD0C0A2EE756E5852FAAC9 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 265F8411F42BDA31FF280D67A68D2CB1 /* GDTReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability.h; sourceTree = ""; }; - 26647F2F0EE10DC5FA97C8E5AFDD0946 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 267537452A82A3A232FD2A21CDA62841 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 268221F035874F9F853B1E7F784BBDF4 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 2683BCE18B50187450E5F4959A40292A /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; 2683CDC4E450B4AC2C04403C7D2F3A6C /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + 268BBD0CB874980641E402FA75B54932 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; 268F7F7EFB3E947F83F5B9F2CF88A0DB /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; 2690ADE71F761217060D0FF0C1378AE6 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.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; }; 26A258F41EF97F643AA8D63B40A4B767 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 26C7AE1C3D4AE681695DC51DC21BA022 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - 26DA4631E172DA678A2B02F04B5E4485 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - 26DB8D3AA474C3D57BE83F4619F05A1D /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; 2718BA7539F8B21F39ECDAF498A4CAE6 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; - 2741F997495DA184952AF89A1EFB1DCC /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 27318DBA74DEF0DE342E0CC7ED8BFAF5 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; 276DC8FED36CE7A1A8580CB612E3C53E /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 2787A002958CFED930565A4A9B63AA62 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 27930C8F727B16DC3C632B02F0F45198 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + 278F6167215D8A0D4E56C3930C73AAB1 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 279A8F56A1C6FA393FEE409180A42353 /* 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; }; - 279D7FB768925673400F832A252B9F6F /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 27AF34E856786072C0490DA7EAFEE0E7 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 281277198852CBE11C6BC5FDEC40FA1F /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 2842E95CD01C873C9F7728A33D5FF2D6 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 284717196E0B5452D66F98ED0D8E6102 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 27956594B5865746D9D106DAA231157A /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 27D6850F6315C471632ABED5426F4E32 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 2810FE8C402902684E42F86B061B20B2 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 2857FD2ED29908954D251250C772C0F3 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 287650BECBB76C9B1FF6B790694E0A37 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 287CB52758A01C448AEFE3B81A28CADE /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 287DB838541FFB8DFDDA05910E775D9E /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 28A379CA901BCAEB8D4E0712F817979D /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 28B7CE1881C6172919E8F1120A64ADED /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 28BD684EF1D3EA7EF62481985911AFC7 /* GDTConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTConsoleLogger.h; path = GoogleDataTransport/GDTLibrary/Public/GDTConsoleLogger.h; sourceTree = ""; }; - 28F7C8D8BD934B4948079E44B625BD7E /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 28F8B4F4A03F94AF7D250100CC9ADD78 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 2944F8FD8DD98A3F6DAC616A45EFFB44 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; 295B1037840F2974230A335C2AB3C3DA /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + 297DE5906FC3CE4D8A2A5293D38E1532 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 2985690376C832479B6CBEF994125526 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 2997A3C3733C63705008CECC0F73DD57 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 29A7A5BC488F61AA66BE4A5105B1A52E /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - 29D0B376D7EC4B81CA519C556FB714B9 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 299DB64B3EEC7C3C81D7A8C926308FA2 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 29BBF634BD7911C5A0A4EF0B465BCF31 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; 29D866507B6D31ED844E9A73B3118772 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; + 29E29CE1DC026A19D4C6A0AFDB460E31 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 2A5FE3742F9AECB83E54106826071ED4 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 2A6D119C241935EEAA66F92C1D65BDBE /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 2A7830133E02017B820D1F11EB0E2EE9 /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - 2A8215487E2903D340BFBF47AEA0EF16 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 2A8D8B96BA47FC802E04F8D64C8BDC6B /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 2A99B8E12A26047272700D4C96DC2C6D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; 2AB59D38B9D49C9B00F3C5F95EF8A5F4 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - 2ABA499B725F3E5AD5108B73B0CDCCFC /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 2AC75DCCD4BEFC147B6C943F2BFF07A7 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 2ABD1F3B8151FC79CAA4438F329509DA /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 2AD54B237B77BB56F5C7DA1CB4627A09 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2AE6E07E996DD2CE02771A4670FB4399 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 2AFFB27207A0900BF2C038D349B11237 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; 2B0BFE57676A5D16FB11E7FD654EE50A /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; + 2B0CBDD5C96DB01A8B299DD5CB81118B /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.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; }; - 2B18B92EB4C6BC1EA79F7368F0F2C1A4 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + 2B17E3BE35B17FB8CE516DE9EA62BE2F /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2B19F7AAADC1A5F33EA0427E8F8F8263 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 2B2104564763E95CBABB7E689023F689 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; 2B26AD7CA3529E84BB0792DB6416F749 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 2B78DFA800847E6349DD43D660009035 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - 2B879886F9B3217460F150A1B43B2B91 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 2BB66584DAE73ABD1533A8F4DBDBAC5F /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 2B27724826A333FDB5B077AB4C85FBE1 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 2B9C85EDD81E15E166CB2B0AE63AF203 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 2BBB8F40356ABEB7E55A02AB87D8BD73 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 2BBE193FDEB3045E7C2C8041FAAB6BCE /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 2BFEA15E756937AAC9614C1AA89DFFCC /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 2C0F48AB87D685794F85A367F5BDBFAD /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + 2BBDED4A9EE538D325FC8C2E9A7BE9A7 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 2BDE4AD6316F658E3325B860471AC0C8 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 2BDECFEE47DCFDFC9D5FB5D3B5D0FC23 /* 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; }; 2C3F084BC58B9C5F2BA562EDFD9FAD42 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 2C40D6A598FB729DF4E54AE77640145C /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - 2C686FED49C66D956053438E03901BF2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 2C7CE2F99B0B2E3EAE018B5455148BFA /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 2C880A8B743FD86CE7D4EF41780C187F /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 2C8F488FD07006DF1BADA179D2EA842B /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 2C9F4B66EE7652E0F2BCC18E113FD5F7 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 2C72A3D5F6D88608C76DFDFFABB74EF8 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 2C75A9118CBE7C8E482568B6AC7B4379 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 2C7EE7B40BA6C455473BC868F9ECBE8B /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 2CA9749D964D0660A6EC2BB114A0738D /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; 2CBBE1967FD8645B907167A3031D4271 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 2CBE7D5A59B8F1DBBEF688B1E0E63755 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 2CDD7EE9C1C468DCB4FAA08CD8969B17 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 2CEBC8353E3E834E7413F17CFF340F1B /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 2D0609493E013F3C877E594E8FA8BE27 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; 2D07BFCFE57A9975D3A834AE06D565CF /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - 2D4E2165343805BD6AE57C4F2203CA31 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 2D82E4F1D8385F9B526D89EB110CDD69 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 2D39B25C972AFEF60588CA5EBDE4DE61 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 2D8E2E86502AB32BE1A6A36EE7EABAB1 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; 2DA0A75661058A06F82116E5CC5B916E /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2E808A86D11B52E5C76DB57D79DE4CDE /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 2EAEB65122A1B7B66564B09118E9DB18 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 2EB6F6BB23954FA3C96940D122EB3544 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 2ED1FD1C25B0048301BA62356C06EC38 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 2DBD62A1D8D5E6211EF692A42BF7684D /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 2DF77C6162EE2FA7C657727DE6EDADE4 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 2E05F2C6F33CAF5336B8740CBCA2A516 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 2E1E35FFAB84C039F68F4C89F3B6FB48 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 2E205DD1A8A9821D013B25E0B64BD027 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 2E219AE5CBEEF48D96AE1DC1EE0373CB /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 2E3034484CFF3719E0A09FDB6C053AC4 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 2E4BFE364D0D3C25C27CA651D3B09427 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 2E5DB6C4A6AB67A7659D6F8FE926080C /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 2E7FE58AA958A69566EF7D174F252E2E /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 2EA0BEB0FED817F41CA1741A42E176FC /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 2EC40F160B7A2931915500E5AE27872D /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; 2ED62654065B0051EE7BF8418A99C030 /* 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 = ""; }; 2EF44213FD3223B12AFA1C7C0BB356C6 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 2F1D8B042A8144C353EDAD10D4E7409E /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - 2F29E8E59D50A97051BEB66575D89971 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 2F4C102B81D8A7BF414C6496EC933F2E /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 2F28D4D3F3D8943317DB46F355DB2220 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 2F492DD3B01F0E0A1A1114D476E59201 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 2F5DCBF84C4FCB29D7493E8F86442192 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; + 2F68C060D7E824747CDC2B29175E6A80 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 2F7609F49973D8DE1FDA2A02AE36643B /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; 2F914408E2683348E30A3AD1A6A6A892 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 2FA8CB4BDD699CE785BDE16E2769C788 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 2FB12052BDB8F34EC69FFDB7DA72D987 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2FD7AD9E9FA9A97DD7A667546ACD3376 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 2FDB850B2D7605EBE486B87982DB6203 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 30450BB1A1B8370C4B861F726E2B8538 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + 2FFBEE170794A5DB487CB2774FE9472E /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 304B64A89E638598A9E65B7A5FB5A012 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - 3058CE5E4E73203820980C3571C47FA9 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - 3068BE99AAD0D69BD1FED082F7142E02 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 304ECF002E7C26F5ADE2A610625EF9DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3051558B07ED6E28C55C39714DEFC779 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; 30AE0909BB6303673387EBBDB546C90F /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 30B9C2E630430BC069A34563B1065535 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 30BC2FFC08B0A3A295BB44C47A3365E4 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + 30D7C6D1BD3C9423C251D5877B013378 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 30EA571AC9A610DDE68C8A41286F37F6 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; 30EC76B688A264B41901746A6D78F349 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 30F8E2AF283C247B7769E2D109654EB1 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 310644A8BABE64B68FA90C6A00610000 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 30F1E6A76B59630E3B5C684E64F1A61C /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 311E903AB266F88A48EFB9B4AC19AA7F /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 312143C6EFD4E709F7973078FEA4C744 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 316CD5DF8063442746D2DA9064B0EBBE /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; 31AE6AB1498B353FDC643E095E7A39C7 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 31BFC6EBB39323E173C6EA5C1015C34F /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 31CFD8582724B97B03F5597B888745CD /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 31F2DFFBD015209A78F79B7C330814E4 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 32206580ED5589AB53C06578EA3E6DCC /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 3226B2EDCDCDC805996B2CF568D2619B /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 3233CA3991ADC282DDC155994E84A82E /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 32417419448BF9223832C1202BCA80BE /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - 32B1A0AD172D5FEB77FDA5EE3A58EAE8 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 331B677103A37239289A28A159B157EA /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 3278C46B12DB44947D0BE2C1C4D94AAB /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 32AE94794BB5B1659A6C44CC5F115E76 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 33380985DCC39CF44A1E64982DA162DC /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 3350EB711F5CAA6C40CFBB421C7AEAA8 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 337EF94C75DE610E48B4B5F3A1C90B8E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 333E2305122D7A2D6067A97077CB573A /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 33849FB08B2D1A66D62C9DFEFD628532 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; 338ECC56A4A92EB571B4761542C43109 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 33ED83296143FA22EDEF12D431300B0B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 340F3FBBB3B2050A6DC67AD92D71D546 /* 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; }; - 34102A33C3D29F5DC288E1C743B3A0A4 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 33D0B8B27FCF7C0CE3392525865DD2FD /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 33D1B9B1D3E180C731955B7C3CAA5C1A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3403650F0D63AA3E71AE9F8D5D73A0AD /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 3408483C86C5FC83F26C6296D16EBAEB /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 343C5F749E16A3765E62F2A74C2F50F0 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 345F976365AFBA8F443AD4D00A4CFDA0 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 346983F78C1180338E821BF043913B34 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 3480342820CE8E07B4E5DBE9E6E950D2 /* 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; }; 348E94250746518A7806840383B1E11D /* GDTDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTDataFuture.h; path = GoogleDataTransport/GDTLibrary/Public/GDTDataFuture.h; sourceTree = ""; }; - 34978C6F301A9CAED6C961535869D93D /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - 34CD9E734C4FC85F53ADBBDF44B64B49 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 35308D9DC4CF8DF1F4797C6BCC4D9994 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - 3547259B7BCD06701C108F35D34C347E /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + 349F9357A7F29F8E3B1AAB1B185FDA4C /* 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; }; + 34B29BD9D3C6B94CE636A7EF39030F71 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 34D303E7970EB9860AB1A558D43CA8C9 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + 34F248533ADED25A996005E3B2882F8D /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 353062A3AFE312B00B834B7FE52636BF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3540C9864A9BA4D74A6A0F1374562723 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; 355BFD7BC86580B1D261183E7406AEC5 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 356B1FE083963ABCBE2D82121CA472D6 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 356DEE22CFD29622BC9AF59BD8016DF1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3577B94AB5AB78F3C9C7361639950547 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 3582942CFA8E78918EFA4177321D2119 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 3566ADAF3895C6EBB680739C28C8B8FB /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 35740ABD1AD7634DE1517E7555C91E16 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 358C560AEBE72102FDA3E6D8080F2BC7 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 35A2755C977AD6162004E2683BE5893A /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 35C63BC132ED5A2355DDCB7744E84E91 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 35DEC5F45A51DC3D386B80E88F297CCB /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 35E0E90EF0C183F2A43724E79B0F6C73 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 36344FDA0FB0189C167C6F4D4AF27D3C /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 363F26D5D2DF4C8A2054DC4C8972854E /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 365239D1B9DB69DAC8C7F2C37FD8E0AD /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 359AD85DF4C8CB12E980F9A490343656 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 35A2E3904649AFBB24EAD823EDFFF947 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 3616676FA36F77D6CB565DD31D5C3622 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 361B885668026CB8D0F97C254A166261 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 364529EEFD05AEFF36F7B42792ACB275 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; 365B865A2228D9505717DC16C6BE2135 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 366F69DBB232725AB1C2B755C50FBA4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3681C4DB91110F2DC00479AF090B5CD7 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 3667912BB0E4063AE7F6A79BEF7EE853 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3682BC07B13C3913D99CE605DE58217E /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 36898F6F3A17E35E4B79457A43BBAC39 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 369719E5347402B6E47F81536F6481BC /* 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 = ""; }; - 36B51644B3B788695222BC7CA74C0FF3 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - 36C67981B3FD8CED45B6F5DAFFF5FD03 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 36DBBB1EB7784B467FC297447532C802 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 36F120B6FEAD23DCD094D28B350A36F8 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 36A62BEFF7EB6CB4D7EAD29A3F708E1C /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 36C1854B287AFFB26744246A35457328 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 36F46CF4F26CA396B398D161F08B1C1A /* GDTClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTClock.m; path = GoogleDataTransport/GDTLibrary/GDTClock.m; sourceTree = ""; }; - 37096E9C79DABA64683E034C9F8E56B6 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 371F8D1E1E29F7B456C8D34ED426D9D5 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 37250130B42B141C97CC9A39287C12F5 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 372C77BF2C046CC5ADFEB3769B713E80 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 36FC33777B596CE2E3B8C419C6C37B5B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 3705716BBE7DEB63B20D332F6F24EB4D /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + 3711D94159E3D7F15972750F9C35469D /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 3746E701470AD603C00063628AD6BD39 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 374D14998EABADA514170B2D08C33562 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 375FA80AE5E32155B7FDD0548CFC3EFA /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 376060DDF6A3FC6F6970EDAC13043430 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 3770A7F06B2DC59FA8A4201686CC4FA7 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 37677EE64429D5E6813BBD62C03DC730 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 3772EDFAB6079CDD709B999FAE9504A7 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 377387794ABFFE9598A387768FA7E216 /* GDTEventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventDataObject.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventDataObject.h; sourceTree = ""; }; - 377DE6DBAF253D2660305D2AFBDC8638 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 37A404E425EF178A90BA382DF69B19D5 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 37E8DA90D50373FC7B795EC5347DAD49 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 37FC34126325D0813F871C63293D1CC6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 37F34983C5F8CA9DF6901B6AAFB41865 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; 37FD57B12763B96D58691CAE28587F6D /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; 3801B81BBEE14EF6AA1665A2C3D44BFF /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoderInternal.h; path = SDWebImage/Private/SDImageAPNGCoderInternal.h; sourceTree = ""; }; - 3812548294336EDBB96494202AD0DE69 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 382DD12C924318781AA8A60028E0A2CA /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 3872A721310BFDB6930B7D5C1D296B44 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - 38AA03CF288E21D24E383AC7A6AAC210 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - 38BDC1CDE654DCAEE3758699D9DD7F54 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - 38D31D16FEF11BAC517B8AD6F7021B00 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 3805790FE2629BDDA7E8A74F62461CB1 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 380FBE2909AF477DCBEEC054550F2614 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + 3813B67C685166172881570BC70A8844 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 381856C980253139B3428125818491A1 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 383F75F79C51D1F463B71D72C88578D9 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 38B613B0CE79C3422B37098392C882EE /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 38C920A7510DE4805A72506CC2EC80B1 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; 38D3EA066BBED7BCCB24EAF46CC65828 /* GDTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTAssert.h; path = GoogleDataTransport/GDTLibrary/Public/GDTAssert.h; sourceTree = ""; }; 38EBD6804987F7C98DB5866FA7C08B94 /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; 390B144A1D5533DDC72A1108DB65D532 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + 3920A9A3F269D45CD0AA76EC7115D2DC /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 39369053D09171D7BA3F40A564596395 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 39451443009DFBE5B43DDB789C7F28F1 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; + 39552618FA6525665B95AF0294BEE26D /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + 395B0B7B4343E727775CC6872C7EFE73 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; 39785B326FEC039620379F33F7710111 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 39C0AA674BE4190D471D1EC46A006EE8 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 39FC70B631FFFCB5D1ED2AADC923F3AC /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 3A0E24054AE40C9CD36A0E9F54F63186 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 3A2991B86A47D1BB6ED19CC933044BD7 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 3A31B0164DC60DCA090793823095A032 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - 3A5C61482E71AF20A55ABB3BE40456E0 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 3A6C89FD953CD3B03014E0BF694985D5 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - 3A910A5404BD6BEA34F840291E25F0A5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3A94CCC3BDFB081EBCDACADA0F4DAA1E /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; - 3AB6431C2CD5B8840B4490303B9F938C /* 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; }; - 3AC02873D9422610DB5F06E054004A65 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3ACBB8117465EA9D389E9031BC5B6D1B /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 39914856EF6A29A6C2F0D5B1DE42259C /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 3997462FFD2458AAF37FF8CD1B3B225A /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 3A136898A2D9F095BEB68F0A23F575C8 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 3A32946588EA5D283AD7F202679C7337 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + 3A368D02F5F1945BD559480BE293C477 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 3A54A0A46C79160C041E5BC8B5148561 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 3A635FB4D4337285928E1B8E0256C596 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 3A70CAF608A1E6D153DB84FB781F0D98 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 3AC3F08044367E5701821F9AA6CC21B9 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B0B9D3794B58330676323E66BF8769B /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 3AF4F25F2C55008268BC35CA2A9EB7EB /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + 3B0E798A56580A2D2AE9984C2CD43074 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; 3B136D058D3F594D25B893879B7F0C2E /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - 3B28807606D3BC1F3BE3785ECCE22078 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 3B295C5BFC6986B808EC09C336A1AB44 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + 3B3177B1C24FACB84DF469E7BAF8E7C9 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3B3AB92FCBB720DF9940897E9D1F8CEB /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 3B43E7DA09925228BA708459EEA8E370 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 3B3D0AE95BDBF73212D684D408AB5043 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; 3B4D048FC2E4AB388AE85B12DB498818 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B6506265F3367141E31DCF936763ACD /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B6F1F6A2DD066BB2C50EEEEE0FBF29E /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; 3BC490D0235B782BE1CAEF0FBE717F7D /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + 3BFB77D1192D1BF54B08BAEF7E78D928 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; 3C09D1909D155940D521C9CA8F52D15A /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - 3C4474A0D732B54951F9E3D680193009 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 3C871C2A094B2FECE3482ED6E1DBCD71 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 3C98681341CD087B588A35468223DFE7 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 3C9F8E05A41303B35D5A1FFA1047F9A0 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3CA12FAA41B0D8FF1ED405B6A4084AED /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CBA29BF4065BC799B3EBE1305390E35 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 3CC01F4BBB89B317FB9A46064D289D90 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 3CC3B68DAE9A3E01C769D85966493AFE /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 3CDBDA098586CD6DDC196C4FEA5F1AFE /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3CF06B917E566C842CE410ABC8810873 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - 3D0BA88D0F5A567DD68ED5A77BA6E3D4 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 3CBDE4657D6A5AF70D5945711059E3DD /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 3CD392D0C4BC960917D4C2C53314C3B5 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; + 3CD6EF3208D40BD1B03BA2765441EED3 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 3D0FBB00E8E2A118FAE70AF21ABD4769 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 3D2B3D1687FD3940720DB6745F9B30B8 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 3D11E7418623E9EB6986653C4C041914 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 3D162C3557E14886DF5D130C63966C11 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 3D324E3D8C10F168C798634233A3E714 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 3D3D104D06FEDB10294E0B20657A73DB /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 3D47292FD54FE320D84C47954485F5DB /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 3D4E7647CF95D02F120840002F70069A /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 3D91ADB02B9B30E471534B4A7862374A /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 3D4E1404C1D332BB3FA51EC98F4F1E84 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 3D60AECC0FFD09038D82BB1E68B2F474 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 3D8ECF7DC7D7DE7D2C815B57EBA7BE8C /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; 3D94D37216179280E900EA4C5B1230EA /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 3DA79A3ADA53FEDFBD4C46CD89E04C25 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; - 3DB5B29BE601891C479387CC8004CED0 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; 3DB682A30EB31ECFEB3C2C7BF6686375 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - 3DB835EAA6C8EC47AC6C3B91C432E4EE /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3DB91A8A5143D4BA8CD6FDE49424977D /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 3DBA4B691ED78F42C1F6204633203B66 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 3DB97B0F2AA1C96B6D43BB002D7FCE0A /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; 3DC1F89988A3C8BAEFFD0B0C2A1BE306 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 3DC37D0171C53CA4B92AABDF707681C5 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; 3DCB6BEB26EC6265B782EFD7D3B218A6 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - 3DE8B595C6FE9F6B00706B8E1B2084FC /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 3E0E7B2ED357A5649AF19017879B03B2 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 3E11C981A1BEB01F4F3A5346D4D22292 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3DF1D955E99654E72474891EAA6A27A6 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 3E31863B044F19D12447D6ACEFF3517D /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 3E5524B1A2A7B10ECFEBDFDAC0BAC57D /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 3E67050C46585971FBBCBC894D517A84 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 3E9AA3A0EB6EF9F2CAFE19AA503FEFBD /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 3EAF80DCE8A9ED255EF456B3190CDE96 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 3EB1C6BBBCFC667C647FDECEC591BA2C /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 3EBDF0D4DC0E55C1373F1DDF69FDE4F9 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; 3EE738B3A601FC77C73C28D6421C75F9 /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F10E4F82ECCC9C01CC40FDD5AFF1857 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 3F3EDBA9C3FD47F489B95DBB5960571D /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 3F4E1673D2E26BD54498782ED06BE11A /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 3F0410A5C14A0972819B5EC2F90D23E3 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 3F11D64FD1C54C0726523DA779674B67 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 3F56F86561C29CEABD8D97EE5CE37333 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + 3F62265AA8BD2F597DD957CB4B42FAFE /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 3F67F1AC6F5CF2DBC46147151813B627 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 3F7241229C438B50D4DCCC6AEFD59D51 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 3F9253965AF41E2F212F66DCE9B0591D /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 3FA8E0CC67E1BA5567A4154B6A83AD53 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 3FA94B333E9C2CF8D949D9141535634B /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - 3FF17E61ED47D85220336B275F63BDBF /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 40017C53E9A62863BF8AE82C1BA2100E /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 401149FFF984995BED9A32C13BBBCF4D /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 403AC9E4E215584A2D0B564D0E27BA8C /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 40535AA392D12A73F01C4509C5AE5135 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 406EBCA52D15FC2B69B3007D0C7CE814 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 407A40CB7B070AF556EF70FA42D89DA4 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 40868694D529A4908A117955291055E1 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 3FBAA72966C50526A17418E951C9CEBA /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 3FC26F772864A9B9CAB72B4AA4920881 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 3FE7303AF02F58DB6BF6D41B4A08548D /* 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; }; + 40178D2B0A8A63A48E68DBEFF053B4B6 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 4017FFD49CA4520E73F3FE89DEA8A4F5 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 401973BCEACADF073C4E35B793FB91FD /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 402BAEBC36AF3C9660E30FCA2A64729C /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 40490EA85C4333BDBB5F0815E15C37E0 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 4079355BB2F2437C8076FEFA38B1E6F4 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + 409404084C453D06E24ECEEE5E16CD11 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 40BEED63FAF5488B2ABED0AE9C68C144 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 40BF05914E9030305D89F2DDB61B4961 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; 40C8283611FAE7801D09ECAC1AD49CB6 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 4106E6108C7F9B186510BB81EAF0AAD4 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 412EC6AD6957E1AB07590859753840BC /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 41556BEFDA4EDD60FA9C866BB39D762A /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 40CED93B20D9FFF39C80A720C8A38A57 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 41145DB6B12EC01D187F813FAEB19857 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 415888839FC90D55328208C78454E68A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4174C3DA62C6EDE81EC9F9D21A6F2728 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 41BAD92EEFCD985EE3CC050DF1285A2A /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 41EFB624DDACF745DCD4B1F2D9425193 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 41F7F4505B4AEFD5242486F072B4A45A /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; + 42114893F8A24894E5D2EA2961CD4ACA /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; 421D373229FFEB3FA145AF2A6A8B4145 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - 4228A2927237DFE71BDB18546D00CE64 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - 4235CAB374C9F97803E0BDD0C514BEB5 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 42517419A5D52E0E983BC2E0AF034132 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 421FFB16EAF6AB59C2EFAF20F0428076 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 423FA01DAEC6424828A0992FEBD3F2F3 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 42521590F6A1A6CCDE6013EDBD43D4B6 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + 426FAEF1C0C7577FDF76C49002CAB1B0 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 42714A57FA6B18B268EB2AEEBC8705DF /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; 4272032543868088ACE960F8C33300D5 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 42E906D709FDA7381D9058890236F110 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 4335E3F445366608B9126A6898AEB23C /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 42AC7169A5DDA2C524AF202DC77E1B59 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 42E31C73FBF877FD4A0874E1BFEB63C6 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 4359E71E53C53B1E541D3AA5CC168B90 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 43681818F909EADEC3A28A35BCCE0286 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 439BEE50C5E3C1DF69A864C97AF488DD /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 43D782A30DE4BCBDFBDFE3337B86E535 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 43B81BFD13C51E703ADF3467AF47BF75 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 43C78A7B765EEBC4F79BFCC653786878 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 43D8E7D28F6BE4DA3729D415F22B3D9E /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; + 43E400FA303B245EEC239368D0F13B7C /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 43E58FFC4E5E4E52B5906224506D529A /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 43F9A867DE427FE12667E3B2732F311E /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - 43FC20B10BBFE3B2DF6CD670ADD6508B /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - 4416AC2D34F8B2EF4FE7A40D7585AB24 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 4418D85E54E41E406522F469AD578B61 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - 442CD07F1DB8846A151DDA3BC3D596FF /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 444D69041368197ED52BFBE9A90FA6F4 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 43FE55F1B0D9165A56E7FC49111C772D /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + 4408C73A08D181A0A3FF59EA13703695 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 440F9327BBBB2ACFF6B3F2B310F7F738 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 442C6BF9F30352725CF6D5AA0170FC26 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + 444FD0BF1AB213D078F9B010C660DF17 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 4451BC0E9BF66D37E3D3B77242CFA4C7 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + 44647028373AF2AC1D2203A046C079A5 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 44817FB7E2ABCC265E65CFA2B05C7237 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 4483007FD4288BC7AD810D7D6C04FFA7 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; 448A30501796A418DC547CE32C7F3317 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; + 448A5165EE319879F03FA0B9F9829517 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 448AE9F290055CE55E607829C8C0DB27 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; 4493626E5D7EBE75F85C62707A33036F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; + 449428C979474F349FBCA71A58A212E4 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 44A01F006BD1D0ADFF86D8F79C363A7F /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 44D2AEE1A567DCB2CAAF5F24EAE0B7BA /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 452084A1E355CA8DD53918ADA8648C2F /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 453ECA6654F44A718F0A1BC0DC7960A4 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - 454A24BF9D84F5614FA392E65EEC9B5E /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 4587363767E6DDFE5B6EF79C5B99909B /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 45E519A214A297719957A7D0B3AB0223 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 45051CFF111C12067E5274086D1AD8C4 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 4514539C2C0C362A6F990F26F90E28E1 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 451748833D01D28A51396492ABBE2394 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 4527CA9D0BE34892B889E0EB539D1E04 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + 45373185955BA213D5F2900EB9902441 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 4595505ACB57B745C450588D2EBEE357 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 45A90A1095F0EAA8DA0CE39F826759EE /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 45C765F1C990C5B20916DEB3EAF2E8E9 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; 45E9D3BC635E9660003BAFD58CBB5F3C /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 45EF96AF0A51B3561D8B4A6F9AA8049E /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 462C414933AF6C2576CD73FFED606E26 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 45EFD1F68CE757CFF269AEA583107427 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 45FDF409E1E2AB3479F8DE9D84CD9CD1 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 46458FC5BA171238711C4452D9FFE1BC /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 464ABCA0B3B2C3388680CD5C5E480E3A /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; 46569F23AAE5395C809499C108918970 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; 46610F5B03BF1D264385A4E958941598 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 467E54AA992F0A23756B154B35B0E0F8 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 46BF0E8347D4466B74F3BB878811DE73 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 4675DC5321EAB64DDE25C9B0E3423B43 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 4687F4AD27605F70F42D7F708F1D4379 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 46AFE37F6388C286B8391C9A0E468EA8 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 46C3C37ACEF7F9892744A0898DD26D90 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 472463756EB7E55D9FB7E35B64F35087 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 46E7C6CE6CFACCFE8DEE602C55D05D96 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + 47031CDDF031ACBD8398A58FFE1F5C17 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 470C412F2DCBECEB360A5CBFE76EE6FE /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 472A2C7686DB7556D578DB79D152CB46 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 47396539803F6D5DAD6C44517FBCBE7E /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - 4744D1F43EF5365C6B9988F2729B896A /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 473280B4E2891647463057BAEF574807 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 474448FEF0F945EE3EE8C4EDBCAC90BC /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; 474DB7FF9202FF612DB0ECE50AD77E65 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - 47AC7EF3484B4FBA656D8C1C2EB7BE83 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - 47B93061541761A8A35B0ABA87A777E9 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 477A5D0B7C294048C9688BF7F1498FCA /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 477C84944CA93ECD923D49B6D5DE0612 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 4782FAF03CF4CE401670DF000CE88D06 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; 47C44D06FD9B95D8A96A2C5C12FAE325 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 47E94895128ACED1A886414A90DD13FE /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 47F9153723C28D449693AC21F0268045 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 4814F7E3589300FD164E00A565756AD6 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 482ACC798103958CB652E9953D9FFBD8 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 482FDDDF2BCF7E9C2AFA24213D7B99FA /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 4837A24AA3E70F6369C525153DD2AF5C /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 48319D4EFA7B379179DFB57BB2214E81 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 4835F854BEA7430B1001BABA909F51A0 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; 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; }; 4869B54B0EE37591D6C195EFA088A309 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 488CC7474782AF422A553CDCC720C142 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - 48908DCE320586A152F9FEE14A2F50FA /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 4892495932BE1CE8068BEED1CB1A837C /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; 48967D0EAAD400B6C1756763B482F85D /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 48E95B5B112651B97BBF86375D7661F8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4922C303E8BE18448BC0BF66971099C9 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 4962B45EFC57517CB6EB2E7CA9EA4AA7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 48B7736E3C557317C8AB51D9B3EB69D3 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 493C3D7C67521CA19A82E045A4232B9E /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 49530A68CBFCAFB1CEFCDAA9F42B50D8 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 495AD1AD21804241299E8C8C7E32C056 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 49609DA301B6E3967D8CCA98AF2EF435 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 49754C174E317E6EE3EA06B03BE8AA76 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + 4975D25D641388661ED009D8D308059D /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 49858E47CF76E28E2821D59D190AFE8F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 49ADD84A27CF5B35366F5D7A1CAA1A09 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 49E5990C5787074894C301AE6D55D25E /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 49F5191ADF7A52BAFC1F0C03EC3F9D30 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 4A2A4992DE533D775915D65FDAD027DB /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 49BEE40C24683E301CB66E6A4DACF492 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 49D0414802185B4FE7CDBBF860A00BB4 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 4A0F37EA39308EE6D96BC5808D6BB2C6 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 4A1AF04F5E4E9C6FE295E0CEE224AB63 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 4A2BF3DAD8D39FCFB0486E81C37088B5 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; 4A83591A75AC4846C710B4A008E65FDE /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 4A85708678FBE7B05C15BC5627A0E5F2 /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 4A8D205EAA3DF8E9251EEC7FDECE8732 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 4A983CF8AC17E84D64C0436AA6007DF2 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 4A9B4024E4482F42172F4B0A22E38664 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 4AA0B838047A5141E696FF3949C4D024 /* 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 = ""; }; - 4AC758F6F1630844C1EF6C2D2EC34843 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - 4AD5C9E679C460FE63C5500480006BDD /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 4AD9066122F1EA3F325DD79F5284EFE7 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - 4B1B6E28504EB928A07EF2DABD68A15E /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 4B35A24C2CDA563C390E77B4DAED2636 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 4B3A4194FBF855305AD67DC72205C80A /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + 4AB262E6172FDB370844D045066A5FA6 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 4ABED4B6A40DC160B75C622BC6970884 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 4AC4157AF12D76A5931613FD14A2FEDB /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 4AC60DEE78FC30648336F862D99C49E2 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 4ACEFB59661EDD54D2A3AA25B6BF3785 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4AD67A70327FDCCC913898360E063F69 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 4B068F2251EF317197654560800E894C /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 4B120458315902FA759D8D59CB2C5B22 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 4B16019424CA3E2E0EF220234A1473AF /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 4B4FF18BE38D2B2AD9966B86C10BA36A /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 4B93487886DF9C2E02FE9B0C2D47007D /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 4BD10B6009D40B6E3D6E6B0735226E4E /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 4B52E9D746EF0D3DD9A49A8CBE6E7828 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 4B8DE89B4C8E0A59F30BD89DC6F21CD9 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 4BC05BB567B45A8F71209832313EB119 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 4BEF4ABF6E8169D3727CEA15BABCE486 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 4C213AFCCE5FC50C963F2D24321B93A8 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; 4C61DBDDB08AA75D46C6474F4BA5A806 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 4C83AD1EF56E73C6124E4ECED2017D10 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 4CA1809E4DA735980D2F6351E4ADE2B4 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 4CBF97800CB375F5F1CFD50F2A9ED4EF /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; - 4CEE25B8EC65C16504FEF74BD5E0EF71 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 4D2F8C828587E15FDC75ABF6E30BEFBF /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 4D3997100DD9909182F55934D68E8E3E /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 4D900157CBDC6614D73EDBA56BADDF44 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 4D94E8771CB638313C135DB3C4A5200F /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 4DBBEA5A845CABFFEB6D153E1E63F76C /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 4C8F43A8B2A5C4AEBFF388B1C1FD7074 /* 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; }; + 4CC27B843B8222C75BDC8FB535C8E008 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 4D1C8AEFF05FA25403176458FDF83847 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 4D5667383EEAC7C0FBC98210A1743F3B /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 4D67CCFDBD0A8587AF20CBFC44540F94 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 4DA1A8CE0E5F92EC09329DAFFB686E7D /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 4DA8B3C5660C6300CF4DBBF9B59882A6 /* 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; }; + 4DB7B6C14365385426771BAD32DDDBBA /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 4DCDF3A402BAF65DD8D8E38015B8FAAF /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; 4DD67ABB10429A476CC3CC6A3FFDE56A /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 4DE9D9CA74146F1A9618FB3ACF57C64B /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 4DF97351CD2CDD8612AB9B48C0BC5E5A /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 4E155CC65CC191C04D68A04AADD4EF5A /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 4E1BECC500208618E8E9A8369212DC51 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - 4E218755DD6D44C7810C4EB9D8151F14 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; 4E30DF42DD6363F4750ACB671F106D0B /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 4E41BEA18D5C9A442C93226CF8EB9B3D /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 4E52A629DAA85178F7C73397C644B603 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 4EA0198259715C8F432E0DB66B05BF01 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 4E4261E9DA1E9B9EB1D83DAA337845CC /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 4E50C73349AC0625D2B22337DAFB4196 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 4E5D8886EC2AEF3B4428AF073B0E19EF /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 4EA99B2E10162FD11E167103AD76752C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4EC5DC4DDAE29F872C71BCE57EC07589 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 4EF5694B8E66F0D0E0DC6F798081974D /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 4F315153651D6B1F113F407C010B3623 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 4F447397074DCECC8E98E4DD96374907 /* 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; }; + 4F4EF3DD9969C1ED8121616584467072 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 4F63A055CD72438EAB3EF61B0C5D6FA2 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - 4F7452EF148AC27F46CC6BB5658C701E /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4F7B20942FDA996EE4CDC0EFED918B26 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 4F862EA1AA055373123163311F43DCFD /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 4F91ECBE594003E7FF24A57760F8A5A1 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 4FA7BB063A2FEEF9F7383458D3622559 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + 4F9B8D49D7836C792AD1829FBCABE7C7 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; 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; }; - 4FE4BF39591C744FB13550F980019EDC /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 500000D98A3ADEAC94F4698268444755 /* GDTDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTDataFuture.m; path = GoogleDataTransport/GDTLibrary/GDTDataFuture.m; sourceTree = ""; }; 50019449BB19973BEB439EE8F9847908 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 502D1B01E457F17A5614B1ED35D8C026 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 5021DDD5538BE871B992D0E5843333D7 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5035E94EF5F622A429E66E8AEB4219D3 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 50436AB6D02FBDE3A55FB16372626C24 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 50462777897BD20652226C61A701666C /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 5052AFC572BBDAF774050875123EA3DF /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 5080C9B613BAD83C61CF4535D42E0F1B /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 50872EEE1BDB14CB8104E116422B5BCC /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 508806B05D8DF53487BC9A431319F391 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - 5090B0A0C6A46EF3068CDE1C911ECF1D /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 50AF5FC5A7519388E52D96767E85292D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 50585DBB5F13DC4B200D7493C8DF1FBD /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 509E9A684A56FB74956F3A0E0F5E8F4E /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 50B424FCDE1357C73BE0A177F2AEA2BC /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 510D444C7D882F7FA6C64952160D9B18 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 511E82E11DF5FE3BA6ED82F4F7B83F13 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 50B5514B41C308E96ACAB695CA5695F6 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 50CF51CD8F739AF49732B92F8AF4177C /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 5124A71B9959609807270C74C521EBDC /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 5172B1F1216A09DBE64EACF66766FDA2 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 51887EC3D08B15EC7B052FAFA9269DA9 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 51B257153C7A0DE61085AEE1B94DADC8 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 518A70B15B766E822D84528A62412F51 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 51B9F8ACCD896C009E3495C16685D24E /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 51BBA580FC43CB1363EEEB18ED6392C1 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 51D375A942054AF499969DE6832D5620 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 51E14E8D70831052A1B75375D21618B9 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 522AFF1E7ED2CC5B94FBD25D2F712FD6 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 5209737C33E43597A9E139095CB509B8 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 5210BEE1B83C6FAA39C29DD8643A61F6 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 521DB349BE450C04573E730D5FF9ED1F /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 5230BD3E3A0F8047A7D45E0D1CF56CF8 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; 5239DF994AF5723B4F01323D4A43049F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - 5269F03BB241F03F3D874F6A711CC3E5 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 52BDDD0244A987883DB876E8A5EA00D8 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 52EAE7424CD33D5F6735C3F02B932E71 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 52E7C9629AAE327315C865F91106C2DA /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; 52ED103881FD477454B892F8DF3D4F6F /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 5312D9A2C56B36BF96D068A82D3D4030 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 53307E5952D6AB4A314D232013266EAB /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 5305F1456CC2A2DB218DE2992B1FEA67 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + 532C9FDDA171E6A5C9D8A0982E1DF37D /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 535B2BF88CC1DEBFD8DD565F4DD44AC6 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 536AD2D678EA51846B1873C5C046ACAC /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 53A76528D15834F35449B62084F8DFC0 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 53BB0547E6A0633B1676ED1D03C87314 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 53CAA23FA23F0C7E1DF5C9751B02D722 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 53DC50B8081D99A0ACD90977F683BA75 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 53EE3027DA4A79F1B5A8C6FA0F9E1C0D /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 53F385844EA8EDFB10A8935DD248B4F4 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 5434944859BF2284F9080CFFC0B04E3D /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 542C2C6C4E041D16FC5F65BCA7CFF5DA /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 5466BA0485D3F92AE19B1E23AC599462 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; 54711596EE065CCA239EFE8201F0E41B /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 54899AC40AFD23991C74EE0B851387F1 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5493D1C1E055A9856F1F178A6AFA311C /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 54999C07928BBC15D8D97428F4AFD69F /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 54F5B4531D9DA7A15F614344CC893A8A /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 5487EFDEBE08F253309F245D788F0514 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 54AEF1093FF817DE71498574A192EAA6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 54C24149A3A1B3D3197BF7F331408AEE /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 54E610B481CD90275D742AA79C56D73B /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 54F9A9EDD59CCE5A4815F44076F37ED6 /* GDTUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadPackage_Private.h; sourceTree = ""; }; + 5503724E3438B0679C3F7E4CB8DBFBEA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 5506F95C9DD2C96CB505C5DEC60279DC /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; 550868F8B354C387FEC258FEE790F14E /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 550F2CCD6ECB3B9D99992AEB94B55300 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 5520622C1ADCE8D1361729383303E25E /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 55228413705B0926FD466A9E31B1FBA7 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 5531FE118FC285029F2319A4A0C952AF /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - 5535B64C0D95F931CD88E7F2EE0AEE52 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 55BD90B5F0CCF49E1711CAE74B2D14AF /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + 550C1881C392DAA26E9287B7205615FB /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + 554E77FD3F864F3461B30DFEF0A63BDA /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 556F58FFA119B290E284AE0FCBE98DE1 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 558915603AF11306686E59F03CF0521F /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; 55CAFCC3A7A8AAABD71308B90CD46554 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 55DCDF8ED22058268F7B1AB0F0F4DD74 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 55E1E403AD292FAF3D42C2C412ADBA7F /* GDTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTPlatform.m; path = GoogleDataTransport/GDTLibrary/GDTPlatform.m; sourceTree = ""; }; - 562BDAB9E04AD4A9972D18E880FD0EC3 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 55E3EBA9E2084BB088AA32EB8F79630F /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 5612BE2E38E617C3707D6075C49383BA /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 561957AA8E4D6D438D9C8EB2712D30B7 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 562303B6C187D0491F4458296B758CBC /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 56384D31C64B8BFFF1A1FAB31C28328E /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - 563A54805F9E15AB3E1073061A1A6257 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 5654BE3CF2E21B0265F0F30371CD8AFA /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - 5670A2144F9A5C801A835F462AECC3AF /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 5679EDFDAD5E93751635C0386EB207C7 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 56AAD55CB572513C35A8352F6F7AAAF7 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 564CA59E047E052071A94E3B9E1EE01F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5666A5BA1FED758B8028AC4746EDF849 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 5683BD59AEAF94F824EB1B702529737C /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 5684A02A45139927CC52D6AEB9CB9035 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 568DCBD7D7766031CA4173F36BA5D2E8 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 56A3D00C6AD7888025FF10F011B1F1F1 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + 56C861D69529CAD2F70FF9D59FDD2909 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; 56CB6318C9B6B836940C40559EB4E7B1 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; - 56E6BE4C0A0F3C9A8D73C1385FCA7F3E /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - 56E7D5CB6A3CB8DC47AA75D4A880637E /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 56F1554D31C9D718533026EA3AE52938 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 56F3674E7074CD3084F8551CF04BA9AC /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - 56F5D9DE81FBB94FF549E764B97256F3 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 56F88E1771428488ADD1003A651794EC /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 5732A5ED12474994E30B582DA227CF52 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 56D3A2B8351A5CC262A5B77FF78ACB21 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 56ECAFA4C28E74E2E2888F511B86E35F /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 5718F99C8AD0A45A01A5991E511B1AB0 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 576615A62CCF01EF288B542629ADB6A2 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 57809A890A2325234AEB3EFF03A9CCFB /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 5782475A5B000620FC63EF2A7980B76B /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 579B692837FF1A6468078CEA7859DEDC /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 57C2571E6F4703A0B6CD237B4CEC6DEC /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; - 57C9A6DC94D054D443301AED6FDBF926 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 57CEAE5744147AFDBE5B69D1B05C0320 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 57FEA960087566F7421F1A598F2DFAB8 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 57DD7A68CAE989C83B0012BE162E2A24 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 57E75419F6445E84B471503E102A4E68 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 580ACC587414B9802EC19A1A030175F4 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 580DB1027ABB78299355159A7EB54CDD /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5820002AC47A904ECFE57A31695A2041 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 58366BD2BA7804F347EF9FD17EB18D60 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 5844A68D6B3B4D005BCC46ECB0CB222B /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 5847F83F1511FFC78F368047BF91DC5A /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 5853282F8FFB3FAC55D2507B207565D9 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 585F8B38616FE9A0E6FD8F2497DE3C9B /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 5847EF3E88F8586EE1EED4D1B5E6FFAD /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 587C7FDA38BA7560CEFA457CC7C60308 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 58847364CEB96C62831ECA9421BEC4A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5893015E458EAD2ED40E594412F3F775 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 589518191FC005CA3EF3ED96614FF89B /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; 58AE31E09B2E2FA3A5B15DE7150AC88B /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; + 58AFE978C3D3CD2EE9D90093B21B77E8 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 58B465479F0DE2A6C39460B1013A0338 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; 58B64C4BE5E0B729543B8C2C893884E0 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - 58CD34121685C6D6AE7005C060A7045B /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 58CBABEC94E70081AAEE2424463752F8 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 58EB2B14916B3055E72BC51BB66F56D2 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + 5900A6B36CAC4D2231B49EC3DFFFB96C /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; 59023200C0F20F3F6A0E5921DE8B6716 /* GDTReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability_Private.h; sourceTree = ""; }; - 5933CAD4DD5ECE0887890FD93DB82486 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; 594F6298D5A3FF425E7667904063669C /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 5959AE39C14A8819B5DA39F68FD8CBC2 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 599CB421E408E13C49BCEF418C589CA8 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; 59A64223174653A390E391870F8CFCBC /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; 59BADB0D709C0168E6FFBA9FB282C696 /* GDTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploader.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploader.h; sourceTree = ""; }; 59BFC8722B6941D3B037DB30FA6230D0 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; + 59D15163BAA4BC949F7E2166BDD99887 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 59F57304B8E6F2DF74420AFC132DC25D /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 59F794A51B1D3BCBD1E47EC5D497217A /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 5A133FD543B1274E44C44D609C59AC63 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; 5A292FE32EE560887C37DE2FE0FDE458 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 5A46B6FCA029E139372B7F5CA1B9500F /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; 5A46BDA79D3DFF1C3023FB47BFA86099 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - 5A4CD84A03A2A4B38D5FB2BECB39F19C /* 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; }; - 5A7198670B947621667C80A667B332EF /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - 5A765F8ACED619016BC5A4F78F5CB63C /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 5A5B58AC596FF1D31119BC9BB74E7A65 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; 5A9B3DEFA1431597E451E5DE29D1828D /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 5A9BCE5AD36B5D64FB7A5386F90E0E25 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; - 5AA25AADD38A447AFF7DD16EEBCBBBC4 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; 5AAB0B583B5185ED50F89BBC10F45D6A /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 5AAE8E41BAC9759B900C505DCB9BB778 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 5AC13BBD2B6DDDED8D1B8741399EAD54 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 5ACED9F4DF79E95A18766C12251F1609 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 5B187F37104621217E6D17605624F651 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 5B27787F529AC269BC648A8B1420B0AE /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 5B3010582BB4BE79701A9A48C3BA91DB /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; - 5B48AA96FC4E5BE7F53E5AD5D91CC070 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + 5AE4E6D37C942F20AE082A5C3E8EE42F /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 5B3325F6C4A1A04B8F1C8AB907EEC24E /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 5B449EBF4FCCDBA4E251E892F682BD4D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5B537E1480C08251B27BF44AC40974C9 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 5B765178245272DC9CE07ADB0EA27BC6 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - 5BB74003C0C0C7D47A9ABECBFBF79F10 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 5BBADEE8B615E8B44EAD4B6CE5584DB1 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 5BEB86911BC3F664FDD33F357B198D0D /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 5BFC68F0413B4C9A826D7B5B96793F07 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 5B96ABA148C8C2709FC87516DC45228F /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 5B9F406C1C9FB6617BEB005C8E98781E /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 5BA635C89BBD91B13AAF3751ED52A8A5 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 5BBE09D8BC9D3CA679020FB1EE11D644 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + 5BCC2E165A8C0C5E57E07B2B56E1F37A /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5BEDCB5D17E18FAF51FB493BBD35A3C0 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 5C02C1E9ADA14141F2E3B91D5BD72138 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 5C08A7A965EB2383483891F04531D488 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - 5C14787C3D9E2543FF595D4F057B305B /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; - 5C2ADF7083329363FCBB723970AB368D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5C45038DEE219BD064B99157EBC2D912 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 5C66626C896826D1FE5176ED98C59AED /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 5C7ECCAA8D0FA348B0372B97A803A62B /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 5C859002414E92A52A5137453712DC1D /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 5C8E21CF56ECF5D26E3CEFC6CE23D0B7 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 5C944C227ABC1536A052CFB87B130DA9 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-input.a"; path = "libreact-native-keyboard-input.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5CFC92C8A9F553346459013CAFD85519 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 5CCA785FA99DC148F611B5C6C3AB31C7 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; 5D0BA49BECBA977EE96145FF5714A5F3 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 5D4BF49C398BD09FEF20E09E3D91D2BB /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 5D1D1E6D24035135D70D5B0FF632CF22 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 5D4B2E472DDD8816EF87C2E30E341302 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 5D4E9E7618FED11FC874BDEAE4A0FAAB /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - 5D4FA10B08EAEAC5FA3BBE7888B5737E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 5D6987D722A6047F50A05C5C98BB4D26 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 5D846DBDB6DEAE5491E4B59C7ECFE288 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; - 5D9C66031E52E764B6BCF7FDE9CE3D55 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 5DA5F6B8D2A6F58EA44832A16CF89DC2 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 5DBB3644572377E6227E8F0A5674372B /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 5E2B6AD3706960E23A21BA9D9B026055 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 5E148A8AD46E58052ED2D2ADA498EEE3 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 5E1C8402C3E642F046EB336B4AFB5B86 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 5E20B9411F931CDADBF3317807A5F5FC /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5E6BCDF29D3955943DF8B9519734A73D /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 5E7B33BB49E5177A2B1BC344012308BA /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 5E7BDD84650A291C7EBA3730FCCADDD3 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 5E8B7FF0B07871D9A1C8D316BB50B6AE /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 5E9D85D29B56F03302A77FB682329411 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - 5F07A3BDDE3CA164C9FD326A9150A132 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 5F0D8D6369C2064A4C610EDBE99F7690 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 5F142FF8DF455A8478AA740653779631 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 5F53966696F8F67C32E2F9F18A15E391 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - 5F548CD0F6078F1CF7512DB8977556CA /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 5E86E683042BF472105F52DBCF26CB84 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 5E8DFF222B5CFFA8BEB02227180255E9 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5E911CE59696A0FEF04160CA319A14DF /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 5EAE546DC43AB4405DBA7FEE69967526 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + 5EB359D7BD524A919EA6F9A4D4B01214 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 5EE8C79DA443432EA357DFEEB6C05B4E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 5EEA3E81725D3EF276A1B3A6B2FF4EF9 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 5F2F18B89E48A9E676F45E26063BF3F0 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 5F5900B6BE72B694A3F23E322A4E9F6C /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 5F7B3CE5659EFC4D1B944B572AE0A047 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 5FAC273F187940AD897DCC05A9CA265E /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 5FAC833575C67C7AD1A1527A720ED625 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 6044529B504553E2405928A546581C1D /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 608911C3E52CEE0623802BCB68B9AC7D /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - 608BCDEC8A03F21297F1CCCB6710D724 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 6096C9CB69F347ECB78FE4608E360A6F /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 5FD04D51CE5D0AEB2B519A68E6C3E90E /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 60434634BBF3E1EF47A15A3B8E389A88 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 604BE1DA0F7D231747F98877C94DDC4D /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 6081C58C563E282A5BEC0262B9287A9E /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 60911FF1F8A388840484198157C69D02 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 60A95D7A6C351111625F9708F97A0CE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 60AA29285B90DDC9884A6CE5AAEC390E /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + 60BA70ABB0A5CEE1D278D82385B27A95 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; 60D1D312623E33B7A38749C5DFA66DA8 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; 60EC44FC576DF3EBF0F471D538CF0799 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 60F004405BDCCF4A63E5BFA40B429733 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - 60F63E6EEBA4EC4855EC5155FC5B232E /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 6100DCE535D34DF87F374BD69DDEEBF8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 61053461CADBB4522DC1CA7AB61F5697 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 6128E2E0C6FF37F4CE812105EB3347ED /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 61A811A9EEE91452903987BEC43ACBA5 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 61C533A8E0968A0CAE5C292E79FAAFE8 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 61F603C852ED842BEA31D284324E81AF /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 6219883BA7D5FFDF1BDB5E612F97315B /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 622C12FFF0D345ECA031E4E1C62D83F6 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 62430ADC842BE7A615225229BF8724CA /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 613F3C7EF65C17CBEE1B1FB1A474D958 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 61ADBFFEA7F7BFE0E7EAAF879F636B7F /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 61AFC53D38AE61A9FBB42B58F86B0A7C /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 61E93DAC694E327764A19EC01BF1E4C7 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6246DA46F72F7B988BD18ACE234586EA /* 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 = ""; }; - 6281A3D231005442825FFA9A1E8A8EB7 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 62A1719F93C8A648504DCD2B3D955388 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 62A83EBA9C638C00FA33F0729075C556 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 62B9207884E00FC148DFFEA416C93D4E /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 62C786E86B50E39341F733E7082DFB83 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 6337D5A76C8D1C649F1678497D08873C /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 634B493CBEC263608C0B23096186E37A /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 62B9D18CCAF589880A35D98299E23446 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 62F23DFADFD7C1BD95A7F91B0D101DC8 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + 632D734EBF072B36C92E49CF98712EC3 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 6352469D352EB3CDFDDF55A3201B6CF7 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 635BA6554FFB1530CDB77E46994C2F22 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 6372E20D74885C506A7039DA9E1E92B5 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 6388FD3376A8816F4CB9B795094C3949 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 63A705AE48A30AD67EFDE388273D1B3C /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 63AA22C732EA222AA0BD157679AFC845 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 63CC44B74154706E64AF34CD3723A881 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 63E253F25E6F03406A253B8F826FBBA6 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 63E35ACD97B399AA544D30AC6DF3FACE /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - 63E65247E228529409F5ACD959F8CD3D /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 63EDA347B70C089C01A97CF736CD4309 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 643F413EB870ED5A3D3141A7E83DB9ED /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 64677585D3AE031A16DC431C04D4EFC3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 64897C6F9812F8293BE1045CFA69D513 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 64A0EED7740EBFB115F934F278F76ED1 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 650E82306DF8D0E3742EA9D069FA4D83 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 6533F391047C6B9CC29AE500958528BD /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 65603D0A600B757BE92A2AC67C32E095 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - 6565D82479C35DC072E05F079F25F281 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 656B24CBFCFD017F4CD8D3C2CE6CBDDE /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 6403CC8E224FBBBC23AA1751A737A21E /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 64256F252274D3A8699007081DF39488 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 644CDD5C7FECD32BE70294468CC33FCF /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 6457F62359D5AF44E194FD0F9CA3D68E /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 64856C5699DC3C8775286922F9E37B4D /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 64D364413691C778F21582D89FD37B82 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 64F4D1B7D9CA627AA7A04C4BBFC927CE /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 6572D7BCB0C0D9916F510DF77972EE7D /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 659B0ADDCE76E43B49B8AB8132AF43D4 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 65A2AC7C151D3304C515E8B87C31ABCE /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; + 65A885C83B69E89EE743E1A0A7D9267E /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65FF02A5D3FE9160258A87326D06CEF5 /* 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; }; - 6606E37A9C09CA729C7D2FC244FEC2A4 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; 661B96714A028FF3735AB243B40A52F2 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; - 663DF61785EDF50F0E462C1F5979D2C9 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 66606FCFF5F5FA60DE687B316C7FACB2 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 66896C98AE9CAB343CADA108564AB5EA /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 669D982572D28923DCC11393AF50589B /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 66B5B2B752B7A47FD8AF43C90B4DBCEB /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 66E7435E92022103111ECB2B3C815C98 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - 66F6E12D536ADB1C538E8561F3349296 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 6705BB7EFD85D083C3CA3150A8938A69 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 67286200A7DBE3F2CAA8A84ABC0D6EB4 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 6621DB48196F8D256EA0730409A00AB6 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 663B9E0F053B534635FDB576D642174B /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 667F3BFB62F122519FB99A3D0251AFCC /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 6691E96B148B09DF302684A500CA3A80 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + 66C5E1BD69600847A1B33F947722ECF9 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 66E4AF841D8F2BF5B4E1B7A3BB51EBDE /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 66E67D54611C3F741EDE2775CC1C74DC /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 672D35F1B37F73FB06F71BC116EC3C15 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; 673DBB2243E639BDD8C7E82236BD7565 /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoderInternal.h; path = SDWebImage/Private/SDImageGIFCoderInternal.h; sourceTree = ""; }; + 673E2FF2AD11DB9BE526F5B2098DB323 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 67607857655CDAF9DACE793EEC13786F /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6773CFC3CD5EA288DF36B436EC473D0A /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 6791C2D7588855BAA3807D995D2AF146 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 67D0B49B14BAAC56A1964D6EFEBAFEE2 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - 67D9ABBDD70F27066672B9AECC8B3B32 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 67E05BBDE8FD5CF74A6ED70C866D0D20 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 67EBB5CDE086D176F33FD00BE1BCD398 /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; 682F6E4792E01F83E62FDAE84681DDD5 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 6843CF592A1AC8B5AE7185223515AA94 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 683BD0F62B4E7C43F38352CF3A511817 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 683FC744AAEA5CC4585354728561C685 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-tracking-view.a"; path = "libreact-native-keyboard-tracking-view.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6895BDCCD284C6F8CDC5AB0F67F22F5D /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 68A742138C374705F38D264CE064DE8B /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 68DAA8DDC78D988F0A71A01A1BD4B733 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - 692A0BEAB532D50C39FCC91D745FC49C /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 68B17402AB245EAC828F58E2D62F5150 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 69021CD0329E9C6EA7DF13D36EE6AE17 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 69319F03CE5E5C62BB0E8F87AC0D27EE /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 69432DA688A5254C56D23D061845A528 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 69469A9DF3E2863175A9296586E7CDA5 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; 69549F7167A5976E3F0646387CC22A36 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 6960DDCA7EA96234CC36AA9D55A9BAE0 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 69897F67B1CE0D41A709DFC6B8EC563F /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 698FE0484A539BB14D90E0BDA75745C3 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; 699B8304DAA22EA6D025CDBC9BC2DF39 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 69A09FD2FDDFF6EDF3720803EDE86CAF /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 69BD33148C66110CEE2BA1995A01DBFB /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 69C0FA574F6E2FC7F6A2131FAC2F557D /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 69D4060D1EA021856193B54C9D39E758 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 69E5646F1A4718C6288E62CAE555592C /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 69FEA0CE2B56460764B2EE0353C91875 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 6A279D5DC9F3692C129B20E9B873445B /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 69F9C5ACECB420400F3061D7B095068C /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 6A0A066BEAB1661F706F8E216290347D /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 6A3ED46A156A912B7EFC28D9216E415C /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + 6A60ADE3BF08A5523805361E2D21254C /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 6A8094FB9C0DB2FA0F33E45E5CBA6CAF /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 6A8A82725A1B7969CA9273A7738DCCB8 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - 6ABB56ACB5DDE3D19E6003FA462CE393 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - 6ADEB2A2DF415846ED9E61505E0063FC /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 6B19257A0685B3D5F7675288A71E087E /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - 6B50C53F771CF8130CFC0904AE4BA26E /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 6B60C73AC99DD05CEA3593C13D5CA201 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - 6B6483A25CD832C95A33A7E589D46901 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 6AA8B96581DBD6338E1DB28BFB424ABE /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + 6AB9EF3B0D94BB66C0A7D8CDA41D8E19 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 6AE018BDB38E30FEFA9F2E4E04212C3F /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 6B369F72D2E47B69D55228318BEF77D7 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 6B758635E567F2DCA8C5480D9238B2A5 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 6B77D6B8571A69639166B9B0FB23B341 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 6B93C760245F47DF56037BCEB268CEA9 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 6B7BC4A3AB982847EE799E6134804887 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 6B90567EAD479807447C9599841BCD15 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 6B96B93533AE26582BA9FE999710B9DC /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 6BBAD0618ED4DD529E5618027E3EA18B /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 6BD5876FB2B56E1A45C9D6FD5691BAF6 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - 6BDBB8B42194CD77021D65EA335BD782 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 6BE791B190A55F5493216ADDF930FF6B /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6BF300D9CD2D0C5E7616748D5304F44A /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; 6BF4F22DC8A83366111A7A756E4A9AA2 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; 6C1E8D7E2C3DBFB59FD8C21BA737E9BA /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 6C2C0676B2D8BB0A88190CB1DAB36C00 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 6C3A7BC43DC4553F06DF196DC67B6DCC /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; 6C4BF4CF294ED6F6424B645B6BA0174A /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = Firebase/Core/FIRDiagnosticsData.m; sourceTree = ""; }; 6C4CBE67363B2232C57BD2CD42D32EE1 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; 6C5A87B30661873B69238B2AE7889984 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 6C7422BCC5CF5CA60B228FBBB3082486 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 6CD690B59D3D6AC062CE96402C44A454 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6D4C3338BEAB4A17E8FE3F52BE87DCF3 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - 6D5BD3615CAC29F1FFCB30EAD767F4AC /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 6D6D70295C27DC7479939B2A1AAD1218 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 6D9E109EFEE82B18E047DD6F88138F12 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 6C6CF259A44CF9DF80BFD89DC5907AC4 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 6C70C81EAA793BF9FB2740627D363F8F /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 6C76CB9130520E8E90ADF36C14E02B88 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 6C83A45F34C05FDC9F84E01F32F46263 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 6CBC07204784C24EC12D85E38CBCD553 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 6CDEB1AD748B5E1EE21DDD075ED523A1 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 6CFF0EB764BC9AD5478CDBAF1F1616F3 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 6D17941B59F44323C04C1DAC48280552 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 6D3356D0654ECCD9F91792A399CBEDE0 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + 6D74D68581B8E52A02DF6B740B617A28 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 6D7EFB6D3C136BEA9E7C14E8EFE61342 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 6D8A8165597AAEAD5849EA515FA16255 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 6D8F16770B61D203BA7586DD93BF5AE7 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 6DE0B56F032CC900BA568EE3A5F53A9E /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 6DE5FE1436D20CF01174346129817D21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 6DF1C6B921007C7AA45B2E9E2382C4F2 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 6E0A0022D5A37510935F30986F180472 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 6E0F47B23EE7517CE5E9B8D2AEF2BEEE /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 6E51EAC008EF7B39A2EDBA5F14D745AF /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + 6E0142FE240F50CFE6EF1663C5229B8A /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 6E0710505B28D48508BF15A39FC2F659 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 6E398C60B85FD0481103C79C6EAE25AB /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 6E9AD8818B806CBDC2E64036364B7256 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 6EB2673DE746F1EFC09C0A83DF8B95C0 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 6EC615EF4BA05E27B26ADE753138A38B /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + 6EAD38E56CBCD12D7D253B809C78322E /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 6EC0281875AB169A95463DCE7B616CD3 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 6EC8E6C3EF32A1CAF14738999DC122EE /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - 6EE082B6C44D1037E68F687128E2BFBC /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 6F2AFB15C5F9466F28C193F687283981 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 6F40BA34FB244DF34C7A74D3B78F64FC /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - 6F4D65C3BBDFF51BA6D647FD98259983 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 6F5D2290CE065E4E037009E5FA9E5E33 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 6FA5383284FA4E5D77AFB961CC32FEC0 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 6FA927A7B51C78FFA7D0234360BC62C9 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 6F108073C5E16583055E667DE547B61C /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 6F3BC7AFDBB9E36B2866BEDE84B27639 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 6F50D868A6D8C20A7D11B3718ECF40DD /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 6F7D656889924B825AEBF62161AB1260 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 6F973FD63C7F1B72112F3D18E7D73ABB /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; 6FDFD1AA298778B97E9FD7529A3B82E2 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; + 6FE80290C34F979904EF564E10AA0F34 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7024E26CD218E8F1D0CA346F769979C2 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 7047C729FB0A115C5B0ED9EDFE53E4CF /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 704BBF4B1E55AC7C888C769D7BB7808F /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 7051907ADC28F1E2A6EF29AB364DA687 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 705C3902452AAFA23E9CDB1D9A2A760D /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 7032494EE9DCCE7D8E2EC9F4109FFC32 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 7042D27E266BDFDA19BA0125EBBBA32C /* 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; }; 7078F477550CDD77D6468339C77FD469 /* GDTTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransport_Private.h; sourceTree = ""; }; + 70906589313A0FED299955B12363520D /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; 70AE7ADBC1CC8EE3334BFCB63B135185 /* GDTTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransformer.m; path = GoogleDataTransport/GDTLibrary/GDTTransformer.m; sourceTree = ""; }; 70B3649809C89A08C43C4F43E9E65BDE /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 70B68E27F56FA11231DF307D85D30760 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 70BEF5B778B120C589B54B4C37B8C399 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - 70C0B89F860A1A27231D6E32750D7567 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - 7117E78C426E35F3503896BB53C1081F /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 712E7E9D6D5EC20B9405BA2FCEA2CB60 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 70EE458F7665755CBE7A61B543F829E6 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 70F7C71414E7A687F23D5D9F0F2AEAD1 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 7138F704A6445B722A1765D2C6BC981D /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 7142B87598A2FAD8025EE5B67ABA1986 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 715D0CBC1A0CC82FBCC264DFF0172A1A /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - 716C23355318130EE0D94B9F031ECA23 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 71A73B7D54D1BE6342190E29E0329133 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - 720A8300022B6EED3F587923DCA9DE59 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - 72123E7D02C388515AB2243BC69C8B07 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; - 72137B6EE09994AA6387B176220EAF01 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 71B389CB5B56CFB334BE535D2476F79B /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 723B88A4CAB00299DDE80C2E7BFE4B8F /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 7249C46C18812BEB1380B79FE15AA003 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; 7272451EC2E80622338B0B64A2A335B0 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; 727EF25DA0553E17DBF96ECA72544A2F /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - 728362B91413E35140F0F638EBBB82B5 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - 72896FA81E04D7B430928F71991B73B5 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 72A255A67FB890E9C38AEEBB2C8C50BA /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 72DC67D55BF955781FEB320C292DE8A5 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72F55CF0EA367B6E885B001290A7C270 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - 73125AB98C6A7276197AE7AFE921B8ED /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 732709D75AB31D0A7F0FA6B1A2891C02 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 732AC42D7A5B7B4AF72D1F9811321660 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - 735DD463B733D6480E74D6EB513438FA /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 7361A14E6913E84550C1DC3F58C2D8DB /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 736D43C55C3596EBAC95DAB6D9A5B191 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; - 737AC3F710407600C85F60444DB9E625 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - 739B56805E685EF005F087AB1580E6FB /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 73B0B778F6130ACAE9A36E5A73B619E4 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 73C46F2D672C59BA5F9AECB4DDEBC887 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - 73C73917746D1C706402084F66480D3C /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 73C9A896A97EFFDC35C95D9832CE6141 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 73748A783C6B7DDB36A887E64DDF81ED /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 73898F0A4372AA1F40A34F41671305FF /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 73920868DCA9D64003E58186509D3DE8 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 73934CBCB26D587781880AFD9B873AE0 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 7395B5C5E4D425DC7DB88ACCFDB5A03A /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; 73E2135C8D025A56637F6E9D4ECEA339 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; + 73E582A85DD07279E40A4F9CFE495665 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 73EBFB2DAD1AD96AFF141E7BF795ECBC /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 73FF2C24AB914342BD5ABED89A168E56 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 7415F8886B539E195804535A4DA44C5E /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 742E5440B777A8B7B7A9FC704D40329C /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 7434BF0CD9A334F8BA077BD5E0DC99A7 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + 74335971DC911411BF969612FC477D72 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 7438CA751822D791B12E58204A868D57 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 743E39A4070D10E7ECCFD930E77B52ED /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + 7453488582B0D2756E057B427EBD653D /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 7453FC765B3BE0CACDDC5F0EA1BD0812 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 7459ED2A3AA1A2C6996F6C26EDC68100 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 745D19792110F70CAE9BAB6DA63DBDF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 74660FF5F13E46FC9DF4685232312B5C /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 7478DF8D8A7391F013C061E011395DFB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 745A64730A3479DCBD1E56C51BE7F6E7 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; 747D5203AAA3363BF08A72C7CC1D8BE6 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 74B89B090ACBED9661241F4684C2BAFA /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - 74C7ADF392788CC6CF09E6BD782E3048 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 74CEE254E63E0D6884439E68ED87F2B9 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - 7562E049ADD629B8AE223457C9B2B425 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 74B463CFBED62B5B2B498765818BBE90 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 75038038FFFF6C1ACEAA73365AD0316D /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 754EABC0EB1BE0FFB98FF8050FFAF7AF /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 7564A1F13E29A4E11BFF153723BDDB4C /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 75690ECDB02CE2CE7630C26141D36257 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 756C6DD3B919B07F11B61CEDA6898ADA /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 758A0D976C7B66A9F730027FB1B32121 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; 7590716D4AE3BB0E33F8971DB764BD8B /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; - 759D024A83871BAB5A9AB81DD714E418 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 759104B0050089B19CC3C65417077CE1 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; 759DC169D8E4D84047688465CF775CB5 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 759EC1D0703FA80AF904D124A62306B7 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 75AA6DD00A2478FAC35C07DD73FDCC61 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - 75C0C7DE8CA78A85461428120CC3F9A1 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75C8435C09230E8E776E52E0F584FF19 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; 75C9063DE74F66137EFFB7D1CB6757C8 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 75EC17E421E4E64FC4C136693256D120 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 75ED6A2FE645B4C2CE9C0CAA112C005E /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 75F6D18956224424C34C25FFACF64AF9 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 75FA850F4249EEF039D14074CF29791C /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; 7607A9B0AE15AE2637A412F178FD449C /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 7625F33A5FD9A5D4D791A97A180C4F0D /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 7629C221B1BBC71159AE39E937940741 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - 762C67DDB2F53C56F04D6FA1783B9ACC /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 764DF824FDB95FD1D3BAB356814EBE4C /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 76572092726857D1AE6D0A21BE54EC1C /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 766087EF50DBB4DCF9CAD4E38555FD42 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 76936D115A1C29D524D8187A9156402F /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 76A7FFFA0B8D5C1B33F48EA3860C5457 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 762A2EE810E1F78EF4BCD75D95B0BF0B /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 764CA911BD9503292FE83B55EB9BB8FF /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 767477ED4C5F319854580DDB9C87446E /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 76A92676666A7BB7E23E63E461B209BA /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 76ED9D28EED0243EC7E23698DDBADBF6 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 76C121310544F2A6D7A670B54988D90D /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 76DDB51F2393776542183257E816A139 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 76FB7D1AF654CDA51148A02B58F668D1 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 770527F9DFBA601C0169B1167B38979E /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 7710A3504404B339F1B69B78B945F8BB /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 77193DAAF377528B186328C5EF992C1E /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 77404CECA6ADB870A32FF8CE54134D15 /* 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; }; + 7719415B0BAFE759FB2C8D5C5C9369FA /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; 774A4843386AD8B6A0B481C2BEC76830 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 774E139D73822D50DA1B206F134BF63B /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; 7777D1206CF772174961C6A8960477F4 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; 777F3909D5F80FE07601A2F5F6256669 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 7798DD73DA86B4D47929B732B687D6CD /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 77DA376D4A149C74CBB34B2246AEC0E1 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - 78026C44CB4771A074295CBD48676832 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 780592FAFA2472D74CCC949A8DB2BCB6 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; - 7824FF216D45340CC6AA893A3D15946F /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 783EDF65B20C191BEFCFC41FE0C3F895 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - 7860CB93BDFE379C40415BC240274635 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 78939B80F32C146E1BDFBF7CC0808672 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - 78A20DCB385D4F056E25D80D3132C378 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 78A62D0B309FC7F10342D5940344FA8A /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 78BCF22F29081BBA22AF74792AEECAE4 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 78C9E61EDC0117816DC79B10E699FE24 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 778735A5E92493559305A10863352B5F /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 77EB82852535283CE02345BE4C8E40EC /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 77F3C06757EAA6EE2C0CE7AB7D1B7CE8 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + 7815570FA654A6449AB6FC6D4391B571 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 78321E51A4A540D13D5D8BD2DA2809C9 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 78D32E195FDA5CC0224ACC288F463B73 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 78E35F84003A303C89B2EF6D71A90F37 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 78E97FDAF6A2480C048C7D59A0F1089B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 790ACA1CC4E6A8D90186D62F2D2E1E51 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 79603E8BD45199E5B972AA82262057C2 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 79207914DE9E3C44A552147C33D65820 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 793A542DDEF956C411C64BDB67CA815C /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 793C439B8C3BA2C4EA8F0D803309BCF1 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 794BA5643428B87EAAA55E7C466C178E /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 797E5CE06E9B9B51140134FE084E6A9F /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - 79C5388E824750884E4EB7E24A809B4D /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 79CBD3723711AE79AC36F658E2A1988E /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - 79E5ACC4F6FB79C540190270E906A01A /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 79F82B24DE96786FBBF502CE7923B30F /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 7A2484D5B2BC865802F527875319FFA4 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 7987143BC8816F168E481440F75DCA6B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 79AE735250CAF710BB13678CDD453906 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 79DAA100D0372D6D695BD1BEE90566CB /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 7A0047149EDD3362290D3B27E1D65AE7 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; 7A26B3BE96D2E05156203DD41BD0155B /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; + 7A41746DE0A98E4B82C4C89A3397C9DC /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; 7A70667C04F365A3A52BC558289A23F5 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 7A8579780CD8BDA7780FD25C558D7229 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 7A8A5EC10C45A2A2B013DF0FDB09FF1F /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 7AD211281D0C8D968F13A0FE65B7C5A2 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 7AE47FC245F21A86FEDDF8F9951FD8E7 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 7B1216DF5913FC67AAAC23A8888AE9DA /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 7B16EC2B5C2B0219D785C69C18D3A68A /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 7B1A13E2CC09905F29BBFA671653BED3 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 7B33D83FA8DED2E998E91F2C1409CF98 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 7B3B441E1D796AF3184CB0B15AC6C639 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 7B58F66926DF66A28AF4701D64EAF9CC /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - 7B5E5B409D57DF790D19E9EE422A74F5 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 7B5FD04302A048CD337ADEAC861C20CF /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 7B6172DB9B95B5227C370146058A6019 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 7B5DE73ECA9102A21C8964540F74B4B2 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; 7B677BD8E1DAFFA5B85DEB6276606F32 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 7BAD59F6023F272A3C31D15D2A6B22AD /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 7BB8B9D9FF1D265B60688407B6F2A7B1 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; 7BD618947E6AA997CA825320EAEFFECA /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 7C137E8A620B6800FB646A6A4D436298 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 7C312DCD77A3F40600860CD64F411C56 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; 7C3EBAFEBE08088002B1F7333E2E81FD /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; 7C3F1CD6A3EADEAE4CF1D0F93935D414 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 7CA40B56292E7634B9E50020843B9B05 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 7C4A89A5F38EE3C48F7DD6A1F7BAEA86 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + 7C87F803809CB9166D92FEB4075DE6DD /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; 7CB5D3ED9C2BDAF2A7F5063AA4CE0C19 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - 7CE1B630A3A7D71EDAB3C5D0F28185F8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7CF9B04F09A6168A21F276707486B603 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 7CFDE95A6869C12FF0424853345B9B08 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 7D0F91703E6BBDAC31CCD4A9929CA362 /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; - 7D3D82F98484D93CEE6F238F27C8A15D /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 7D4F9AB6B1E729C0B6BD989B55E05E15 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 7D5E4B14E4C0207640F68130035D7A01 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 7D8DC56410E5BEF44835C88D61C76EB6 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7D911208FAC51D1BE487A3C73B2B0A3F /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 7DFE80CD1D3847735799215D0038E5B4 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 7E1B03428F68FC120BE4AADAAF25AAF8 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 7E251E72A90E1284708697322B5F0686 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 7E4D18AE30D9C07F8C3C6618009284D5 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 7D9426D6A7FB61A887D503ADBD24144C /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 7DCE9681D48CA655E108B358ACD8AE3C /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 7DDE9624A5F6DFBCD3AC7DBD6A9CC78B /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 7DE7843EC8739E3A31678AABD115CE35 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 7DF94D11757CF0C19E98C670C0B46518 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + 7E038BA992C7ACE80C4C2AD8D8EC6304 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + 7E1DF27207F1A5C2C963E7713C734555 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 7E23BA7020ED443E0AD49AF24EE2A911 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 7E5E40BE38CD5D32550DE474499879E1 /* GDTEventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventTransformer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventTransformer.h; sourceTree = ""; }; + 7E6F52EA4F16924172A07F5D50747553 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 7E8562A096DC667CF7F9AFA332F7B918 /* GDTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPlatform.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPlatform.h; sourceTree = ""; }; - 7EBC3E2D6ECBBDE8F45F99120D7F43AA /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 7EF0EDAC0274F23072A0184687BD5B65 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 7EF8719BF2F9E361B490C32CAB4032C6 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - 7F24E032AE04F05AEABCB1C7032A3AC5 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + 7EBDF44A68FBA375D60FFE9543F8E508 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 7ED69810CAF7C92E99EF316EF1F1D6BE /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 7F2008BAA06F83FEC23799BE4E7BA8D0 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 7F2C818D6FCADF26293BDB5D60AB1E76 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 7F37C83694CD9E95DC016CC53EFB3BD9 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; 7F382871D29FF65C4199214BF949CFE3 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; - 7F3E35EB18A335E7F683CEF8E1E51DA5 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 7F455304A67F7F226CABBEF3A52354DC /* GDTRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTRegistrar.m; path = GoogleDataTransport/GDTLibrary/GDTRegistrar.m; sourceTree = ""; }; - 7FA1960BD73DD5987082EC271C755E13 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 7FCD1A9EC34F755EB14ADD4CFB193E2D /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 7FCDD50A737A9B1EB610CC355943DA84 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 7FD76BCC981D42AB45C3F80A61CCB792 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - 7FDEB952A3B03752A63D907C714E9B38 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 7FFB4730ACE0DCB77A8A34C4015CD46C /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 7F533BDC208ED66383C167AB3E75F1C8 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 7F7156A23284105AA7C4121711BF1FFC /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 7FA68F18A14101923CA3305B869081B3 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 7FD3A23C2C73AF02C7B123F5BF72FD76 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 7FD61F0884C908C799762789F059ED95 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 7FDF6244B703C67CA6F0AEDBD4A41029 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7FE70E03FCF5F3D3A476D63FB08869F0 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 7FF33784A3FBD65650BC14499CA52D7B /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 7FFBC3986D0F1EA250FADE5DD7270A35 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 7FFC024A324BB2B1560D00D447B2735C /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 8012D5582D3EC343EBE5BAD309CFA435 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 801FDE00F084B3ED700B2166D5288922 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 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; }; - 80761E468ACFCB117E60F31425C695BE /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 807A0E4A7D921BAAE970FFB2AE0DBF2D /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 8097639CAAEAC14DB33641BCA5F76A09 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 809D7F88930C76D358E1DC90AC941F47 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80CC052214189F4974B1724F2FB84697 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 810123BB5B0262E2D71735D1D83C2592 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 80D490F6067594391B77BBDDA317E72D /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 8101CA79A5AA30456AA6165282972ECE /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 810303E8C157F8E7F0FC40012F491F1B /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 812806CFF56D0C611E2C594692561A12 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 813EF8E8728F6807FC791AA84CB01376 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 814814520D392A8A4AE97CE6CE0D160E /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; - 815A097A50483150114140D813782E8A /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 8107FA806405AE03A6A9EBDF1A1C3599 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 811A189C13279895F1162EF2A40D4904 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 815A9BAC42A50A2468F2DD062571EA0A /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 81925D74BC93FA6D687019F99B428209 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - 81C5B51E7014177A15BFF9E972CC951A /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 816FB35DC5903426E821F1995F565692 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 81A275692A0794199629EE2C8E4B3B06 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; 8205CF74FA0780A1B760D538A1E880E7 /* GDTConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTConsoleLogger.m; path = GoogleDataTransport/GDTLibrary/GDTConsoleLogger.m; sourceTree = ""; }; 8210FBF8DE752BB131C2C332056DDCFD /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 8222E6E89671DE9B232E57F3199A0EBA /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 82325A477E75BADD23CB0A88F2E29306 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 8266C442388677C2FCF13167301096D6 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 827510132A0156A9537A24136063186D /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 82BC22CFBE66213A5201EDBAD63E5D23 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 82E1F8EB4CEA730117BCBFB07397E65D /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 82FFD66E5104CA67602113F72CC240CA /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - 833F94A63A4ECF6AA0AD7F77C60C601F /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 82D098BAF796AD84A72CEC69862AABB8 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 82ECFEAD2FB0364BAC21E54B58A3A9A8 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 82EF58F8DD5FC7A85BEFD70ED49A0C48 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; 83647078B615B2197FFAB849A9CD8510 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - 83670C60DD32A046C142C279AD1BF0B2 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 838D58F01A9F34096C6A6D9A4E2C8DB6 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; - 839512779028DBA6CB110199D87FF7F1 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 83C9E55BF533A45C735F71912882815E /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 83D05ED53DF37014DB28AD717BCDAD9F /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 83E41EB031C72ABA2A58994F42A1B667 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 83EED80239CB71BDC2490C075F9655E7 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 83EEF844542D0293187BFEED661C90F2 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 840F678749E054ED962E71ABD47D958B /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 8430F4AC10659A77540FB906DDD5D2D3 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 845271E161412CB3ECD93F8ADD700547 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 8454051B9054E083A8BBA22AFA4C34CD /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 837A8379C8855239AA7C291770C26657 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 83E380B95E21AFEEBF77A120F248E7CE /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 841B25552AF59007AF5F708CA47B8DAA /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 8434E779EA668D91BE2B71D64051100F /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 844F783A7D1E9F58F9CF8ABC7D95DF5A /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 84997290FB077D9DCEA80D70AB04A5A3 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 849AF6A0D80825A805E24796EDC2E708 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 84C2DB33F45684C2910CEF1476050604 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; 84D2322CA9EC6811EBA2D12ABF5E0AD2 /* GDTRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar.h; path = GoogleDataTransport/GDTLibrary/Public/GDTRegistrar.h; sourceTree = ""; }; + 84D33921BE9769249475C3A87ECB9B0D /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; 84DEA6A2926AC579012A614F51820936 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; 84F63586A5781B5C56523DB7E7968554 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 853C5A171E7AD246F25C576E7C0F4953 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 85529CF7E1A03066A8EBBDA1888E4A63 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; 8554D73855D891F21F3D4A1CAA79A245 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 855D90E68B6207E87B932212D60C4B6A /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8571F91C4C8159FA2D998497D8E002FA /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 856D0994BC5738D396C97A458EF678CB /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 8577AD258C8418C96654C37717002E9A /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 858A831F7A94869D2392B130C501CE40 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; 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; }; 858F9BF8E8BB27F1507081A9B6AFDB00 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - 85C2F810DDAC6AB0EDDBFC2509AB8969 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 85D21287CC8CD2E34D27C3CC3F8955CE /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 85CD6CEA26EA2149C045B78050DDE5BB /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 85DF79FC11F6F499BD4B5E580BA98DC2 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 85EC2C5BB6DECEAE4642CA0FAFD0F187 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 85EECCD82C8A497E8D62468A7260FDA2 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 85F0BA1E799818CCC8C9D878BB4A5A7F /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 865294460C9058B3F7E1DA3657B9661E /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 868C8DFBC824AAFCA308E7A59CCE30F8 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 86BFA127CB6E41E804BE65C9570EBBFB /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 86C296EBF7A8AD078BB9B224A1567B85 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 86DCBFCCD3269E27258B2BCBA21A5732 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 874F6931152DE68462910E67CF869C91 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 876DAEBEDEE01F239B3FF5D0EF30330A /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 877740F8C7E2BA275F27588AF839B3BF /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - 87808C98E5B3B22FD51665EE19826AE7 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 878CD185F38C6B52D66E8DDE2543041F /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 87F8861298426662518AF8C56468A819 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 87FD40DA6748C6061788970380646A26 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 88007515B11CC2503E9F5A6033E51A95 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 85EF388BC987D2243E6DBEBBCE0CF1A1 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 865680AE7D0D81226BDE556B6B400A0A /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 865E39F06A42C6FAC5C5E86CE8717766 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 866B8BEC747C62D75D22399E190F5E3F /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 868372E35A16798A8ABCDEBFE2E10337 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 869A40360F52246AB0109FDC1432CD77 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 86A8EE1D2F8B8AEB69DAEF21A92DBBD4 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 870EB3DE4EC6FE75B94939F40FF0CA8E /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 87179650DF0B52EB02B734E5424A0BE7 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 8739F636733F045253E3984A04D799FC /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + 875CED08558AC67D42F00C1878FB41D3 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 876EB62D00154FCF978243A8C0A7C1B8 /* 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; }; + 87D95E98CFA8AD57B15F0564D10FB71F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 87E9D60A4716E741764A6CB9588AEB79 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 87F1A0E4809C3E1D5E8B51C00DA77B27 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 881A995EC3D900DB72C4272B69CC47AA /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 886796CEDF20A83B0184CFDAD0F61599 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; - 8875F1DEF34576C96EFD8153CFB944E2 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 88201CBECDD0934923BFE668BC6A11D7 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 8827799CD3622DDFB04521A953779AE8 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 882E15C3C47E299053A64CAC0A68372B /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; + 885AD8A471224C419BD2F62DE884E74E /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 8881B621F12A407767CC2F6FDCC171F9 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 889F498307EA1081D82E434001B02BEA /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 88AB30A3EFE9A1E50864D0741BD90550 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + 88B72F8FA21C764D08EDCD41F3225EC0 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 88B9807BEED08F60C9534922B5809986 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 88BF215051D44F917F48599E34BEE382 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - 89207DC46009BB0E33720E86E5E4FA19 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 89229B4A886BA8BB472EC585D9ED59F9 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - 89364B35EBA566E7244361212DA6140F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 89234B508E0DF2C4FCF57A1F9882150A /* 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; }; 8938B320492783985358B1EB49BD2B5E /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; 89727035FEE7F64491F5E950B5FE800C /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 897F6C2F1375F5301C3829E3A604FFCF /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - 89895D63AFEC6DFA892193DA1A398F55 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 897A6C14722EEA5FF364F2E0F07C02FE /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 8985DAE76335A3D2EE53D18D85CD06DA /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89D49BD0652C258529FB173223E9F4DF /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - 8A6AA08426C784ACDFEEF3D7B4B46AEE /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 89B51D9DC6352AA5D37729B72D1EAF05 /* 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; }; + 89DECEC5BA10EB7025185E6B80FEC4FC /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 89E859BF7FD662F7D787D8549B001AF7 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 89F993C3028B25F0742262F16CDB4341 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 8A0DD5A63AEC5703EA492659F41BD75C /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 8A2F0DCF4B8A954074992DE814A87BB4 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; 8A7D02799D4AF36B211CFE1A6CDD0BA7 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - 8ABE1F3E3AEB48B6FBDC2DDFC976ACF4 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - 8AC34455410DAD88E1FAA52B7A94250C /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 8AC3BBDDD55B3E89ADDA819159C595AC /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 8ADE82CE2632A8AFCA54F0C72E29F2B6 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 8AF97759381C515AC1ADE8E987FB7CED /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 8AFB46E7671EBDFB0DFC298E7CDCF138 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 8AABD05450802148E6D4E459183DA08F /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + 8AEFD94BD06B3B9C73DD29579ADE16D3 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 8B3CE4C3A71A509F67940BA9741ECD40 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = Firebase/Core/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 8B8C893A393FDB571F438043774B20A4 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 8BA82B07B02A0CEF2EC536AC30E823C5 /* 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; }; - 8BBC16EA3A6C090D1477D66570BA76FC /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 8B5ADC31FD186B9A7FF39AB89C8645E1 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 8BB833DB91F3C3F00F5659F874B8DCF2 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 8BCDDD7DB6B1E4894935BB2821D35D00 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 8BD00758F5E48D4A3B8218710D7D5C07 /* GDTUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadCoordinator.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadCoordinator.h; sourceTree = ""; }; - 8BDC33C800F1575A055B922793143317 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 8BFA64390F2297C72F735CF5C9DA5D0C /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 8BEFCBA577467637C7DA1AD12DA6F75A /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 8C03628797BA32EB5BD2256EFB7E4844 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.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; }; - 8C466854A0979F3A9C0FA018D4412FA6 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - 8C53B8B32A60013C1FFE08E8808BD840 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 8C5F3C9F1713972157126264F1A9C581 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 8C6D5819019D8BC3EFD511785A370535 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 8C9D6B2256DD82E66BB5C86F27CDDDAF /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 8CAD567CE7CFC07F2D6CCC206D1DBF78 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 8CC78AE1417EB5D10FFAAB9E9AEEA63E /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 8C74F3901CA317FFB3564E42E3A0BA50 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 8C7F41A208FFDABCB85C479F7BA211CE /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 8C8327DC370B5B24F3945529C1786252 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 8C92070AE5CB870A36179CB1D2FE5E3C /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 8CB547496BC9E715473597A4D9074BAA /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 8CBC206F357BD657DE665283FF64197E /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CF4A01EE627F61E41AA1DD83D6ED332 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 8CFC715693F19E44F33F66ADFBEB6415 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 8D0545F7A645289DBA3A922DAC960EA6 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - 8D1EF7E39CDB9ADE3B7F5F0445365A1F /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - 8D632F7FEE702D28967F0D0C60DF3140 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 8CF82B952363DA3ADAA89A7DFEEAD381 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D3724BBA27E2B32D08937468113E078 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 8D6E36EBB6C6709E2B246C46650DE2CE /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; + 8D7B66BD42BC878EA51C2BC82B338C1B /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; 8D8700EA442108B9065AFF53E7D01AF9 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; 8D89C442DB8259151B8917B154A8E52B /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; 8D8E80C03E67006B5C954DF4A58088BF /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 8D94AC0E7D29E04670A1DD77105A999A /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; 8D96597E425FCA8FD5D7F363CC69C5F4 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 8DB04111CFEA49C3BA0FAF650F134602 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 8DC10663C54F93F073F1523793EACC17 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 8D9AD324C45816C8695A7CB64332E1F3 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 8DAA3B5BAA964B9BDBC5480B164E96F3 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8DADD905867794EB8BCD2EBEA004EBBC /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 8DB341FAB1543F13B9E7D22FBCFB2CA9 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 8DDF27115B4335EEEE7D7F690F0929AD /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 8DED07EB4AAC59C266370F90AE190D7D /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8E0D9FED283BAC85D389D557D525869D /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 8E26B4778A2E346310E558D4C7BA06CC /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 8E2E495626104817BB58C7343494EE1D /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - 8E332ADE58C48E48A9829B67ED1DB3CB /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8E2E934DDF76140368BC00776843D7CE /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 8E3ABE8DDE076301985B03E9838E6E92 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 8E71363BC0A5016D99246A78029C7F3B /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 8EB34C9AC11E5CE0BFE1FA1797742279 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; 8EB7A76E1373478AD1844D4833C112B8 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 8EF43007D9007C90C3CC6D29EEC0085C /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 8F15DC90591319AE0F8169B8E142527E /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 8EC873DEE6E3D81E6C3D6F548B7590A7 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 8ECAD65385F5517D8358A5844A0A33AB /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8ED4271184378A662C5899FDD8424B61 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 8EE4BE67037C8C3B3579ECDCD9B7C2A9 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + 8F2013CC1164B735BEFB4E7347C9C63D /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 8F28466A1AE32C6340402C07E1C9ECCB /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; 8F4B754971C4EB9A9F7641A427EA50B4 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 8F62FB973F7CC7384BC59417B1AE995C /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F6719ADA43B59D3B4822E81C20CD371 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - 8F7EFA802B9AF054C0A6636D9631353B /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 8F7F6CFFBB5DA88C7B9A3E2CFBFE18C8 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 8FA886917FBAD8DFD01E5AC78D026B6F /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 8FC22E08AC1A0A720C13FDDF26EA4286 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + 8FC6E49F6394BC3947789CDE321BDFE6 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 8FE88BC6B1B4A461996F5D3F33837578 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; 8FF61D799105A3F47C48322386EDDD0C /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 8FF7FC362F63B268EE743A8524D88D63 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 9001CBF5857D2FF167B7FE7933AAF405 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 9013B402E6CD2423E8F50F42CDE02510 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 900B7C7EDA009C3BBD15C6E61D862277 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 90152979FEB33BAAFD0724D57ED6F6DE /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 90558417A3AD4FD637DFD00520357285 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 90A862A2A7763F21D80BFA6F4AF75AD5 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 90B36D5D73A1DC243EC79CF1A07DDC91 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 902409A68233CED959F0877C1C63B70B /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 9035E72802D369C7C7D38B73340C5664 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 9046263A87404FE2FA089678B448B3E5 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 904837736D2EA97FF81880EF770E0569 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 906608F36838AE9FB4DAF3EA0F93C1C1 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 906AE7707BBFDCDC9C23789A1BCC7234 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + 9087A343EAD796B5EF7708A9AE478E27 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 90B1F52B1F454638E0627016BCA69CF4 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 90C48EF77B7E63248AD939425395455D /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 90C4B9B16BAF8D434AAFBE951D305CFA /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - 90E85A1BB9680FBDA39BC205A60C7C40 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 911D6F23C6FB6C7954F8447BDB357F6D /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; + 91233D5077C4615EE4975D911982145A /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; 9124B005603F745AE8A26788BA7948C9 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - 918F11BCBE36C21EAD4CC3AAAF21B38E /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 91DE53C4047EF5CBF85E16D3333E140B /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 9200DEAE2A7570ABF704D5B7095EEA2D /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 916E0498FFADDDFC20485574E2CDD6D3 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 917AFCA2801BA90C79B13088F10DF09D /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 917E23C23742F8AB3E9FD3B4B761FB9F /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 91D05310B7FDA459B22F5746EBD8B9F4 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 9200C65635874B7E2D59DA1BC43B433A /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 921AAEF5A4FB1980C7831B850FF99EBF /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 9228F7A2A0D58B88756F464925864D0D /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - 9258960B2AA189285E786AD05D7DEF14 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 923A98CB4B829333F4077953AA880226 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 92403C0C7B1D4F437F93A60AAA768932 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 92997292DBA3CB53D6D368D48FDC239E /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; - 92A95E050A09DA25B232FED340228122 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 92E47B749B2D71B796E69BA4AA56D6F9 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 932FA24E79500381ED43D45BF87FBA5D /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - 938D0FF3A492BC685E470C27C1300F78 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 92C34464DF49188A61D8EF357F69218F /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + 92C99F31D68C55CC93087FAFB6844704 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 92D31724619E3321ABFC9D94C41AC44B /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 92FAFDF202C384CEE3BF03AC00043D82 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 92FCE4E36340938E13A3903617D683D4 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 92FD30F76BD772A62E65C8492AADA354 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + 9307AD81DBBF310B8BE3E4035DD7BA80 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 932B1B968EEB78A085F20790FE48C450 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 934EAEB70F86444DAC2278D8DD5B28E4 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 9396F9D8BB053CC9BDFBBEBE99A1E8E1 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; + 93ABDA1ECF9B8E7156F5DB8FC6B6515D /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 93DAB7840FDA3104820FF0CF8863F7DE /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 93E48DF270EF504627AEDF6064847E41 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 93E69BCC3267990FBB5D99BB96D6BFAC /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; 93E988B0A5D35272892F926CDFB44E06 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 93F80DFB49D610571AD2E04608092506 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 942F20A52210EBBF80063CCD185BF50C /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 943441E919563D1569077A8D87875F8C /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 94765064943819DB56FCAB98CDC076E1 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 945FC3606AD98059EF1200700EC60D25 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; 94A344D744B87D2D6D51260F91A2635C /* GDTLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTLifecycle.m; path = GoogleDataTransport/GDTLibrary/GDTLifecycle.m; sourceTree = ""; }; - 94DF3758694540156E6543263914926C /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 94E1E757F500D70CCDBDD23688B72E2E /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - 951E27838DC1211BC70B9F551B06A1D8 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 952192AAB62B39C4EE50DBD20E01392E /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - 95236F1C1997E77999E28FC481CE2832 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 954F9FB4042B9C5613E655837B5284A7 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 9553BA3B1B3CE3276F6A54B62DD54A13 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 95568BB26629A00A991E46044F0D42A6 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 957724BAC1001E6E909CBD9ADCC70F84 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 95792081C9ED4ECC41A8BA1E2597FB16 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 94B62688B975B12BD4CA0D7839A71AF9 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 94D418974B20DEA3AA2A59EC79E0ECB7 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; 9599986551EE5C6D09645935D938432A /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 95AB5F946C38ABC254DDEF1C159E750D /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 95FDEED204E6DAFFCDBD3DDAB8692101 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 95D28D86D978E3AD6F7BB3C1D1882D04 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 95FE2F533E3AF3E92FFF237C2DDED742 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 9611B7CAEEF806303B3F81D5B1FFA2BE /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - 9616C45C729614D47BE820DC425491A6 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9666DA1DD28A56848F233DCBE80D80CC /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 967A3406E51C49B6293A74B85877134D /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; 967CFE52F3BC079ACD521D75990E2CF4 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - 969BA394CB97E685B03D51DDB15FCDA4 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 96A056563F03FCBB1D361D6A1ED8A4E6 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 969E8C3F5B691A1E16B2076AB59ECCEE /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 96A4FBF1AF4CE42311CBFEBCB2E8AE88 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 96BBFE4755B346B5CE6A0FB510D9F8A2 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 96CF8C5BA9EE37BE6EA08F0BC5944361 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 96E10B41DE736BCA81104A5FE048B26F /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 96E9464270DFA0748E8883DDD19267F4 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 96EC460E39F7C0854D7D9E1A79BEEB60 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 96A6980E874057DC910E795C21713E96 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 96B8735479A382DAE21A14676BF542A6 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 96DAF4B3734906BE42CC60B2F924C3F0 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 96EF1740CC34CD0855E4AEAA35D7CF69 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; 971F83F90D4663B1850A2F8671A2D218 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 973F3258A60E4FD62A39E54D76CCC1E4 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - 9748B31D5EBA30A32034D4C249DA03F7 /* 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; }; - 9755B1EADF0D52F4B624DC293F075894 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 975FA0E9E7BCC09C378476C99966B7B6 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - 9764E79537B6EFE0D4AE7488876EFA60 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 972B10C3A154FDD38D8A6DFE46183C3B /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 9758E3F67028E745B7EFD69C3C0B0AF4 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; 977010B1D7A1BB9058285F5B12C373E4 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 977EFF582A49AE610F599DC18AFF7EC0 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 9773868810945B365745B26EA5B256F1 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 97C1A3D5C787291879E922A315558269 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 97C73D35C3F8342122E3D4A1B8345EF9 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 97CC1F39BD6B7A42FC80541F6BA0A436 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 97D3261AD5F003D68136DE60A838D198 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + 97E24E5D95788875AA9F98BC8F4A92C8 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 97E36034661AA111E0BBB20ADFBC5EE8 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 97EC666963FCA99A7CF67BDD7C605183 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 97F85F9B60E9C93E77F44E2CB0645774 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 98186FFD7D98FD7CF4FC31BD0D29EA5C /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + 980E94CA1F2EEB7523859A67F4719063 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; 981C6CE2A9A0B7AA7676884BD6C0B33C /* GDTTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransport.m; path = GoogleDataTransport/GDTLibrary/GDTTransport.m; sourceTree = ""; }; - 98513C9F247265E29035FC28FFDADAC2 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 985910BAB88EA3C29867A164EE11D3D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 982723DF0EA78914275B7343D58C2F6C /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 982A8DF71C07BCCAE7B7645DFE00F523 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 984EA1E705F33650022CBBD03DD3B174 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; 9862C34992FF29306C3F5016A8D025A7 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 9882FA4CD8A6F3A5DBFD4F20B8765553 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 986F1311D788AD1A5E83C73246AACDC0 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 9873371C2104E1C78F4B2935D14AF9E1 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 98887068BA56367FD1372084B2F3B93D /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 98B496360C78CE6A33BB3CE3A0C754DD /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 98FC90D7FE55EC2A2B29F7307D6707A2 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 993162D3B3E7C342C7579E508EBE5E60 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 9895BDFACC41F63BF601939BFFAF2A89 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 98AFA6E59257431A9AA02DDFC5621569 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 98B6480466BF7CEB07BFD59FB4E4DE0C /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 98D8ABA72F0E8855B0F38E6EFF24C531 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 98F75EFC7CE2E08B668461CE1F083CDB /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 993B20437B52813555191F9C2E875A4E /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; 9960EE8F54017E8B9830F75E0C430DD3 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - 996DF887CF2C60D0FA69A3775D13FAD4 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 9970C4B095AC2950A423F80839056606 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 9973B00F34DCC89350270D19C4B78C45 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 9974891C36F24ED4765E0B1AB9DD4F55 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 998F36137BB9DC23FE73482BAABD8E08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 999E80EF208B453EA422E9289CA5C830 /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - 99A1EB196B3717EEAA36328830AFB6BF /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 99AECA93497D65F4FD67F870BE6B6D5D /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 99B22BD68C280DEE9CDFCD2BDC341471 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 99E554CBFD47A5DBE00B42D842BA9D51 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 999F4A3634D5FECAEA726FA71EAFD66B /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 99F8EF5E7EB91D7D592579424BA23CC9 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 9A119910390FC49412D70E9A3D650784 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 9A3A877FF2E6B17B85590B0509543C22 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + 9A3BDCADB27F68C81DA09504AC9418C3 /* 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; }; + 9A7ADFFD11CA3176AD9B995816F26E0A /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 9A8F398AFE224080C8B40742BBC1FB2C /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 9AB32205596E1C54CAD1799582A518B8 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 9AE27E1A7549751B82486A8AF88C0690 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 9AE52A79948B4A9478F74A6D1DB81519 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 9AA70BAAB2359858A62D84D3C51E3327 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 9AD1B009D59F4DB486CF8F915D4EEA55 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9ADD2B47DE62FE3AAED44D1169CAE31B /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 9AE3CFF569E761895AD1DE27867B321E /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 9AF896D2A8AE7DD318C3A4BECA39455B /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 9AFF2790DE9D663C1E7587227F59B572 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 9B3390B9042CE527A10BD2C7A83A437A /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 9B3C5D8902F9EF6C1905757B8E9DF4B0 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 9B4BC88601EC21E02217769B9B1ECE29 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 9B5C0F937EE740986C0C775A6B374DCC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9B0AD001626F3DA49488E7AF64CBE2C0 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 9B4C7CD90F879B29C6DD1487E5572EFC /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 9B5B403E518E7409481854D121386E9D /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 9B5CC34B97248513D9C582B86D266F4F /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 9B63F1DF151406D1A57F8203BA479227 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 9B7526C820683A597B5F0C52AD0E9AB4 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 9B83ECE53C806DE9E734A6A0C67A45C9 /* 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 = ""; }; - 9BB72A68FADD29C24BE001A314E12B4B /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 9BC9378C8A75CCAF94FD9BF2CE8094D5 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 9BB0FF9C1A8F6510226935C605C4712F /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 9BC60395AFE6474124D409C530940D54 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 9BE8C08641A20E76AF3548379EDC8CE4 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; 9C03448830E3450C0DF8E7F6615C3356 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 9C45A8743A1C35FDB9F4773F91EB4B27 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 9C5238590F5F1B8A4BACB6E8429073F1 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + 9C37C25F4A945ADF194855A7D3CFD188 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; 9C613FF4E2A125F0EB455A9B28448FD8 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 9C87DC43F611D89073645963F4265D56 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 9CA7DD40CA1A789B4BAB3AEA157CA9C4 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; 9CAC7EA2FF06F7DE244FC10132CC8048 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 9D3C2027F9DF7D383B337F87DC09F20E /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; - 9D3FBDCB7C2D40599A440E30D3C76C50 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 9D419F5B1AC34A0A03C47A465D62BFCD /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 9D69A4B52450AFCE65CB49D74FC8D914 /* 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; }; + 9CDC59695B73073AAEF7E379442D68FF /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 9D1DF51A2C2AA7F4AFD2F3DF605779A8 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 9D2250641AABAAB4E71491EE6724821C /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 9D37813C41CC038BF57E7CD6C0138D43 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 9D7EF407D151CF5312080E9FA6756C80 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 9D81AD994B48A6DA0B0BA3C6017BCFED /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9D8CB53507FD2CF7B347980078D0B708 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D981A1DB1221804922B01B00B454BC4 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 9DAEC06DC768C4AB2569BCE557D67E62 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - 9DB9B8A955A3D699293827ACB01901FD /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - 9DC98618886B2E6FC929E22836E3841D /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - 9DCA5053AD6E0FAA24E10ECC578C80C3 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - 9DD23ADE3504A0B6D4C7AAA9EC6931B1 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 9DF3E509D27AF477866A5F62C8B18436 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9E10B0FA15A9C3809484C33493DA9F7A /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - 9E3DF1DC5956E3E46F66377D39F7AB1F /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 9E43A47BF5FA58C4FACE64C548519B26 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - 9F64200FA3494FE3782C02FB024CF97B /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 9F69D7C608FDD38834B665020063BB79 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 9DA098A930AE5D4F5DEE014046FEEC53 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 9DC31B49E2571BDE3CEDB84B28DE5525 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 9E144FD8216517C431056C8AB56A39E5 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + 9E17215D2FC4543AFE3EEA6E44348E62 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 9E450C88F4ACC0F32210ECDC76D87ED1 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + 9E908FB25C09AAC8998A28B761484348 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 9E9CB065251A7AB1AE576E2211C2E763 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 9EC3DBBA6E2E7BA421C6B0182A7246C3 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 9EC989E3BC944B890AB20E840FB0FB74 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 9ECAAC7E5E7900D26F0D5B98A79562C9 /* 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; }; + 9F5FA36B8C1C1B113ED1B7D313424F09 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 9F5FB068E6579EC439F40174681E0C88 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 9F722E6EC33131558CA0D9118A0F8F5E /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - 9FA8156A453D95D792A2B3FFF1EB2115 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - 9FAFDA568BD6E4671BD4C57316F349F0 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 9FB1C1B9F581E8C5A3EB9C5E4297B57D /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - 9FB466FCCBCE2213939C0C7FB6BEFCE4 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 9FC6929D6A8FA2DF00CD4A4EB424330F /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - 9FE870E907CDFCF4871897A3779BDB62 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 9F9EF03FF835434C84C67FD9C73A6718 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + 9FD3B24148510FB345B7C0D354BD4114 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; 9FF635AD0D7EB6C33F29C9BC8CCAD115 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - A01D9AC93F25265E70DFB82DB68F294B /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - A02BFB3CE574A14C32C64B287F865597 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + A00827AE4E0526B2442C2B9ADA956E4F /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + A01ACBA98CC707F86EAF5590BB456FBA /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; A03FA4EB2CE9EC8037E4630CA27DF39C /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - A05C1AB40A6978655EE7D1A21597957F /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - A07AB0AC0DD2B830F69AAE4284EB4826 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - A08A9CBA50474D8B415788D13F8CBA7B /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - A09D592BE9E641455E699E88691C3504 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + A0499834785EA50EA58E3EB46B8FB6C6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A06E08A9F628D65737B6BC645F009039 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; + A0796802932A3DFC4FB3237E1E18425E /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + A086E13D995DB17D30B6558FB987A265 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; A0AF93F94473153B8813B220D962287C /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - A0C78B1708C401EED5647D6C2FE131AD /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - A102FCDC3902B0B2F58E9639E0CB1031 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + A0E7A17B499199474386A43A83B29188 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + A0F035410C2743287DE4D765755713BB /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + A10DA349E7CD902C7793F3AA93463F07 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; A1191B3579F77F069B1C7353C4447B7B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - A11F3E94C537432CAABB1F9310874882 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - A1283403C399497F78AB328C84903C45 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - A12BFA8D1BE1E56C16F5FC903E3B9196 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - A1367756BDE37FC6B7D7B9BEB393B7E7 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - A13C786101B03C6ACF386C4F90C88369 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - A15B289B18010BBCC0686DBCA0E1ED7A /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + A13BB77041759D8D682E75E4DFCC1CC9 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + A14E025CFB4A98FC2CF786538CFB4570 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; A1606592495CBD5536BB50C34A9ADE07 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + A16D6C3ABF492E1355C81AF2853CC1A4 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + A17B419C9D8D1BA7FA3AC3634653A103 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + A189A35247AFD569CA00561337F0E80F /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + A19C0BC6B3844E51415B2FE73860B7DC /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; A1A25A058ABBBBCB18F0B3F44F5304E2 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - A1B52FBCF74C5BFE6F174439E1E1E310 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - A1C62BD6EAAB322135CD95AAC564F8D6 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - A201234272B992046DC33FAEC1DE2DB8 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - A20A63A7ACF74D0B898F9A3AD7AE4B78 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + A1ACF5E5E35D45C8E93D1A812A4B41F0 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; A20B936BE83D17C8AD27C518CB84FF73 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; A214B8E13EF8E38F46AEEBD096639C67 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + A215F2AED7CE7F6AB106DEBEAC8BC6A6 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A22616688022F140FF0E0FCBC270FB71 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; A233A0BA41BDE3C222CEB7D7954CCD39 /* GDTRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTRegistrar_Private.h; sourceTree = ""; }; - A279624FBB906DD4630DE5BD855108DF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A287A3A02E0C83C770F7658B4984A1F5 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + A2413F9B1112C34BBC33D3D94999DC39 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + A249D0DA845BD71A9288775610F95281 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + A262D3993BCA34A340C58AEE91FD2BFC /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + A2BACCA9758EE9824DE4BF78A8D197C6 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; A2CBD005D5C1D35631BB6B310196EB85 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - A2D3ADBBA671BB5300DC2F47A7AF9B4F /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - A2D92EDA14FB70BD74F8A0926D001AC4 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A2E183E4C6AE6E9E48300981ECD06066 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; A2FF8CEEF1059ACF9EABBA6D292C62AB /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; A31E924DD38BACC61AAD1BF23479095F /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - A32B07E78DE2F7FFC25E1DEB5618BEE9 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - A32ED8DC6E5B1BB1091C55EDA9EFDF9F /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A334EA6BDDE579C470B715F4EFB8C0D3 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + A339E7BB39F879D32110D7332480B700 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + A34CFCA6CBC9D938E4A04A62F4791E7F /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + A36B31DDC6BF36C23B2DD57C40D9C567 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; A36D999008A3FC12B2D50113AD92521B /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - A3A7F451374FFD7CAD3F7A9D27A4E07E /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - A3B93231E0AE74F58DC1C02AC948CDC5 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; A3C4D5A41A010AC15F50BBA25050885B /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - A3E790B97C4D3BA314D6D5D9A90E5579 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - A40F457419656C4E46D7621EEA616612 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + A3EF2145F241278055A25A777D4BA8CF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A40EF82C56217F0738FD4B01182B1FE6 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; A41275DF7893002BD1FF5EED78AA3484 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; A41E843E947E1CFCAD8852446936221A /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - A4308035A15D5B869AC760CE2E021029 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - A46F7C3E0CCCA105790FAC868232EACB /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - A493327AA7286BF4B72B02598020E5E7 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A4A479A8DD127274B1AC3A458907EDBC /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + A420D11BF49824F72E91234613E12031 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + A44080A70A5B010573F0F3BF7552F45D /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + A47241CE73C4FED1B25623444C57EDDF /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + A49BD0CA97A040D95882D2B44D220DE0 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + A4AC1C7524D0753E868EDA712FAD75A7 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; A4AFF26A82F62EE0683FFFB913D9DE76 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - A4B605CCAAE1AC3560DD864995FFE5AF /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - A4D1E294C29AE932561F3974053E69A2 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + A4BDB517C15B3C14E8127A615F35D716 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + A4C03A998601C14C0E950907D6E057CC /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + A4DF53CC1264A950CE5AC68CC14E1560 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; A4E2C829C5BCC61D75F1E0B270E49F6F /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - A505B77439BAF04D62596D4734B7D53F /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - A50B8D7D7C326CDD59688588C09C4385 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - A512481F655233F8246BBCB59AF590F5 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - A5290CB5EFEBBEE577022209969A594D /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - A538BEBC4D89577422B2804E44DA1763 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - A57298DC428C94662BDBC68500643F91 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - A5E1FD618F9040A05B2D0E333A9011B1 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; - A5EF8A91F5485827872771CED65D0208 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - A5F908369E5111C116B8783DB6EC8F60 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - A5F9C35AC7F2EA43348AE615F1F7E674 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + A555E1DEE8F57BEB61A46B7794BEB7AB /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + A55D3CCBDDD7927545D0702888EF3D58 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + A5889432BDA0DED33AC1EF66E706F659 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + A5B99E26AFADDE91F4C280A8C370152A /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + A5D139B53C87A017F84A48EAECB433CF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A5EC695806073286F0F784518C4E054C /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + A5F7D2922048E977CCEC9E6FF8F6CAD1 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; A611F89BAEDF8226B087FB7105C03D4F /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - A6203155C4E6DA70F162074DCF722F18 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; A624EA50D9FA069BF68C368B9621017C /* GDTStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage.h; sourceTree = ""; }; - A6276D0BCBD19A041231595A2DDD0DCA /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - A62F549218161C0D41A48E0C6C0903F3 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; A63056ABA542F8B04DEFA67C19269FD7 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + A63674238D8FC2FD6C1124AF57DC4BAC /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; A639FF9F42C51D2970304EDD7F9308E9 /* GDTStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStorage.m; path = GoogleDataTransport/GDTLibrary/GDTStorage.m; sourceTree = ""; }; - A64FE1D8156746761136A5D120580B66 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + A643CE34F02117FDF88B2A6F37950E94 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; A66E9B64871E443AE6D5C9E8D3BB2A3A /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - A67C2DC89DF2F492578A935C98A0B24D /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A6957D150126F7F8A2E99FAF38C9F03A /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; A699B05CCF72090105833781B929648B /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - A69B77CF38FB0592800DAAB926F26BCF /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - A6AF620BCCF82537DF7FF4A524F9EF58 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - A6B476B726B2B9CE15F2AE505681BA81 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - A6B69B160A8D28D1E51F3C39C56D29A5 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + A6B0E365670EE8461300952EBBC26EE7 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; A6C1D029A172D167AB0F40D48A9B96E6 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - A72519FE47656E71F57E31A667CD0CD3 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - A76CA5719F2A374889232785A7B9C502 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + A7500D05C606E958DBFF988E5E4149A7 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + A750113D5C95734016B6F89633D28693 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + A761313D967005DBA593B9F9E2FB63FD /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; A77B92EFA4C78BBF35CA2CF762F74659 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - A7827BB5D12B6EA3EB7C3B69121E59B3 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - A7A070AB65F774923175A162B589849F /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; A7AAF36698B12EC9A5F1499B0E23D952 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - A7B9EB005E0AE8BE95FE42D4A10E24F5 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - A7C897451DF1654F62EE8C3AF1CF85EC /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + A7C79A7C3E9D40D9FFAB49F0F16F188D /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; A7CB22BE8E129C13B32901AF3E28A3A8 /* 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 = ""; }; - A7F32BF8E14B0D696D73836BC7265AF4 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - A7FCD016F4192B5A83FA4A67EACD8A6C /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - A8220CC9E1DC67335E08E9B0E971E150 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - A824BEF6F7BB1FDBBEDAA90504BC9B8F /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A7E92ADA31F792DF7ADCD3DA24416295 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + A7F00E10BE540D6ACCE339CEB7423ACD /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + A7F10EEE384072DAEC822B4C1EC97BB8 /* 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; }; + A7F4F3B8CF85FF6088AFBDD2E0B9CF85 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + A808EA295EC294FFDBB50BCC2BA53014 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + A81226598200B10C2B987E3266FCF849 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + A81B4DF35AA3E7DC245F92694E0C9488 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + A834FF9AD422C88C1B419D5CEFDDCCD0 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + A836F772DFE49877A0D58D0D351AD4D7 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; A8758C74594F364FE8D55BF1A8B0795D /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - A88468B5807972047998E8D9F12C2614 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; A89ABA126B960F11BBFCF0475F6A0AED /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; A8B9646878F1F3DB7477DC8916D9E9B0 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; A8BE42D13BD23F939284FB37B4692663 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - A90834212C898DDA87F365CE3ECF33CE /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + A8FFE2B0F50B210D155CE956DF753EF0 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A905B1B82C1F6C380AB77151E8D5E078 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; A90996A1D17F8B19F648CCA2F3DA90B1 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + A94FC8265B2A05BF385C7740DDDA27E3 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + A96CF962EC52301B3A11F5CC41E11394 /* 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; }; + A97754D3320C1FD81ED660B127B36612 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + A999FA07037D8C28CFA99B631B6C334B /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + A9BF2015C38AF72591EF97C81BD68934 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + A9DB10AAD676D54BDC5B0BA990C5C74C /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; AA2DDD5D0523B8F594DAD36A9AAA5E70 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; AA6B1F3F38274DCBDDCF2564288EBCCE /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - AA874607CB8A8742CC9ACCD04DB8A8D7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - AA8E9C259CC81015A286B0DB81ADB4A3 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - AA9C6BF7BA250086B1CEBFEA43E3257F /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - AAA9492001A0DEF050E0647B30E9939C /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - AAAFD311E240041154E118EFC719CE99 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + AA846A7E972417C6D0F9D749BD466139 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + AA970E0E45CEC7FD98BCB9CD50A94784 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + AAC9B40BAD88705271E4912C77E2E865 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + AAEF3D1F614129815AC3A6D26B1127C0 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; AAFA6E0A391B9079526E0FB374F2C1B6 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - AB10EE33F4E9A1044DA4190BB894073D /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - AB11E3266A85870D63A4E4B6F90FB5C7 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; AB32A635B3520B996565D062F35D02EA /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; + AB8EC5CC4960BD59FBC4B1EA9F4E461F /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + ABA4C6F1823A46505C589663FF569D2C /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ABCF9D5FA6B69B7FE22448C63F5C0C35 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; ABD3E13C1519D040A1C496CA3A2272A0 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; - ABDD5FEEB0B4B846F2C916A95DE04DA8 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; ABDE0D11DD6F3416807CF8C7D0C38947 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - ABE765A6A7C399E3A90685CE47136030 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC0050F422BD1C7C80671188634CC725 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - AC066CC6AED1E3EFE73E3ECEF0CD0FE9 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - AC6BFAA0C5E0C3BB56F6513C605D6E1E /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + AC50FAD51606C7A7BDC77BEFDC97ACF6 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + AC535588D6E1BD18ED100CDC4973D51A /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + AC61EEFF4BBF136045AB54FC22452E13 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + AC7A405C6401DDB6C9AF3DB85F834C14 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; AC7BEFEA1D9F9F4BD894A3BDEB754050 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - AC85ECD7F57613A90860782F2DB13F63 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + AC9D76B5565CA05C6BB43B1C6121CFA4 /* 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; }; + ACB1D44F71FFDD55AC7EB6BAD87B6508 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; ACB9C9B7C028DDBC2B0FBEB2D1EAE8D2 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - ACE0FEB094739BAC2BB7241D8B9604FE /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + ACE0C766FDC8F386168B1F1043432A35 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; AD153637D0F88F7863503888BF426FF7 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - AD318A3A435B909CA84C2566589BA420 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + AD28747ADBEDA87050DFAAA974028548 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + AD325F453B46A7923257F9A6D95F78A5 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AD464DC212D3FA00C00082CE9A4F5116 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; AD501E44E8B6B7214AB9EADF1181C1F3 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - AD5CAA6CFF500535C51D7902A5DF6F0B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - AD937DF3970AD1236B22AF168378E354 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + ADA995225964E165EFD31F85A2E16E27 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + ADAF44CCCDE16D4247AF317E9245C25D /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; ADBD04C24033E70A57BE371F9E95677E /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - ADFA269D4E14F4806D268A1E4F13C663 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; ADFD2929D2E95FCACBBE0C693EEA30C2 /* 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 = ""; }; - ADFEC8233ABDA82D55BCB91310F87833 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; AE0EEE989352089575A595D8BF69247A /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - AE6DD72BDF5ABF38934986A79E1E2FA4 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - AE7D92C54A488BDB7AD0E3F283BD9DF6 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - AE8577EBCE6AD05B8E5BA37B57ABFAB9 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - AE8759793107F38259604086AD85C3CA /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - AEA7EE245DA9C3117A185778BCC39944 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - AEC2517B5577AF2A22FBF2D20FEDCC46 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - AED6F1A331667E6805CADF8B5DB04959 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - AEFCC766316C33AAD2B4654961656828 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - AF319C55165A9A5192C41E8B49184D1F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + AE3CB43D8CCEBF1F5B8D6F9D6F3CAC26 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + AE4B7870CAE91B35878C676011311F07 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + AECF4433A2AD5F5A18C5346CF8BD76DE /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + AEE5C8311396FF92EE08B3CE1A731314 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + AF17EF16E047477EDFCBEC50DDE29751 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + AF3D6B2D719E692B3649250EC186F095 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + AF4E50930C881D54C475F4E9E2708438 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF804193C33FB58CBE5BA166426FAA72 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - AF84E60852952F964BF0FA1F101767CB /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + AF839FCA4112FDEBE1C800CE2B88ED24 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; AF947193A9EB226E277E245ACEC85A9B /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; AF9D766D62026C8ADA8883382A30FCE0 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; + AFCE2E8D52457C0FA404D519055D555A /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + AFE0D33358500033F77E73E3E82DB8B8 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + B02638646000CABCD9543E768EE8DACA /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + B03A5E063D8E76CFB696B3B052B612E5 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-video.a"; path = "libreact-native-video.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B0630E1005C90FB304115B8619ABAF94 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - B076D054445DA78D8360BDD9660AFC37 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; B07CCC1F57AF035C7F0A5F05DF5F21DF /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - B09EDCD56064F10BD42C2947403239C6 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - B0A86A2E2AE05EA89FFA1D7B8DF2941F /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + B089DE8EA00A8D592AB7BF0167A0306B /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0B29AE24352D01ECDCBBBCFF13452B0 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; B0D469C5A5B872747EED0388471AEEC9 /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - B0D482449B83B8967059DB4231B9531A /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - B0DE54EDBFFD4D96AE20FB13D7493569 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - B0E8DEC631EDAB019E6D5C2B1F3220F9 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + B0E3A3BFB2134704CFE6CFCAF4B62A41 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + B0E62FEACC9E49A4A484367E061F37BA /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; B0EB71CDD0AEEDE9FE3B0F7FFA9888EA /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - B105E501018C902832734A4902AC44DD /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - B130DB6C126367A921732DC34C008749 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - B133C726515ADE89D9D4DD3EDED65E7F /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - B1481DE0D3013EEF3284860677C09A1C /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - B17AB73A2409F95CC5ADD1D3B029502C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B1A4D35C3E4D9AA86876621D27EDB846 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B1BAA0AFCCC2CA89EACE6C4CC7898197 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - B1CC5B760149F472F3B3D3662E478237 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - B1E30D6BE7C5A8BD3F00011FFD64F58C /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - B23D1FDBE32812A863E70A8CF24AC2D0 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - B24767EE7F54E31A3F1A4A485AC2D71C /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B11F7935C19D82510F1DD4929B409E74 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + B12B68247A234FE78763DFE6502E44F4 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + B12D8ABB227F9237999EFC479536FF4A /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + B15D4BE42508069919D327D1D6247B66 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + B1640597D9EE540D40FF4401209ECD47 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + B172A83C57FE580C944BD123D577345E /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + B1BCC00D2D8DAF70A113D49EDDA48641 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + B1D78552BC13412851EEBDA20713319D /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + B1FF2AC40395AD4A4C1BD974D62A21CE /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + B2108B9C07424EC2174F3964D3445244 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; B24BCD3ACA63A4F1988B34D59712D7AF /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - B2585771F09444F0895F31B3152CAA48 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + B253FCDCCFA703EF327E1DE179D9B9BC /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + B256ABE5BD8594F142B72F80613C8345 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; B25C2F7013DB491EBA70CD15C766277D /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; B2647D7CE97B25E7411775854BD8AD1B /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; + B294544F6F1732E2AB99624E8E1A02C4 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; B2B5C12C9057A3C3F80B6FE63DC672B1 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - B2BF55B7DF5F7DC442EA9112846E3F85 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; B2C53771D976818BB03D0EEEDA1AE8F5 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - B30F34C15CBCEED206C7DD4B2223BF73 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + B3071ED7A5495BDF6F19DD820649D418 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; B311C84FFD89B80808E19467037D6308 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + B316B81E4609D922262AAAB60412C3D1 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + B31E8CACE84DC55C19E5AAE6FA38CC78 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; B33E269DBFF2BE345F8195FBD7BCFB67 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + B35F9586E3BACE323633DC20F8EE17F6 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + B366790D7E16F6CFFAF462791FF116AF /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; B372F3BA6D1AB3CE03B311B35A8ACA6A /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; + B37C4AC903FF4D9F541F94B2BFF6486F /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + B381E2FEF7F3ADCD9C7A47EF386EEF75 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + B384E5858546AB5932A7EC9E6B7E280A /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + B38FD508EEC7159D2988089AA995E20F /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + B39ADC3605D6438ED02ECC71946C66D9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + B39EE0EF27689B02A6811C6D712DE93D /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; B39F9A3CEB4B186E40589A4D931C1257 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - B3B673AEC32B252F2F50C7942DB2FE42 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - B3E13B87B985373791F26244EB6E8CDE /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - B3ECE4F39FA7A516671A9C4C8D25B768 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - B4062488C45CC6AB763BFF3E3D0E7E13 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - B4089E243FC5108FA17DA05120B28683 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + B3C0443D7BD72020F140C3CFC024099C /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + B3E65BD7F64BBDAAAE6D801F5B393FE3 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + B3FC9FECE308309CFEDA0657B6E891AD /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B484D5F9E15B6E79FEF8D3BD8BB7FF6E /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + B462A58ECA611911C0FCF32DC87B4230 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + B48A2EA23D4C0A5B39EA740A1B4C0B0C /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; B495422B40687B5786370FAACD615B60 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; B4968DB22147854D234F5D171DBBA244 /* GDTReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTReachability.m; path = GoogleDataTransport/GDTLibrary/GDTReachability.m; sourceTree = ""; }; - B4BD306F91E2E0596E6FE2C1137EA731 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - B4CBA58A86EFC487C36D1C9833C5D6E6 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - B509282D6F3523D9CBFD7208AFCDAE12 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + B4ACFDCF5494F481184D5A3B38A60024 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + B4CC7A68857E49954F1F3F103C9D61FB /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + B4DF9F94C2A65E6E1204DB8D24D00840 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + B4FA519078044EB4C4E950F1ADBF33A5 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; B523E283430B206BFABB777FB7EA77FC /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - B56C061B5212AB7A9E81B3D23F43A44D /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + B532B085F7B45D6DD72D8BE49A120916 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + B57EB7662EF4BC9689BFE45F76E6B5FB /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + B59A61CF21DFF7E302E510ABC1872757 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + B59D6B83B401C1016A27DA8E04B77A90 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + B5C3844CC61A7B52C6EF376DD18B477F /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; B5CD42BF36AEFAF616B46EEC2EDAC1D9 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - B5FBCFB75660253D3988D97D13A59212 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - B608E8E88ED36982C76F60D52EC50FCD /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - B6256FD30234AC09376313337C07EDD5 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + B5D939F8C0EE52D1056857C2C9F08046 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + B5EA05AAE813CB1C667EFA1F8DB71969 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + B5F4CD5F24417B0900BAEB078D8E6C71 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + B6231CB8E675EB759DC294F021B4EE14 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - B67924DE22F31B255F270F9ED7C76D9B /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; B67BB64E873A95F6DCFC9ECD9D10E036 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - B6932E5B3FB33A30726CCC21AC9D8021 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - B6AF956858E605701EF28EA10F45FD59 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - B6DED11B420439E796257AAB9F9A0C96 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - B6EB6243C862B0E0EA3E9B4D8F9B7D6A /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + B6A1DC7DD495655A76A0ADE66027B757 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + B6AA38713255D261FDE99A974E08E031 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + B6DAD9C5614BB881D7C20EB48748B359 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + B6DCD67B31DB82CAA1663A66E9AF79B8 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + B71804FD00A9A9347B390533972DE489 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + B7191682782B79DBB433353927D0DCF8 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B71A38D8C21D6AC2C5B4B32FA3819791 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - B71E5DF4E7A46D848691A1898DDA99BB /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; B72C106E89BF8161D335F7EF03F47EC0 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; - B73D2D91D5C3DBC787ED2C808AADE575 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - B7455685549EBF9C61766FC609BEAE9D /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + B73C437984846CD10BF9C8FD07020391 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + B73D457C80055C29A2EEBCF847D13208 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.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; }; - B75B0058C060FA91AF0E94596092C78A /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - B7A13141908DE767B297C9086595F4C3 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - B7A25E959BABA4038F809BF763AE50E2 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - B7D83F856386B7B6534A771F768413EC /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + B77BE8C9CDE50212C708D384B055D894 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + B7BB986419F0F27DD2299861535F0233 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + B7FBAF412502DA3718AB5678B93FB742 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; B80980A4B1FD8F682760137A93F8B548 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - B80B5D56226EC314252E94AF85AA7930 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - B81A4E8E783D48DF300F93EEB5FAC970 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - B82D4F5B3A6291B65BB22E4E38607E75 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - B88A3E486CEBEDE16DCD7F7A10044EBA /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - B896AC7D9DABB6B6E4B0B536BC7327CA /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + B84D286DA657CD4D4B191BC3B948AF25 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + B856A3B2E8491B2FA37AD3F509AF9383 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + B8823080C585EF6300941D3576E37FE3 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + B8957262993233598CD4806BC13EE726 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; B8996D5AB0956EA7E5595D218610D734 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - B8A95AF7A093BF5BAF835D6BBE26EED0 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - B8B95204C043BBE4008D1B887928D81A /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - B8C1F97891BA424DFD614C38509BE9A0 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - B8E776405B18BFC3A0921A01FCEF5D97 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - B93032BDA0337DF6E7074A0FF7560925 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - B9374B97BD2DB962C1DA9C22EAEF6BE3 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - B953ABEE1C3548F31D3358C6B37FC339 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - B9AD7F8DE1437AB420CFBBEEC39F8515 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - B9B508F8F16240D5B9E6E07881608978 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B8C510B7BD8264A9978428A8ACEFC04D /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + B91734D380A03F1D9351ACC9D1C82700 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + B949BFCB44FB8932EE0CDD0A9FF82037 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; B9D0FDB1F27CEB6F1CBD41901DA39375 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + B9EA8B9528242AA4B453A477F337EFB2 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + BA191249F4128BB2C5BBD28AEC3714F1 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; BA223DECA69811D9F3E045529450CE31 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - BA400F1F8D0C18145D8028113C8459A7 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + BA25C03D8346FC39A3B36B4BCB61E952 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + BA2C39987E14A691FF9F9CBC45983ADC /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; BA43E7F5AF362BC38B9C816146ADF628 /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - BA4B6CB91C243A6CDBFD94256845C235 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - BA5417214E9F5665E1E7F684407D13B3 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - BA6B665263F7CE4C16FA9945BD9A2140 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + BA67F8B24E16E5E8DC7A7EBF64631AB9 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BA7129E40C780FCC9B2C35430A87252D /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; BA95391EF5C3B7AF7BDD4DDFE117BFDF /* GDTUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadCoordinator.m; path = GoogleDataTransport/GDTLibrary/GDTUploadCoordinator.m; sourceTree = ""; }; BA98DEBB67BD0B51A97B0283ED49ACAC /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - BAA536D18CAB3ED18C4A135963C39BF9 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - BACB70B829C4502E3CCC3082E3A2975B /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - BADCD5F30A21049153976FA2144BF12C /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - BADE76B836DA5C67A129B2123E08184C /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - BAE3A2A69292D5BACA45543CE0ADE605 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + BAD395CB9F308A48A79A1EF5C947A910 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + BAFABD63F5210B2671007BEAADB230AE /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + BAFF9EA80365601C35C5B14B6FBE63ED /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; BB0327CA14611D2BD60ABA934BB7B47C /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + BB0B88F93C26B3205C8713D1EF273BA1 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; BB1D5B32296BD5CF76CB332AF0AB90DC /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - BB7DB1741BE6F459D6568806024C002D /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - BB97DE41686AF3B3368CA0E5645C0771 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - BBC51CFFA0B2E94B2C8C10220649A29A /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + BB76FFA7572482BEDE2A0B8D85910228 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + BB7B9E277B2F88D029D62E6183406A86 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + BB84A0D146A46EDD53FC654CB6D42300 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + BB877402E672F8A003609B814ACF2F6F /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + BBA25B8D8C16C2EE29DB8BA456371398 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; BC3CA05BDD3A8EE50282E2430A68C27E /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - BC423AA734E88E2A9EA82E46CEC34185 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + BC564A37BA02020C6E8115CDE7883AD4 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BC8D26FDAA3A3743807DE4F675673AE3 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; BC976D41F21AAEF157512E7FDA7E804D /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - BCDD9348083B07153E874FCE0A08BD65 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - BCE4C954D88480AC78707E9F6C2567A5 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - BD33BB56B13458D0C76D6E7F50DD2247 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - BD39679022A95761E80CDA2AEB1AF33C /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - BD53C90A5C7792FFB2160DF9511F26B9 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - BD561EF797318A51AE8ACF76ECBC4281 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + BCDA8B40730E825225F4057078C4457B /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + BD2149CD1A9786D1ED0CFA9C925C800C /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + BD3906522CB7A056BE7B533EE7AAECF0 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + BD7C631C3703B5512F6E0CA99FA0F460 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; BDA5D33F399DCAB1FD228ECD932912C1 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; BDE3B6E078332CFDF55D56AFE9E1D277 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - BE1BD8915D456FE4ADB60B7E71C18D53 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - BE42F20F321B794FED191D71191AF968 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - BE468F015FF53F8769ED896BB558FD7B /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - BE47C03ED2F5E88697989597C936E94F /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + BE00DA4FA4953A7C98A06C183B9FE409 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + BE0103F3DA1BF440C6C9AB5CE797E13A /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + BE0653F9DC15DA4DA653DE8DDFA168B0 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; BE559106116A7A7648B12A03E9D4D28B /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - BE7A86EE34835C2AAC3104BB3F500552 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; BE94D59D6A90ED95B1F6E7B18C8E00CC /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - BECCD52E50BAC2B68DE53D8919E02ECF /* 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; }; + BEA14F6F6DF113FE70057996FA76C819 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + BEF1D3B3942B279447F10DBEEDF14102 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + BF06209450F32BBCA280359DC01AD407 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; BF1732ACF5FFF2CD5BF851CAC5EECC9D /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; + BF1E5BA65E4700EE5DFE82680DEE2B0C /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; BF2F0768EE972DEAE45305E374C6E45F /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - BF7DE711D55D9DD439E62D3230704C8D /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + BF675BDCEB62F9E372C87820209D75E9 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; BF8ADDD9F754DF1DC3565EC72038C2FE /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - BF9E85E86408817BA6A541374913C4DF /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - BFB83DC17FFE31EB66C8FCB91483AFF2 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; BFD1AACC7C607436D920FDA17490CFA4 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = Firebase/Core/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - BFE02734C9C68F8D9E65EA58B865DD39 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; - BFEFD9A4553F9D44ED0D9387ED59EA82 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - BFF99B5FFB2C980265F41EF33ABA7608 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + BFEE1E3A52721A80824DB0F6618499B3 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; BFFBF5219A0D3AAA47E060FFC717E668 /* GDTStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage_Private.h; sourceTree = ""; }; C016B656853BC9D15D256FCBB8ACD0BB /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - C0315431FD2FF9B79F2094D7B169CEBB /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + C0266F070F4D0280775CB549C2A12478 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + C041813BC41F2F49DC9C0918CFD786D9 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + C05051A320F925F5FFF777DF97486CCF /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; C0594FCE5C047E1F875BD261446DAA65 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - C07DFED78793E331303FA2FC0AED13C8 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - C098929F9618F49264B1CD79900CA2E0 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + C078287057644DB319CD83478B3EE278 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; C0B4E059F841E628E792FFFD9F6745E1 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - C1373DAC74BB042609993648986A08F8 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + C0E2F257439C5A00D178513CF192B8AF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + C0E3E7B17C4136F51E46AFBA00D41DD3 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + C13B9D5ECAC5E9AC528775C6FD081E33 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + C1472B83E4014905BE3F518B816241F3 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + C14A647A1C1939A7B825382AF4774BAE /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + C1A3733AE169C408EE09D85BA05C927C /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1D4BAC998749162828C147C54A37427 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - C1E478B3B59138AD51C695C0C82AD616 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C272D01BD95A7F1439AFAC27F3C7F3E8 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - C2CDE8ACE04094A27C343B06B9D7E9D1 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + C1ABCC63C6117F6139F5E754A885B208 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + C1D7740CCBB91598F7C6D66B10A284B6 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + C1E103292D392F551478DB505253F1E6 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + C1E6C26D0A88F1156B17D0BB8344EEA1 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + C23A05811E5A08969071B98F5D6FA4E1 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + C25D34BC5BD12F75E17A5CDCF0EECBB4 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + C28972CB23BE10EBE6758B47E625461A /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + C29689FB804AE7B71F149CD28F78EA8A /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + C2B839BCA727B64D2C80846C64060A4F /* 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; }; + C2E07EE358222A72786267B401D65856 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + C309EEE0027919F2FDD4A86918A9116D /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; C317A49DD8574706DDAEC12FF2A96952 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - C32F8F309CE7E7C79D02758EBF426426 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - C341A65784DBF4BDBA30D4145B447BBD /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - C35CF730248B35186190623AD1B0D8E4 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + C35B62E96CB1F6CF84146C86FCAAED2C /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + C363DECC5EDB5C45A63451DB285AA261 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + C376824BD4234BE12A57FBF73B41AEFC /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + C378C9AACE70EDB586F37D1F5F54EB9A /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + C3790B3E64A5743708CDA7AC3A352E19 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; C37B4B112CBC6E41702C04EEDE7BAE97 /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - C3CCC815E2C8A3A492444CBAC37DED28 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + C38BD63E38308306F01271471A51A51A /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + C3B8D99375736CBB89C2C356A7C8B338 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + C3EF60B0F25C5B959CE46EB06E181E18 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; C3EFB4F4EC1CD06DDFE2D949BE8E6A0C /* GDTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPrioritizer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPrioritizer.h; sourceTree = ""; }; - C4131C059F65B93F9CB55EF0E7A391D6 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - C440DBBB9C35AEBC539AE135353CD3A5 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - C452D821799C5937174F13BCEFDB7FD2 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - C4542E2BFBDB17F5B6B0211E497425F6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C4605C102C6353682ABE1D68A39AC628 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + C3F3F8C91AC91F1D56DEE2A183B95EAA /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + C413EE953021DCA4AC32898DA184C0FD /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + C465C75546851E198789BEF2A625763D /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; C466454922A16BCBF6C2AA9F92459FFA /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - C47099E8F26D854F1EEC3EC8F0C05B5E /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + C468F235C6359CF14498360F3EE89F37 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; C48515171AD4BF544311B0764085530F /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - C48C4E8A17341434A3CB157CED4CA93E /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - C4E31B2811EBB9D3F7FA88612E04E7E0 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + C490D848F8DFB508E94CD6FE5DCE7754 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + C49A6D45889861923633D0598A51764C /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + C4AE2A6DA28CCE60ECD1B230FF30E591 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + C4F0617EB699F61CEC22F253F934A307 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + C53430ED54ED4F3713EBBE6BC4EE8A62 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + C536BD57718575B78DB62CABC81A1277 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + C550F27B5025D7535A042C37C8B851F3 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + C566B6EB9F57FA3C87E707D6D74B94C6 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + C5697EC5539A94D88DFCA46BC4FAC53D /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; C56EA5C4B31DA75C46B4D4973D73BB4A /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + C572D6C900A5E509B5FEA33C4BFF7C16 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + C58390A83AB01A7454861AC7F511E242 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + C59C0285928EE93A3D14096AB122F3CD /* 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; }; C5B6A5F984EB8EC48CF248B91715ECE9 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - C5B720B7C468A7586AF649B38716B11C /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - C5B73909EDBA5D6EB8720F3B8429919C /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - C5D2B33AA450968108C00CA328D8929D /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - C605A06228EE75A8AC667EB6CE5A7240 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + C5BC0C904AFEEEB35C99FCC32B2A1B5A /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + C5CE032FE16F98F60FB04AFB294C4872 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; C60EB1364C172DCC4EDF601E4792F066 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; C61717E6EBAB20E86C4A2961F0FD4D45 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - C61ACCDC904EE04CB043E9D210F30D6C /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - C664F93BAA891AF0FF9EC0DB1F408895 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - C67EFC9720F80DAB82D02589142A37A7 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C62963DF0BC0564FEBF70A3FED8230FD /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + C630EA8B1C146DCFB34C7F2C31F5DEFA /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + C6376ACF4055834AD76BC0924194FC51 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + C6695BB149402D06E65E98DEC64F461B /* 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; }; C68D8C148B3C8093C09166A8C8495394 /* GDTUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploadPackage.h; sourceTree = ""; }; + C6955AEE3EDE65A8289B0CB4CEEC5DF7 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + C696A65BE0557521F371467856B99ED4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C69C3EF859CAB70E5B41B8C17C7F3630 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; C6A40CA1158D96459D53467F05719CBA /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + C6ACF82A85BF36C642AF80D618F557B6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C6E44A6DBBEE242422FDDC66DCFE9D0E /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + C6F40FF5D2C82C7E13D5FC39DC5137C2 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; C6F54245CDE9F7FD217332E6F4A6ED40 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - C733333F855300F2B0202DF598574DE8 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C76EC544F4F5B513784C1FBFD74E18DB /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + C7118DF0E7B234BAF5DCD97B2157CA65 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + C72004FD57292D2E614494D7D9C54E2B /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + C754BBA0BD135F393528435AE42DB236 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + C75E1C5FEF410A767A34D685A2AB9BDE /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; C77FC6CC194114E0452237893FC64900 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; C7821887EC75F1976C084E486D5951CB /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; C785E20D4B593BCBE623E92271639FD7 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; C7B2B0B57C33CAB337316FFCAA8D5A4B /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - C7D188E8E3576D03C9340998F82A7DA3 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + C7CF83338819AE52A1BD15DB7641F1F4 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; C7E71655EB93E4FC9928F6CADE45CD79 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - C80AF392BE3B7212CEF7609AF13ECC9B /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - C818C00C3BEFB8DE06843791342A4D17 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + C8035F5067C028D95B24C6EE0D688FE3 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + C807C7EA8D2619B6AFCB7F3C9AA5B4AD /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; C8233D3E197592FC774570D40E374962 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - C8457C531B8C1CE59B714AD8443813E5 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; - C87A3F26A69C3761DF2F98B5CD940471 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - C8948BEB83B8D42DE2ADD6A9874191D3 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - C8965540E6D63AF6A1597D0561079839 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C8AE3D9124B9EB15E23D6573E367E57B /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - C8C5F970A9FD89FA8038F40AE9099CE0 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - C9249B6997BEA6CABB1A1353DE8D7438 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + C84E273398627AF9A988343BCCE455F4 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + C869EE92774047221126F2CAD6CCB4E3 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + C88898EF298C6BF7493C15E6C14FDFC9 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + C8E15D566E869780991CBD1B44981393 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + C8FF3BEABB9BC47DAA40C934524C8E83 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; C92FA64E3662DF6F57F73B971B11E029 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; C9452CAC6F952F0A74204730C3121CB6 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - C94B4A04E9B68E29AEAF311EC415684F /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; - C95355B5869EF3BB98A00DB90F64789C /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - C953AE5CAE5694B78104A24C590EF5BC /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - C968F4692AE46EBD64F7483EE19B1BAC /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + C96EFC242C43FBD164324E0B2023512B /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; C9708630F9D9C8C32EF0B3C91B9E469D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - C971A080CAF4045E52DC030F928315FC /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - C97A8C4E24533E6F1A769F1393A7BE80 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + C97AD60F608DA260967F6C6D51228FA3 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; C97DBF0565965775171491B968A3386C /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - C97EEAD0486C1F4E2B2861E879578590 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C988A7F954367174D7AEF4D4F36F296F /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + C9C92D2550165FDF90016110C2484856 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; C9C994C0067A6A1E796C234B98F686CC /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - CA03E7E0BA0C0AA46258CFC87D6916C0 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - CA3CCCC8938D3E9B98450F4AADD7A8FA /* 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; }; + C9DE202B4213AAFD5770902F012AA03F /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + C9ECD84BF7ECC17E8A196720EF82C5CB /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + C9EFC60CD18319463354968F16F86223 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + CA4EFE95627DE5E43FDD76604BE5519D /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + CA61F667A05E9DB8EF4F3266762EDAEE /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + CA70C3AE3EBEFFB8882CD01A76450570 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + CA87F9D481A71CC66F620BEF33CD7625 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; CA88B9B65AD40CD861AC231539FD195C /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + CA97A1E11835A8EF80ADF1D107049CFA /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; CA992AE3789CC74B456DE8DE9AAFD981 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - CAB91B464A9EA80B3D2C485EE625F1FF /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - CAC7AA082B486DD6FDB546E455B8A59A /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; CAED344FCC1C522675E638C9E1B74B56 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - CB1AB267EBD817374BA0E43AF235A102 /* 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; }; - CB3204671E6FA6B4704C29061B8575F1 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - CB636BB0116A61F6A72CA1E38CBEA640 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - CB9BA6BED08656465F624874E9DA33EB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CB254A7CB1178C037AFCD27A4DED22A8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CB47F9AB8D3CE08A4CD5CF196A3C9169 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + CB678DC13D310D5F4459BDBDDEF35A46 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + CB880D07B8E49F0D9D486FD8C4EBCB45 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; CBA63D41638D31B00773D2AF47F7BE37 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; CBACE4F4ACDF194FD0DD2FA653732F1A /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; CBC675CAC7646C3D2A0E25803D8F155F /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - CBC761826796BEEA6FF281D2615FF1B8 /* 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; }; CBD33013839FD99AEC9125C6F326F7D1 /* GDTTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTargets.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTargets.h; sourceTree = ""; }; - CBF32A557325131AC55EC112C15A3432 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - CBFE937BAC141F089D8956160DAC55D9 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - CBFF3ABD6A492A41EF206A0CBE9ACF34 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - CC10835824649F2419E33363059E36B8 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CC3AF8391E634CDFC59029683EA45CF1 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + CBD6A5BFCF174B7789C908F39E1F9AC8 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + CC23577415A061586DE6BFBE1115BFE0 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + CC23B0329A9F76B97CD45A0C34B223DF /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; CC65DE6DF5D259B4E20F7E232146BFCC /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - CC749B0E2A9153CB4C7E1560AA1AB45B /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + CC78F64D3E00349B2ED22DBCBDEA320B /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; CC7F479CDFAEADF82FB7E5A7A4E85491 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - CCACB1D660421DF54DC4995D1D55DD7C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CCB1E15AD8D78EF24ACCC95FB9A47FD9 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - CCB873A8E8181B33642937770A53B29D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CCBD7E2C2A91693A1460449D868EB806 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - CCF821CAAAB48EB6071D302666782E1A /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + CCDDCB9A52D9A03994693CD0D6DA6DD7 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + CCEED4CCE6737C7EBF8314C377B09835 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + CD040C273557F8B259540EC3C6650ECE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; CD0620C398F45DC692DFDEA3FB115D98 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; CD15F4681414F78344B9C9D8C3AB00F5 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - CD16FBC9E587ACB91BD74D1E29A9318A /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - CD17068DC41BB064E102FE1E20078E09 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - CD21021F904E49F652898107CB6B8612 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - CD3FB84EC82B5E199929CF5D662B536E /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - CD6297BA59BE1862EBD5B3D37507864C /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + CD1B942711BBA4F0550060AD78DDBC4E /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + CD27B1F3A3CC35BBCD1942272F0AC340 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + CD3B9F7721281DC9A75D09D264F25360 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + CD57EBE72AB3A63AEA0F4E967081BEB7 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + CD5CDDC71792D56DF80844D40CC3A503 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + CD5DB292728224A375EC30DA598D9FD9 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CD729C838803A5760395185A8DD7AABD /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - CDB5468A37ED6CD36055E9C4F71ED5BE /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; - CDC9F6875A8D886F6A28C664B969A564 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + CDA25FAFFD8601D819EDA22C11846BAD /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; CDD7DB831011E5990CA191C046B34CBF /* GDTUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadPackage.m; path = GoogleDataTransport/GDTLibrary/GDTUploadPackage.m; sourceTree = ""; }; - CDE8B74C79105455947B5787E7090B74 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - CDEB6F9AEA99C71466E6C65645B7CC29 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; - CDFFF4FECC8986BE16933B24A2A6705F /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + CDDC31E171D1B1ADB9F67AE18E3CEBD2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CDE345C23442F216F1CF3AD8BC422E5F /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + CDEA2B647346AEF3BBD99512E658BE4F /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; CE127EA34762A583D20B27A3FB183A94 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - CE2E9A96B006F6156BEE69353385D25F /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - CE2E9E05A04E41002D438E2EAE393C3C /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; CE4250287D6892F8E6A4565235E7A5EB /* GDTStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStoredEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTStoredEvent.h; sourceTree = ""; }; - CE79789FB8E987B27ED41A49D6B4675A /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - CE800B9F6E783B4ECE7AA67C76B71C7A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - CE8BB176E3CA80CD84F96298F308F42F /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - CEAD4F693EAAFA38CAFC8901547F68FB /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - CEB12BA4347B46ED3E6FCB85E85BDC70 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - CEC5C58801626282B7B517E9151DCD92 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + CE4CE417EB7BCE41F7D73D710299335F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + CE4FF328EDC56BBDEE5E4AAEB18DC47D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CEA48CC6AFD3783EBE4BA6344D0FED0F /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; CED28DEBC2FD19F1346B08346877F65A /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; CED7747A6AA46EC1976311D36800809F /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - CED7956F795BB4B3F702234E8CB630D6 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - CEF2F61F0887BCCF3E2FD36E867A0775 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; CEF3923920717C24F2EB6ACE8A96A364 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - CF00EAF341CD4A19D2EFFD862B84246A /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - CF05EEDDE1F42BEBDED47A1E90BF6E72 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - CF3515D6729AED91017203BEFB76A927 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - CF35D67199A3C1F368CB2BADCC76A144 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - CF387BE93EB6E9CA6ACEFD82F6AC1D58 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; - CF399719F6A03B0285664406D447BC33 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - CF66AB4F9569D8AAE1EC3C3AFB7FB420 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - CF703D154827EA4596E3AC3CDA7913F3 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + CEFAE0C3CF1D99BECB230114EE412F42 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + CF4FBF84A03B3A3676453FDB124B0D5B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CF72A9ACEA8C2E20997ACC80E819BA40 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + CF99CEF282BCCCA7045904509F3CAE81 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; CFA779673BE0BE8DEBBDDDBEDB1F3213 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - CFAA1EBBA031711C1B456D1E7A583749 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - CFCBF330D602E8E5A458555B4D444E73 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - CFD2ECA648F806B989A733CAA2DAF55F /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + CFC75F75889338CAF49CA530BB3F311E /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; CFDDE8E0E29C88DDA0C9E8798860D878 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + CFE50FFC676E29FD9BFB1EA54887CE9B /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; CFF9BB1CA206380572EFC80409667259 /* FIRCoreDiagnosticsDateFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsDateFileStorage.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.m; sourceTree = ""; }; + D0370B2D3A7E017E08DC3D7BA3297F9E /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; D0575CACF508FE1BFCE3910B48E69069 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - D07E020AC126A86B9F047BD3CF998B64 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - D0D2EE2B22CACFB5A687015D3082F7A6 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - D0F578D5380965774B192A36A30A481E /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - D1072D0D3C78AF0A78D488891DA21D4C /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + D05769483CE1B7B36032C215CEB2BAC6 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + D05EBE847C047974E2167EDED4553433 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D083FB578FC9632BB9E23AAB9ACA3FCD /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + D088FA5527C3FF14246F7A5441833B4D /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + D0C1F8FAD362FC436D035E3E4721D715 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + D0C65660A495E07C3058EEC513FA0C66 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + D0FE01A8134FB0C1F55977D55508FDED /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + D1170E41A93AAC135601308AA15AB3F2 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + D1580BEFDD0199AB13AACB16E6426479 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; D16FC95975F74E79569D058C5442ED48 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - D1DE27793D9272C8C48580DD15DA9735 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - D1F716E969B51477BF426F0480CA6BD6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D2635AF6ED610E433DD12BC0E114CA3E /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; + D1DD7CF0F7A3857541E4E125EAA8D512 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + D21510FE6CEBEDA197FE10D0038F11DB /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + D233ABF5A66CC51C775AB4A1A43EBCC4 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + D24E677BBC14DAEEE0447A35209AEAC2 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + D24FDE4ACF6F90FECB2D846EE02C309C /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + D27B8F3A61A7F87CAEBCFB89606EBC33 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D27DD9EA70432EF865F1A64C6DE26DC2 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + D2816349F8CD77CBF978F8362602A095 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; D288C6A4340085CAB3A1474DCC103CFB /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + D2A03585CC5CFB169458018CFF85C784 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D2A4C693BA0360778B684765EA96F41D /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; + D2A6D1E488F8616F877E6473D6DA102C /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + D2E5D64282CC7D790DF0D1CD3AC276E8 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; D303224896C0540A955BA28C9B201751 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; + D3083E3F6791A7F0E39E85AEBF5607DF /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; D328398F059C6753CB6FD284D94ACD5F /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - D372A6256A180734764DF20625898BFE /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - D374630410F412F15FF3534AC4F9F886 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D3749BECB81DA94E2F3AB6A5EF8893F3 /* 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; }; - D37A2042179ACF144088B152D8CCEC9D /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - D3ABDC2173957C92A18048630708D7A3 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - D438306ABC79A45616BB67230E8A3CA4 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + D3A3B488557565118EC138E8B533944B /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + D3D7687A63CDDE8D8CD1FD27BBA35203 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + D3F4AF856E6308B210B2E961297B1E8F /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + D423632AE9D7BA4119B5968AD8B01671 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; D45FFC3C8C3BE59BBA9D2E82DF24A1B4 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; D49C860391A2659769FF7954DF6C5EE4 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + D49F0EFB39B19BD09517946BA3251E7E /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; D4A086F979493189EE91F9C149DDE8B1 /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; - D4C432956D554714D14481DB43648082 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + D4A7BF4513B33FA0D8756475FB480194 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + D4C5CD890680CEA719DD1A8B5BC1E1D3 /* 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; }; D4D016794F3744BC5E7046F6A587CAEA /* GDTClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTClock.h; path = GoogleDataTransport/GDTLibrary/Public/GDTClock.h; sourceTree = ""; }; - D50ADBEA301ACE724E39EEC59E7D7401 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - D55086610BA33B0E019E42B6AF131FCC /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + D4D4BEFF8782DF73A1A3A1C4BDA61881 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D4ED23D2A53497958107B386E7127258 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + D54DBA93AA2C885672E3FDF167A27787 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; D55BD71D9F37C0C70DBB7D0D84A1FC04 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; - D58BB2603E4CF6DE61074C51E8C43C91 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + D56562BD166A333AA792BE860DEB9479 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + D5A75DD613220BFE27918D968044E48E /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; D5BFD0F5C965D3ADB69786DA6C9B64D4 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D5D4B0EA1C69FE98A7BB477DC3FCA5C6 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + D5D1627846E57EE2D200613D10944D3D /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + D61ADA0D65AF7B704FDA8AB935CC54BE /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + D61F4F0461B0C7B5AD28CA775BF8F55F /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + D63C54C3D7BBC8737124F871982FBC76 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; D63E03F1ABC7D78DD3F272FAAC453778 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - D645118DFE6FB7C20F4E6C1C6955A1CF /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - D65B743192481AEB0E97FF3AB7B38DE6 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - D6FD0BE6FD89A98E3F9D4014F2DA0697 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + D63FA28AF80536ADEEC30404BB221297 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + D67B7CD545E3FB0BEB3931F8B928AA31 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + D69982EDF3E3189BA62CEB786BA571A0 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + D6A2B5E32E4E76CFCC9ACBD0FC878085 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + D6B20C92C7BB0944A74CFAD9963FE8D2 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + D7014E8A87FE95F8EB4A9E9D165FCC6B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D71097868824A10B6E5D6025B9CE5C13 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; D715E8B4DE1CEBBF6120A95EBAC89838 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - D748330BFCDB2BCAE3663E9198FF258F /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - D74A5CDBE91B759FDE8617B5F9ED6C43 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - D79675CD72D4C6A8C5E442FA8887B426 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + D72B88AAF546BDEE9C43758D79D2D6D4 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + D76408503C34E1CB1F96401C858C61DD /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + D78D5C5E5A979D2E922CF3F4CE4B551B /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; D7A7B3758C1D359A15F4DF30C28E57D8 /* GDTEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTEvent.m; path = GoogleDataTransport/GDTLibrary/GDTEvent.m; sourceTree = ""; }; D7FF715220131E7D8A8DB6FA9A1574E6 /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; - D818A63670A485270216279045A21859 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - D82A5B8DFC67169F0D5BF0D713536299 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - D86B85DFC07E3B163992F6452ED056E8 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; - D8A560EB40FC009217DC4DA3D4AB3641 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - D8AC4269391716B6940C888AA4DD5451 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + D819E5A0AA43744CCC765B8DF944EA08 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + D828234ADE0B8938489DA54D83F3ED6D /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + D83C6732A053303219222DAD44578A89 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; D8AF93214EB824D891C9B3A721D08121 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - D8C38461C3643D38F75191F67094D39B /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; D8EC34EC8CC38CF16D8663A7854E1F0D /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - D8FC957DC3D9891D6C2213715A4A3CC3 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; - D9157AC9BAE95C58196307C25D94827B /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - D941AF1DB4A347DDAC124FE87692520A /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + D912E9C8CDC30A2DC90C787F99DA9738 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + D921AFF1F8A599A86A3A40A488CE2337 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + D92355593E3B49D9CE0B6F6036E98062 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D94E6FCBC75DDF51AEEE3283443DD321 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + D95027C21CDB2163088FC9FD923A4F17 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + D9D72929B07675E8D75FB35FF71C2E33 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.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; }; + D9F4A62A9ED7CFA44D786F0DF1226B10 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; D9F83F5667A9B217830748AE33EE67B5 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - DA1DDB000DB0E90F1460D9FE02E79F2D /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - DA39FE0CCCE93A98D42217B3966CC407 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - DA3E56B402EFAB8A6A5C000A0022DBAE /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; - DA558CB3BEC3C7A92CE9063E5B36F312 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - DA683C170779FFDEE242620DABFEDC8E /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - DA7D5301810BE26C48FD38C4EF968066 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - DADD793C127BAD297FC359DA52B8CAC1 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - DAFB243BCB37304C5B7E2D45D18C43D8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DAFCF8B66A79D74A49315DF33754EA6A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DA6D2458F2B0B1E631E9BFC913E01468 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DAA3196A7558E62E1BA00CC84EA2BF40 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + DAC67E8E06887F48D79DF2EC45EB80D7 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + DACA43103E6BB038DB59FE3C1706956F /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + DAE7E2BABC7879C5D9AFE432EF097569 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + DAF45E2E311666069F1D1EA35B8F0383 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; DB1BD9FA1E2AEE6D6851171204F2B792 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - DB335A2468D50CF10DB8196DD1B219A7 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DB3CD537187A8F6C7BED3EF52D174F66 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DB58588FFB3AD14C9A80448F61D7515F /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; DB72F4C7ACB2F1CE117913832159A5BC /* GDTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTAssert.m; path = GoogleDataTransport/GDTLibrary/GDTAssert.m; sourceTree = ""; }; DB83BC203328D170AE2DB2FCFE9EFECD /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - DB9679FCC7A39FFF3AF8B1BE4FF7C457 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - DBABBB14C13E95007EF4229F5005F232 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - DBBAD328E62FEDDE290D0F9081BF16A0 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; DBBCB12494C4A3B3271DDE8C13567D62 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - DBC7BF41CC18F7090E36246E2F669FEB /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - DBFAE2B35892C4CA9F0F5837E647EAA2 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - DC138857AEDA2BF16106304502B80832 /* 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; }; - DC20C5F5CAC17952DA0E8720A8F4A8AE /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - DC2D1705177B2A20B71D3448AE06EA66 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - DC422496D946DBA929558C84D085ECFB /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - DC4E164A3994CE19EB733D241DE93CCD /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - DC4E703D4AF19F9B75BD503261B26FEA /* 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; }; - DC95121B8E97A56644707E17B6C994FD /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - DC95671A15E9C07339E1D8953A1147DB /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - DC9A7FD402406EE14CF5A2B3091C48BB /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + DBC7C899B101A1DC1276200FCFB25C20 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + DBEF071D65684E062330ADB59D9D05C5 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + DC27773B4EBB452167FB1A1926E52CB2 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + DC756D8D350A874AF5246128B5A910BE /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + DC9B55A67EB94A81F103AD786D371F01 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; DCA0397B2B08261B1E953EE871D5C37A /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - DD0BA5BC24EE4E864BF6C5CD481FBD25 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - DD26B32FF25148C61667F4AA76D7922C /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + DCD0E6529E9841D6C85997AB91B4B18D /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; DD41DFEB4D20816504C0ED50EE6A03E6 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - DD5608687BECEED09E461BFE33083ECD /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; DD5A4194530FDB347C29F71AA4FF3226 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - DD656B4076DFABD877855D62FE4B1AA6 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - DD6DB2BBA5DDAF37D2719515FCBFF477 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - DDAEE2A02C6BDADA31CE8D2741AED52B /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - DDB133D484C08862DD3FCB34F3F63256 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - DDBB9C9E31B5AA6FC31A8701993BCBB0 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - DDFE1C5DE15E21C2382D0C647A24A94C /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + DD843FEED6C2152F9DD2C2890FCBC526 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + DD8D6B2B1C7ECC18DCBDF847EF2DE14A /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; DE0A5B7107E9BE6590E7CE266D26EEAB /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - DE1933BF4771FFFE32EEEC5DD49B084A /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - DE495CD767A8541DF1184138EE27C08E /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - DE8AE63B22BF8DD7DB512A22E1636B26 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - DE8D63720415AAF8B81D0D5AAC31F353 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + DE21C9FCF6884FFD5A4A37EB846FD9CE /* 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; }; + DE92FC4099F9413C30E24F4385965F45 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DEA0FFCA817B9BB029A31235C95FDD47 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; DEA694E7E5C1A607469B2F201FDF6734 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - DEC46DA3B0658B379FC60AEB6EE786F9 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - DEC6C4E071F546974D115DD77D7827D5 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - DF49A48715301F1EF9B5A1AEE979811D /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - DF67ECD1E12F2125D0A1C7764C5106F5 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - DF9420F89FA08462AE32838455554263 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - DFD6A559D2729450558813F60FD5E889 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + DEA73D9116E3E6FB1B522A8D311F63D9 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + DF023C46434A618EA273DA8E3F8C49B1 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + DF0916E2D77A3E67ED66B363A3040548 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + DF27017AAE3E8185C335CC76EB83C16C /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + DF27A0F5D9C24DC0FF20189052D4DEB7 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + DF32F01EEED52B2EEAF17A10F226FDC6 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + DF645CB5451C84733660BB79C9FE2153 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + DF65D00D2E3926F0F65448B95953E2E8 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + DF6D5385DA62C217BB2584B0B4FBFB6D /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + DF9CEE916A7CB9AA263794699B5A2EA1 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + DFA74FC4FDB093E5C8CB9880404E9BD5 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + DFE332BBFA9EBF740D1DE60CE7CEFF05 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; DFE58F2F7DF905A211BCF64AE4C0FA8C /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + DFF192861FFFE74B020D3D11BA0E279F /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; DFF6B78A47997D1A09075739A65CD297 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; DFF8F03CCEC8054A1A6D5F51BE7DECEE /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; E0335CE7297AD0A020364657C76193B4 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; E06EC5619F310086532DEE3DD94B328D /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; E06F533B0622CF71450FA198FEF0B65A /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - E09A60C2A51157612EC0773C1BB677AB /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - E09D716C54A21D487ADA1B2703C86E6F /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - E0AF047A26BCAEC965BF776CCF2C99A1 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + E082881CDFED92CBF377AA6C5387CDE5 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + E082F75E88B6470276CBA30D21654AA1 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + E0875856403ADA7B0ED49EAAADD70B5C /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + E087FF5551C6FBCDDFF393AEC10380F6 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E130A6685FA21DFD3AB3D51DC6F5B2B1 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - E1404831699A6A4E3B894479C40BE59A /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - E16AEBE6E688D2B3CF4286F3156B13C9 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - E1758E76354C650C68C1A3A2BF254CC4 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - E17A2EF70C40EAB41925A2983530F0F7 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + E137D2529ED147EE5C2FCDC86DB77EE7 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + E1582A14837CD50EEAC15B8F48CF8B99 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + E15A10A24919BCF86F29B8AEEE9C0C0F /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; E17D9CD11230D3D992C8F76282A0A784 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + E1AA147282D13B9A62FB98A4D23C0F97 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; E1B4751772BB4FD74AC8082E204C82A2 /* GDTStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStoredEvent.m; path = GoogleDataTransport/GDTLibrary/GDTStoredEvent.m; sourceTree = ""; }; E1E297E5E6E76E62B903BE587078B295 /* GDTEvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTEvent_Private.h; sourceTree = ""; }; - E1E4DD31D81AE0E3C64094C4791C5FCE /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; E1E51FE5092CD4D13C651F128F55E751 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - E1FB07B0CC8D15B8EABA88D0FBC9FA7F /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - E20142C80FA5EDC6CF2E7B584F05970A /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - E2025E969F4A355BB168971258C3B173 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + E1ED07314747EB40BB32C54621BB1A01 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + E21D0B51414DDBED41BAD7B63D53A21E /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; E228B19B85B5CCEB10625AAB1350D5FA /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - E23E6CFC2CE5F8525BC1BBBC5A9170DA /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - E265D8F6F85689533C709A9FC9579C46 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - E279B2EBAD17F0B7B32DA76048F8ABC5 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - E27E4AE7E5438025B3033C5A3EA246D9 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - E283A197C02B1D1A170E9F452E90E51B /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - E28D2E3B1729290FA8F9C8260B02D0B0 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E2A015033875EC5BE7D392791F17A964 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - E2B5BE7D91C42B92363CB1487D39E0E0 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + E22B4DB70E30702375F8DA6893B64F7F /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + E267F41959D4E2BCC08E452C2D817B76 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + E284D6FA97B9F53973F4EB270D42D492 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + E2A875767FBBF801A7E11E158C2A3E0B /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + E2A96D1F154AEA87D016369A0C3870EF /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + E2B42E3ABAEFC26524EE67261B0E6AD6 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E2D39D57EE6339FF442978B150F2F571 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; E2D9656538B30CAC2E7730280608846A /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - E2EFB0767F55964F6071BCD000080507 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + E2DDEACF30C7A9A12605ED2AD5D59A32 /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + E2EF82F5CFDFF78C6F58575C21FA511E /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; E305B54EDF07E9F41D51A8902566F2CA /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - E31C47AC2166B0489709141138915398 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - E33360EBA3D9E551A9A45C8345B497EB /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; E3503E71EA767ACE327A218187EF6033 /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; + E356A1577B80364B95DE1871626C066D /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; E3771A8388208707E9CA9FD7D62B2D46 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - E377689DCBC687230A70D1E8A21886A9 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; E37F3226B79FDEE5D1ED287B68F1FD7F /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - E383F515439768383BDCE78CF38F7DA2 /* 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; }; + E384F12ABAA7487D7782EFA4732A7CCD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E398D8F3A65FEB22072B0B2C2AB7EE26 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - E3C92270618C3F38F45AB13CBC0002CB /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - E3D9D482398AC78F2A144C249F57F6DC /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; - E3E71A093C520CA7ED9048BCED657CFC /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - E410A15B31656AC6971F3D3B084B743F /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + E40ED80CCBC57151A56EF37063BF8FB9 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + E4172608A414F119DAA175846E42D3C9 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + E436C7834CBD27A6F24269FB84D641E4 /* 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; }; + E437ED23976C426526DE63DFE45023B1 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + E45604C26007BD9B5497EA865674F0EE /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + E45D3E7A747D70DB0D4B573D45387E46 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + E489C8EF128611E726278BD75FDCCF03 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E4A12E5FA43415EB87EF2E4A2B8EB6D2 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + E4AF16FB139EFED7BDCA28B665998BB8 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; E4DBFB4E3EB87512BFFC27EAFB4D7E2E /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - E517E6B50DD86058B24162FBFB740286 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - E55564B49A16C717F3AE7848EF80CEEF /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + E5559923AA1F789D49B777E430398950 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; E5611B527CABABDA10E1A7A2C70ABF5C /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - E5690B9A979C0053589923673622FC85 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; E56D8FAFA027A4F6F1689695B4FB126D /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - E571ABF64A41CE4CBBE4AAE6202D42F5 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; E57FB5D8B319AD9911982DB9D991A7C7 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - E5839957369ABECF6A487AE84792C683 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - E599DF2E1EB50E35816E14B3D9E5272A /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - E5B709DB109B425C4143DDD6811F3447 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - E5D2543E5CBEAF117CF42B0CB4FFB740 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - E60AAF61B5DA56B41F263EE9D35A4FE3 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + E596BE4F55ADDB5AFFEC47697DD5A142 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + E5ED82D9706849F2F567FE41A3EF434A /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + E5FCE8EB0C7E10B5F7A6E9C5A9C7AFFD /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + E686FE56EF5CEC46BF66195FC2C9BFAC /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; E69E5C6A40C8F5B47D08C939B9911BD2 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6A5E4BEFE7F41537E5CECF90E5E83F7 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - E6B2D8A5D47AE547F5D716E8F7B12BA0 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + E6B7EF2FE69EFA0CAA8C6CABED453CB9 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + E6BEC6D2172E395B251077020EC71F68 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + E6D782F825647D8B8375940211AD8B6E /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + E6E83393AFE8646C82741AA740C22F85 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + E700975F8853BD85D1AFF86690B68F7E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E72566E849EB71B89223F60686D9916D /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; E74BAC7BBFBE1098B23958D35B7CA789 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - E7628936B4B365331F299476F5D2A8CE /* 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; }; - E7BAA56EA5DB28E6B266B2E3056ADF68 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - E7CDF9715C400A8E198BA0A3AF9B32D1 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - E80CA7F21EA9447D0ED7262E489282CE /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + E792C8F838061EE4BF767B5DFFB90B42 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + E7AC99FA8503EAB4FF91CA0287712646 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + E7FCFB9C0C6048613A3DFE761F463840 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; E8105BADBEB62C59C340CF71E2544D9B /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - E857B538113025D06AB2D73DDB6F6764 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E85EA29B7D10E54713877DEE6E8C19C2 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + E81242441E9F22364F9B01F7005A8B54 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + E8306CD04616B2AE9ED86313F79FACBA /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + E839F9DED2353CC9F1B833EE05AB3586 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + E855C116680FF9FB16990497C8F510F1 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + E85B008837FA9F5C524F86ADFBB667E5 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + E86413D607A01813B804BA192024B029 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; E86AAFB33C9524400B23008B06350DBD /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; + E87031255BDDC756EF8EA2445A305577 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + E88611FCC90E298586AB2C1EFDFDF4D7 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; E88A1BA322F30E374FC36C05BB2758E2 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; E89431071A7491F4E4076F43F0D9B5D7 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - E896441CBCAFB15634A77E70C3DD7DAE /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - E8A72DBB2243416EC64E69FF0CCF66CF /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; E8DFCD1D31D8CAA87143E066DADEA60F /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - E8E342BF5DBC80363E2D21E69EEAD8D1 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; E8E4135161797AD2A3E9F84FB1313299 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - E927B04D6693CA9C0EF0BEDC75F8EDEB /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - E9773907FA48EA314780340DA6C04AE3 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - E992C56CAE9D75C7B56C64F706B32F6B /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + E9245B5E5E4D86A09D567E87674513A0 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E97DB02C97D26B7C40BCF28A04258E58 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; E99C41C326259BB496E714ADA47049B9 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - E99D01BB1DB856E4EB342FA7725B5F29 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - E9ADD22F7A84683C2040C9705117DCF7 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; E9EF8B453595DF528C6F3A28CB31B7CA /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - EA33A0E9BA08017FE8FCA14EC8893AE4 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - EA43223A2D73A1598B0A360653AD2A66 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - EA69641476EBDFD775EE1A153B4DC45A /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + E9F18B64986B9A7139C2928122A9021C /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + EA065A1E76AC4B9E229359E2E6997249 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + EA28F8CD09A6D38BD4F0FE8DEBD01185 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + EA35C9BA0A713AA410C2F0D77F97197C /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + EA41E26760068111B4C2441D15CAA4CA /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + EA8A9690C0624A65362E2EA86CCD4282 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + EA8D1E6F05AE398D3EA1C47BA61D9C61 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; EA96D3E246ECF3DE06A0AC55CEE6829A /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - EABBA3BE20F3C4D66C0EE95545419247 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + EAEBCA1777114BA426D64BF402AA2F02 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; EAEC75E92D73486F6BF98F23AA7FFE58 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - EAEFFF75A9C605A1EF339A10262B0292 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; EB01C7233CEF74DFAA637F56AB8BBD38 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - EB4425FBFCF5E1B982BE206B70D958C3 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - EB77070CED9511E922A63DEC446AE7A0 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - EBC53219F24A563022B76C606896E715 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - EBC7E845D42BE5AC021FCE397D926B2B /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + EB07099CCB71AF0E678168B069B44205 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + EB405B9622075B540AE9604AC84ACFB1 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + EB519EE03892715ECE983731D559519F /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + EB54E4D199075C3DCD0B668F7F4A2828 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + EB65B1F3AFAF72A8F9BF4777A3BBDFEB /* 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; }; + EB7BD19A4D12554BDFA6BC41989261CB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EB9E09F7DBB216798A751F44ABEF3648 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; EBDDF46ECBC7383ADD3F63521BA9EDAB /* GDTTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTransport.h; sourceTree = ""; }; - EBF25C83155D2B8C1F835544873D640B /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; EBF297C2CF43BDAF7ECA04EA33DA8249 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - EC2570CE7207D22EBABC07C0364E6D2D /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - EC50CC407681F46170243E6859EF0D0A /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + EBF847F06E3B1135F4A59B491BE49CDC /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + EC1D9B062B593261912037D96B1D02A8 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + EC5A83566FFD0C1E52531603AA5E52CC /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + EC5BDE0FB49A15E590FDEC3D9D947CDD /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + EC5D26A75463D24E519BF4EC68BF6243 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + EC9333163A7D0ADADB870B7BB851A3DC /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + EC9619B8F1E2C194DE511CD8A7AC973E /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + ECC239C169CACED821B555E60271A9DD /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + ECDE6F8AF8D623A387BD8F1DEA0C2DFB /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + ECEB113579B22F8F88902146D58BD616 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; ECF11B747DDBFFDAA4B9CC0E48FD7752 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - ECFD6625903AE1A75435834D24DC1E7E /* 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; }; - ED17BB475760E5EB1808B1009503CA17 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + ED039CC8E2D258B12AACF3BAA94BBDD5 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED5C1A02BFFD5E207406E1C79A084507 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + ED454F9E93C36A82D19796302057A7E7 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; ED604AB876EB29F716214E9151C8CE21 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - ED77A1547567C8ABCEBCA42CA62907C4 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - ED799C3A833FF976CE316E5DE44B41D8 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - EDDC19E49F1C68FC7A9EFE1656004C9D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EDE5F3B200E59A109BD7F0DA32A44008 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + ED641C78B588F31D0AE58DBB99AE6142 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + EDA33AB62C4B7D01D01F0CCB6F181C8C /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + EDB837420EC4F759DDE3AF1AE67B88D6 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + EDE0103BEDB08DD9049FB3AA3644A40A /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + EE30D43E5C4E5D4333AEAD15C715ADBF /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + EE427177AD75D01D5E7B5160A6CC7ED2 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; EE4469F781740A81B073D2C069DA9B27 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; EE45E5F8AE599ADB186A35959088179E /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - EE654960CA0CD4B1C81541EE3A4A96B2 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - EE6EBD7876871B8B992FF5202D9EDF3C /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; - EE7DEC430284CD7F7EC6768D1BEDF3DB /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - EE7E580A039E778B60AA7E72B7AA8F26 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; EE8A48F4EF70C48DBECCFFA17B18D06F /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; + EE8F86CB1A6A99E11E3604FB3EED2811 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + EE98AE4383C426AEE9E1E31E0EF5F37B /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE19242EF1D0B431E1AB484B055C540 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - EEE5729F20CF52915638C7F9B0EF4C3B /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - EEEE43297B60608C3C21606A46459B14 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - EF0992920E7447EA95B405AC270D74C6 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - EF5660E45E7B0A0A5D036908ACCCC0F6 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; EF594034BCE978C5C293994FCD6EC5C1 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - EF5B7AA7F51A622ACDC3670AB5D0F5C2 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; EF619BC2828EDB1BF708DA758672C714 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - EFB8D33B78500767C03AC602F3A78B82 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + EF7F636FEBEA23A9F4137BB9AC4BDB57 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + EF9921F47FF3BDE4729BAAA616C80D74 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + EFCA9FCA0CFD1A5C5A7F1497C3E224A4 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; EFED34F1FB01C5CC55DBFC8779846549 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - F003BFF1B69BDEB9D07000F955D7EDD9 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; - F040D15C66ED75B1A6BC63E377BA4854 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - F08DC70B9F75291C86550501FF30B4F6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F124D8E16F5FBD066EFD787A314466A1 /* 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; }; + F06D3ADEB9AF413332ECD1AEFE347834 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + F08787B17693E4ABEC946BDF2D39BDF5 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + F0DB6163D4B984CAC96C0AD4026C3894 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F1299F01C1D349DA80195EF2BF9B67EE /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - F1381235A5E7EABD9908DFFD58D0BD99 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - F14C8E8D135B6A2F1462BF1E2B8B2CB0 /* 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; }; - F176D8D1036AD52B6FEC84FAC49139A3 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + F132A2384FA9EA6C22DF15802E7C47E4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F13E5BA2F003C2AD077764D62C67C1ED /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + F151FD2B2793EEA2AFBA711AD59876B3 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + F1712CA546A814EA6A8CE62EF8DD9850 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; F18BC7129E99CEC847457ABA17B4733D /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - F198F62274B8A8386C2B7310E2489C62 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - F1A94A809492A1BA619A085ECB3F74EC /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - F1D19B0EA38EEC5CD5D5251AF43C257D /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + F1A64FAB27479F2FD6C329BDE02733A4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F1B007A4F0264B00BE2EBDB3E43EF100 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; F1DEB82B7415582949BC39819D5A9AD0 /* 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 = ""; }; - F1FCF8E02135485E0C23FEFE884CDB48 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + F250FC3EC3F38D1DCF45F1806BD95F98 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + F2743ADE8B8346F229A820A6EE59C6C3 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + F27A6172A4529BF19BB7F287C544B5D2 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + F28EE9F84264694BE93170E2A04E6E63 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2EC5EE4A9961AF30801FA23083E893F /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + F2F2F0731A51B790FD2904FAA4CFAB0A /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; F2FE43E8C09201806C0221BEB76A1396 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; F306757A7F52D0FC9929E2BFABDC8FC9 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - F3103EC0D7D0158AED02D8DBC05DE21C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F31A8E3C39E02FA88FFE80304BBF16D8 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + F30F7DDD011B6AB4F208D4402C6F7C09 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + F314944C00BE6B09E422BAE76B3F1334 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + F31A9A59A052D6F7EB940F9D3A6D79CD /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; F3275EEDDFC0BA335A45CCA50A050894 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - F3412BD5233E3D48FA5CCA5DC7837617 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - F373132C0248800341B87D8F630767EA /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - F39B04CCFA3F148F06D731288BD214C8 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; F3A35CCA95C945DDD55D3AB0745C5C8D /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - F3BA367985062220F1382DE1CCB75ECB /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - F3BC78208E88BD0AED435415F9149B51 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + F3A600554A29214EB7C2216B00E15992 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + F3A98E2968BEB084F27F587A4C5726ED /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + F3CE924AF39D972901B75A1D006860B9 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; F3E2C09229F44C8129BBDB4F641D8034 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; F41B48A54F45CFBF9E54AF1B29CFFEBC /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - F4800FE217F808979C87C8E841605069 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - F48B38797ED7980805228D5492EFBC95 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - F4ACCCAADB2EABD98EEBF0E4F0FEBB25 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - F4C95F3C07F91153AF32E43BD8DBEA78 /* 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; }; - F4D92D870DE607D7B8C8194D1AB7A57F /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - F50F6B6D2CFFDABD8D303D89754C7837 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - F527931D0C875097618FB77F5DED35FD /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - F551C9D0D2CCA17BD67D51D7524B163A /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - F575C8650BBDED7E79AA166FA59769C2 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - F59A869702F4824BEC6F65C61A4FE369 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + F4C3CCCF5C71EAE01CC0E71815720E66 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + F4EB053F88B611F207628060A709532F /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + F56003BB4ABF3AE50FC4F26A90B5C09F /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + F562F79FEA0DC18F659C702B32DC93D2 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; F5C159AF450FD701B85E80EF47EB8CDF /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - F5CC6C18F9D85D5EE60E7881A52C8F50 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; - F5F47ABC967EF8DDB8E104E9F74AE03C /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + F661E60947B4E42E1D50EED00F0407DA /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; F68614DA4BD83FD88638B2D6FFE432AA /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - F6C2544F40662DC7D9BAB9A046C7EF0C /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + F6B26AFF04F1FEE26DC55FE531D0C411 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + F6CD84BF50A0B6A933D0FF22F45F0465 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; F6DB534E64AC58426CC20A569645D015 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - F6F432392F467FFED0E683F8D259EF2E /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - F707EE176FC3B12911567C699484964B /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + F6EB774F8AC2C0CA3AE69CF2AC4A0159 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; + F706FA8688F45B47E85CC664DA8CD79E /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F72AD69D6FFFD1BD9797D1C508EEAD21 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - F73AD33ED9EE84A71874B6ECB3003643 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F725D49F5D5099AEE70D6DC40FCADDF2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F7365B28A2A1507AC15C7C3C948E0307 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; F73B4EEF0245C03A0E2B6F96B1549450 /* GDTTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer.h; sourceTree = ""; }; F744E1D3645FCFB17E10DF7C941C772B /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - F75073C7525C65A17556396A1DF8B197 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + F758C0842CF42881EE9090A2D7CF3353 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; F75C0D1FAAF7B656AF0832A802DC84B7 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; F785C994B38A585CA88F6FD3E67C19E8 /* 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 = ""; }; F78661868D7093AAE0E7699ED8543A26 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - F7870E819F397BB6F0206D325F176A30 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - F79FC35ED9CA3BAAAF51B5D4F1EC1705 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + F78B0019ECC77F4C9916CB73223B93FF /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + F78CD7C2F3E2E0B3206A404242C93775 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + F796ACB971B3220AAEE056E1A82AE383 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; F7A3959711328FF127A9A09EDBF43483 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; - F7BA28841308F4FF7D1F2CE26231A620 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - F7D2359A2E6F37683E388997567A5424 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + F7BE67CCE7C5F3CFBD5641CA2C994463 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; + F7D796D2DD86DD6951ACA54F5EA194D3 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; F7E57B49B68FDEC37DDD4EA4E510172A /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; + F7E94DB59A7A62971D17CD5DE52D1FEA /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + F800BD2C4A4F294A3BDAC5EB53F37B43 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; F80A20E8152653052F4BE92981AB83A3 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - F85B85D22BDF2E4633C11CFB00D5D384 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F87018D1B97909D7DAA4B43070C022DA /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - F89338F87AA150D3B5F4A46980653AA7 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - F8C7317438F32E76C74A5F078BC0E653 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - F8C773ED252D06DCA1DB6E14F56336BC /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - F8EA467571781ED6260FB02D8B6FBCFB /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + F8248223FF4290A3D4266B51E6A2B504 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + F844C20A54D995CE7E93296EC2B64F8C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + F84FC51799C8CDB5DFF75A4024913E72 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + F8523B6728DBA88333757E23E5E13BCE /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; F924F4BCFF41DF00E2D16FC29F4D79A7 /* FIRCoreDiagnosticsDateFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsDateFileStorage.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.h; sourceTree = ""; }; F92B62037AC75D89E9897DD968367D03 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; F9329AF0B707E94C3BE5C1672C3CEE31 /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; + F93C9E3B47C0C860974A39F9CE15FC7C /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F98ACC2961642744E6F8EAA770B039B3 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - F9BA2E6BDB61430E49AD9B7B3D271E2B /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - F9E73AFFBE8A0877899831DA71FE970F /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + F9857BED366CA42AB9F83EF63D63CFCA /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + F988BB9CB530CBDB9A1791E9293B40F5 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + FA05208432EBAB01ADE3051E0DDC468F /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + FA1954F4F2B6C752A44608FDD6E9942E /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; FA48E09B0A5EB5DC3A301E71FE75E408 /* 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 = ""; }; - FA497F74BAF4E9533A468D33B347590E /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - FA54854F9A39F5EF8C5B67A0656D4761 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - FA806BBBE9D663E1F3A1EBBF41033ADA /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - FA8B070C1ECC698B707DCABE7EAA10BE /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - FA8FF8C401A4BB41C7A86986BE0A3A53 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - FAA936CAA727A4AA5F59E224C1697C1C /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - FAAA9B1EE222A2AE1EE953558AE9A582 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - FAE12C9944B3B8FD59632A8CA1376DBB /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - FAE8BA2EFD00B780218CC8E537FCB63F /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - FAFABC281683FBA7DA1F98A647EDB3C4 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FAFDBE9DCD0D1C4FD161BE5B0AB525F3 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + FA536876C2A2AF9664307B7ECFEAA71A /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + FA564AA83167F3AF33C645641EB17384 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + FA57561F875C59D89C4DB4D4B49D8B94 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + FA8F671C90D26D40391A7844DD114C7C /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + FA9F30C56E3D91E8E7A46E590973ED6C /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + FAAAB9B79963906294CEED95863FA077 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + FAEDC38D7537173AC92AC923861A2862 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + FAFAD4065A27BAB2A1848255C232DC91 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; FAFF3D6DA73503BE193DA001AF40848F /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; FB0495E0AE91CE73E0349235CDF0E64D /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - FB3C1378A1DAFA82E29C776DD2A7383F /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + FB3123A952F455F3BA8BB9C13899B78C /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + FB396762A9674F1C5B2410378C25E4BA /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; FB46E91D8C8617213964623D0EA7A5A7 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; FB511F4A05635B55609527D9515A1D25 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; - FB83C023D4213B6D36743DA74C737AFB /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - FB90C775E1933F73D3E96AD3D5A9B440 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - FBACE0CB8175007159EB79341E5FF2AA /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - FBAD23040CBE4E2142011993B8F42450 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - FBB19F6852DACB904A58DB29E5E9A872 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - FBC448E6C2F565885B42DEFD6F04AF9A /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + FB7A54F3586E2E3E3689005870160DE4 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + FB95115557FF10BFB0F38D95820E0494 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FBC510737DC1D292E4CB39A3D0C1F362 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + FBCA47BDDC923B7EFAA1A48587713D07 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; FBF553BD6F4ACA79CD6AAFD9FDF69D6D /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - FBFFCBED60AEBCF25524A6709D604EBD /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - FC0C60238FADEDA52CCEB0E83BC1B189 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - FC30379579DDE50B5E4A40FF067AC181 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - FC31275F9ABD8F55319DCF32B0940A3D /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + FC35E952ED4A537722292F258BB37F68 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; FC612B6D9217B2844818B263CA98D12A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - FC6CC8EDE9555F91C5730A2814094B09 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; FC772577BFF47AC4AEBD355A0353ED3B /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - FCA17397A6F4EE36CCAC58434AD77B29 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - FCAB6C31DCAB1233F121BDDBB98E7A72 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - FCBC9BCCB6846FC5612A6F57C26EDCBE /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + FC86158A8E3AE82E8EA0A55C1A9B64F7 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + FC89837514BFB5DAF3A02142FE2FF30A /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + FCA7CD5401BCF2E898218597DDE17297 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + FCDF7E96AF9FC5C61134B0F1733031C0 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FD15F10F0F7DA3F97B7507A714576CA9 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - FD2AAC0C63D42978EC8471798BD64DC7 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - FD4059D86E13B5BD3B77C3865778919A /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - FD54CDBEF4278CA381AB0E03B28B5994 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - FDC64B39BC611FCD8FF775EEC434323A /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - FDDE1987EDFC5044FC8ACBB0E121549D /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + FD04A093E13378AF06F9E09766FDC00E /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + FD0E8A669DD48C41347774E827473736 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + FD2305ECBADAFB3A58387E2885071B8C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FD76891E956AFD0CA82E395F8E80D8C8 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + FD805FFB38D985D452CB2E5238C3047B /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + FDB3CEAA4681EF925504917B6789C816 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + FDB76E91FBBFA9A87AE303697B4A74D8 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; FDED1EC33E807284337CE718720B8F32 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - FE408F62848CBE57A7C1319F29C2F4FF /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + FE67390DB33CBF818310CFA548018E5C /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + FE733A9927A3D711C0F6C9E619E43711 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE7E75F43B3D11A6A85FD1B17B69328A /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - FE80D776A22CAAD6BA29A345BC883F99 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; - FEA7897689E9DB340D216C1A8EB94A96 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - FEEDBD95631D1F435453BD192A38C031 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - FF2E7C1055D1900AC0D40108F1EC2519 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - FF62D8BD8F81C87F7678E2258FF7298B /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - FF841DAA10E8FDA9BE870CF58457AB5C /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + FE89443442EC17AB3E5B0812E2DB873C /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + FED985EFD2C3BD5B54AC82F3008B095B /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + FF09ADEA9F7340DB1BB906D7D6C2BA9E /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + FF51B230FBFB8050E8A355161CFDD94E /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + FF5C23759DC629965677C0E16517F4DC /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + FFA902FDA82B5D101D981AA0F4BB1570 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + FFCB61056D2A2DE31144CE33220F0B6C /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + FFD26AD0B6B93ABF61F3644CA78A1701 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -6483,6 +6524,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 34004964F901171623AC159759EC50CE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 34947538483DDD56C9B2517936FBB881 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6742,13 +6790,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ABF07BD85F56F0AC1C2C86BCAB1BD10F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B0F177AEC03683D2E4C1FCABDB82DD34 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6784,13 +6825,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BB630D5D5DE1ECF476F04294C8412611 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C311AF1F2D1C91355EA404CA8B49D93F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6854,6 +6888,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D6FAF6BF5D3679758336E553387B6249 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D752D103DB89DC1C93E3166EA88C9AA5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6896,6 +6937,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F8A87BC1D31D34426155DE9CBFD62B20 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; FDB4EC2E2C6AD56063E55E372E24F5D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6913,72 +6961,70 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0018A73EA6882581813B45F7482B9F8D /* React-RCTBlob */ = { + 00E01377C52F52B9C8E7F3B9A67812CE /* Support Files */ = { isa = PBXGroup; children = ( - 2C40D6A598FB729DF4E54AE77640145C /* RCTBlobCollector.h */, - 0CC69CA9673723CB33BD74FAA3AEFD61 /* RCTBlobCollector.mm */, - 83EEF844542D0293187BFEED661C90F2 /* RCTBlobManager.mm */, - 5933CAD4DD5ECE0887890FD93DB82486 /* RCTFileReaderModule.m */, - 921886BEFBC848029C874A393E24AC43 /* Pod */, - 3DD5D80BA0F48DF5D668B054D2529DA4 /* Support Files */, + 72DC67D55BF955781FEB320C292DE8A5 /* EXAppLoaderProvider.xcconfig */, + 38C920A7510DE4805A72506CC2EC80B1 /* EXAppLoaderProvider-dummy.m */, + 6D74D68581B8E52A02DF6B740B617A28 /* EXAppLoaderProvider-prefix.pch */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - 01C16780162D9A44B9760CB0377C1918 /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - FA54854F9A39F5EF8C5B67A0656D4761 /* RCTConvertHelpers.h */, - 45EF96AF0A51B3561D8B4A6F9AA8049E /* RCTConvertHelpers.mm */, - 4228A2927237DFE71BDB18546D00CE64 /* RCTTypedModuleConstants.h */, - 21E35835724174C091DD2D637640DA47 /* RCTTypedModuleConstants.mm */, - 27A82B35EC88F549D0047C18E4778D7B /* Pod */, - 230ADDCCA4789FC0F3CA7D52F2A2C16D /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 023BF090EFC6ED0A02FFED970F72EC94 /* Pod */ = { + 00E8988B0DB46B73F643101C75E090B3 /* Surface */ = { isa = PBXGroup; children = ( - 849AF6A0D80825A805E24796EDC2E708 /* LICENSE */, - 9D69A4B52450AFCE65CB49D74FC8D914 /* react-native-background-timer.podspec */, - 64677585D3AE031A16DC431C04D4EFC3 /* README.md */, + F706FA8688F45B47E85CC664DA8CD79E /* RCTSurface.h */, + 04957F4510C9D58E0120F2B232B0B1FC /* RCTSurface.mm */, + 56ECAFA4C28E74E2E2888F511B86E35F /* RCTSurfaceDelegate.h */, + 09953BEABC4D27E0A39F52882C8BF629 /* RCTSurfaceRootShadowView.h */, + 402BAEBC36AF3C9660E30FCA2A64729C /* RCTSurfaceRootShadowView.m */, + 97E24E5D95788875AA9F98BC8F4A92C8 /* RCTSurfaceRootShadowViewDelegate.h */, + 63AA22C732EA222AA0BD157679AFC845 /* RCTSurfaceRootView.h */, + 44817FB7E2ABCC265E65CFA2B05C7237 /* RCTSurfaceRootView.mm */, + 71B389CB5B56CFB334BE535D2476F79B /* RCTSurfaceStage.h */, + A5889432BDA0DED33AC1EF66E706F659 /* RCTSurfaceStage.m */, + 613F3C7EF65C17CBEE1B1FB1A474D958 /* RCTSurfaceView.h */, + 228AC5316B37F9112A15C2489DDE1E55 /* RCTSurfaceView.mm */, + 7E1DF27207F1A5C2C963E7713C734555 /* RCTSurfaceView+Internal.h */, + B03EE20DEF8B20D80C6F1C4AD3F8A620 /* SurfaceHostingView */, ); - name = Pod; + name = Surface; + path = Surface; sourceTree = ""; }; - 025D38DC64311CE96C412B2FB679D934 /* Pod */ = { + 00EE4807FC770C5023A44F1E49357C00 /* RawText */ = { isa = PBXGroup; children = ( - E7628936B4B365331F299476F5D2A8CE /* React-CoreModules.podspec */, + FAFAD4065A27BAB2A1848255C232DC91 /* RCTRawTextShadowView.h */, + EC5BDE0FB49A15E590FDEC3D9D947CDD /* RCTRawTextViewManager.h */, ); - name = Pod; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - 026DDB7E9724CD8FE4667B2EDFAEAE14 /* UMViewManagerAdapter */ = { + 00FE6A1B71BE321C0F10424C3EE39E33 /* RNLocalize */ = { isa = PBXGroup; children = ( - 3681C4DB91110F2DC00479AF090B5CD7 /* UMViewManagerAdapter.h */, - 51887EC3D08B15EC7B052FAFA9269DA9 /* UMViewManagerAdapter.m */, + 561957AA8E4D6D438D9C8EB2712D30B7 /* RNLocalize.h */, + 014E853B9D025C9AF4A4CFE27B22865B /* RNLocalize.m */, + 6088774AC69077C495F2EEA4E2691C6F /* Pod */, + 495C0516FE69A6C6E8F1FF9D31A49617 /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 0288CCD7DD804BC13AF52AD74F72AF8A /* react-native-document-picker */ = { + 0222E9DE073DB5C31121429F6DB9C69D /* Support Files */ = { isa = PBXGroup; children = ( - 16F8AD7EFA7628FEF5811E59B2F1E610 /* RNDocumentPicker.h */, - 96EC460E39F7C0854D7D9E1A79BEEB60 /* RNDocumentPicker.m */, - 22345344800C9B0EEB5B75E7DAE83345 /* Pod */, - A53DE3DAC77353EF564224328FDBCBD3 /* Support Files */, + 5E20B9411F931CDADBF3317807A5F5FC /* EXAV.xcconfig */, + 3AC3F08044367E5701821F9AA6CC21B9 /* EXAV-dummy.m */, + 42E31C73FBF877FD4A0874E1BFEB63C6 /* EXAV-prefix.pch */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; 02BAB2648C89987EFCC8C066E0F9129E /* GoogleDataTransport */ = { @@ -7033,13 +7079,12 @@ path = GoogleDataTransport; sourceTree = ""; }; - 036F2EACA590D619D2DF57A6D41966CE /* Support Files */ = { + 039381F7E2213BAFB49E5F57FBF0E4BA /* RCTActionSheetHeaders */ = { isa = PBXGroup; children = ( - F79FC35ED9CA3BAAAF51B5D4F1EC1705 /* UMImageLoaderInterface.xcconfig */, + 1D07CB2E2D6A6B466D1E9A18803476D1 /* RCTActionSheetManager.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = RCTActionSheetHeaders; sourceTree = ""; }; 039F683247C9DADAFE8327DB50330DB6 /* Support Files */ = { @@ -7054,14 +7099,14 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - 03B77F580726A8DB7C67FFA9F2A74656 /* Pod */ = { + 03C67D5B07A7962E08D3E21851E6B613 /* VirtualText */ = { isa = PBXGroup; children = ( - 5D4FA10B08EAEAC5FA3BBE7888B5737E /* LICENSE */, - DB3CD537187A8F6C7BED3EF52D174F66 /* README.md */, - 8F62FB973F7CC7384BC59417B1AE995C /* RNUserDefaults.podspec */, + BB0B88F93C26B3205C8713D1EF273BA1 /* RCTVirtualTextShadowView.m */, + F28EE9F84264694BE93170E2A04E6E63 /* RCTVirtualTextViewManager.m */, ); - name = Pod; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; 03F5F066AA7465846C4CF46C6F7029C3 /* Logger */ = { @@ -7074,38 +7119,12 @@ name = Logger; sourceTree = ""; }; - 041244CD32AA6FEA4394D1BF7AA99DD9 /* Drivers */ = { - isa = PBXGroup; - children = ( - FCAB6C31DCAB1233F121BDDBB98E7A72 /* RCTAnimationDriver.h */, - 5732A5ED12474994E30B582DA227CF52 /* RCTDecayAnimation.h */, - F8C7317438F32E76C74A5F078BC0E653 /* RCTEventAnimation.h */, - E9773907FA48EA314780340DA6C04AE3 /* RCTFrameAnimation.h */, - 587C7FDA38BA7560CEFA457CC7C60308 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 048BE65AF093A50ED571ECAA1161F0AE /* TextInput */ = { + 047AD55C1E2248F15D0C743E60A2D784 /* Pod */ = { isa = PBXGroup; children = ( - BE42F20F321B794FED191D71191AF968 /* RCTBackedTextInputDelegate.h */, - 56F5D9DE81FBB94FF549E764B97256F3 /* RCTBackedTextInputDelegateAdapter.h */, - CEB12BA4347B46ED3E6FCB85E85BDC70 /* RCTBackedTextInputViewProtocol.h */, - 9FE870E907CDFCF4871897A3779BDB62 /* RCTBaseTextInputShadowView.h */, - 83E41EB031C72ABA2A58994F42A1B667 /* RCTBaseTextInputView.h */, - 2235158B222B19EF02C08099CD15FEFD /* RCTBaseTextInputViewManager.h */, - 7798DD73DA86B4D47929B732B687D6CD /* RCTInputAccessoryShadowView.h */, - 90C4B9B16BAF8D434AAFBE951D305CFA /* RCTInputAccessoryView.h */, - 78E97FDAF6A2480C048C7D59A0F1089B /* RCTInputAccessoryViewContent.h */, - 89364B35EBA566E7244361212DA6140F /* RCTInputAccessoryViewManager.h */, - 56F88E1771428488ADD1003A651794EC /* RCTTextSelection.h */, - 08DB5539B88CF975BF9087EBF753915B /* Multiline */, - 65FCA36C4C78F9A2AAE588A23CC7F426 /* Singleline */, + 8DAA3B5BAA964B9BDBC5480B164E96F3 /* UMTaskManagerInterface.podspec */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = Pod; sourceTree = ""; }; 067C189491822239E5CFE216512EEB82 /* Support Files */ = { @@ -7119,63 +7138,35 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 06BF548F3C839B450095F9C6EB109758 /* Support Files */ = { + 080769E20FD4D003269F7E3E38835DE8 /* Pod */ = { isa = PBXGroup; children = ( - EABBA3BE20F3C4D66C0EE95545419247 /* react-native-keyboard-tracking-view.xcconfig */, - 30B9C2E630430BC069A34563B1065535 /* react-native-keyboard-tracking-view-dummy.m */, - 6BD5876FB2B56E1A45C9D6FD5691BAF6 /* react-native-keyboard-tracking-view-prefix.pch */, + D27B8F3A61A7F87CAEBCFB89606EBC33 /* LICENSE */, + F132A2384FA9EA6C22DF15802E7C47E4 /* README.md */, + 2BDECFEE47DCFDFC9D5FB5D3B5D0FC23 /* rn-fetch-blob.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; + name = Pod; sourceTree = ""; }; - 08DB5539B88CF975BF9087EBF753915B /* Multiline */ = { + 0949BF5692E90AEA37AF6880D9A1D131 /* Pod */ = { isa = PBXGroup; children = ( - 79E5ACC4F6FB79C540190270E906A01A /* RCTMultilineTextInputView.h */, - 585F8B38616FE9A0E6FD8F2497DE3C9B /* RCTMultilineTextInputViewManager.h */, - 62A83EBA9C638C00FA33F0729075C556 /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 094CEB5D7D47697F82F0393D6E23FED1 /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - FB83C023D4213B6D36743DA74C737AFB /* RNGestureHandler.h */, - B076D054445DA78D8360BDD9660AFC37 /* RNGestureHandler.m */, - 255D5547744EF81D43E695DF8C791FD4 /* RNGestureHandlerButton.h */, - 6A279D5DC9F3692C129B20E9B873445B /* RNGestureHandlerButton.m */, - 73C9A896A97EFFDC35C95D9832CE6141 /* RNGestureHandlerDirection.h */, - 07AA302EB838053172E64E85842C57B8 /* RNGestureHandlerEvents.h */, - A4308035A15D5B869AC760CE2E021029 /* RNGestureHandlerEvents.m */, - A1367756BDE37FC6B7D7B9BEB393B7E7 /* RNGestureHandlerManager.h */, - E3C92270618C3F38F45AB13CBC0002CB /* RNGestureHandlerManager.m */, - 61C533A8E0968A0CAE5C292E79FAAFE8 /* RNGestureHandlerModule.h */, - 19EBBC763C73E55A4C53FFA6166FF5AE /* RNGestureHandlerModule.m */, - 34978C6F301A9CAED6C961535869D93D /* RNGestureHandlerRegistry.h */, - EBC53219F24A563022B76C606896E715 /* RNGestureHandlerRegistry.m */, - 18C01916E129FB5F985A6A6B1A8B3563 /* RNGestureHandlerState.h */, - FDDE1987EDFC5044FC8ACBB0E121549D /* RNRootViewGestureRecognizer.h */, - 4D900157CBDC6614D73EDBA56BADDF44 /* RNRootViewGestureRecognizer.m */, - 7D036101DA155761F37E1B78C56749CB /* Handlers */, - 71FE971EAB9C5F0BDE5B36480AA98959 /* Pod */, - 79FDE39DF21C444A344FDD54C0C737AE /* Support Files */, + 57E75419F6445E84B471503E102A4E68 /* LICENSE */, + 998F36137BB9DC23FE73482BAABD8E08 /* README.md */, + 999F4A3634D5FECAEA726FA71EAFD66B /* RNImageCropPicker.podspec */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = Pod; sourceTree = ""; }; - 0A1617CADBC072C287168605F7F273E4 /* UMModuleRegistryProvider */ = { + 0A1DB6103941B3B3F92B748B4071A27D /* Support Files */ = { isa = PBXGroup; children = ( - 622C12FFF0D345ECA031E4E1C62D83F6 /* UMModuleRegistryProvider.h */, - E9ADD22F7A84683C2040C9705117DCF7 /* UMModuleRegistryProvider.m */, + 440F9327BBBB2ACFF6B3F2B310F7F738 /* EXFileSystem.xcconfig */, + DBC7C899B101A1DC1276200FCFB25C20 /* EXFileSystem-dummy.m */, + 1DD8B72DBDB997D8574A3A2BC15CCA8C /* EXFileSystem-prefix.pch */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; 0A4A68568F3351A7AAC24DC3C46B4C9F /* Support Files */ = { @@ -7187,6 +7178,28 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; + 0C910015B4EDFF901284932B263778F8 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 2F492DD3B01F0E0A1A1114D476E59201 /* RNFetchBlob.h */, + 4408C73A08D181A0A3FF59EA13703695 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + 0E0999CD3453EC9A155BD0EB3213CB25 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + D1DD7CF0F7A3857541E4E125EAA8D512 /* UMBarCodeScannerInterface.h */, + EDB837420EC4F759DDE3AF1AE67B88D6 /* UMBarCodeScannerProviderInterface.h */, + 98B6D25FD03C786887B4E15B467F47A0 /* Pod */, + FFD6E9701E52A945D54C07F97B4A6281 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; 0E1B8ED746B18B2E5D6A533164AE6799 /* Support Files */ = { isa = PBXGroup; children = ( @@ -7197,13 +7210,34 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 0F54ADE456B34BAD98FA49FE855753CE /* Support Files */ = { + 0E3D9542E19AD8B526C826FECB85AC87 /* jsi */ = { + isa = PBXGroup; + children = ( + 2B0CBDD5C96DB01A8B299DD5CB81118B /* decorator.h */, + 37A404E425EF178A90BA382DF69B19D5 /* instrumentation.h */, + 192B4BFD2EAAE2631F266302B554D878 /* jsi.cpp */, + 6C3A7BC43DC4553F06DF196DC67B6DCC /* jsi.h */, + C6E44A6DBBEE242422FDDC66DCFE9D0E /* jsi-inl.h */, + 1748C2FC56FE6C226D70EBA6787B709D /* JSIDynamic.cpp */, + 199C65D9889D75B86AFAE1555C45BC08 /* JSIDynamic.h */, + 06539583B1454F6E72D06B88BF48A43B /* jsilib.h */, + 3D11E7418623E9EB6986653C4C041914 /* jsilib-posix.cpp */, + CBD6A5BFCF174B7789C908F39E1F9AC8 /* jsilib-windows.cpp */, + B366790D7E16F6CFFAF462791FF116AF /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + 0F0355BF639C34C87036C30995B1DA3F /* Support Files */ = { isa = PBXGroup; children = ( - 1C21AFD8A32D52BF98E6EDE9DFBFF698 /* UMFileSystemInterface.xcconfig */, + 86A8EE1D2F8B8AEB69DAEF21A92DBBD4 /* FBReactNativeSpec.xcconfig */, + C1A3733AE169C408EE09D85BA05C927C /* FBReactNativeSpec-dummy.m */, + 2E1E35FFAB84C039F68F4C89F3B6FB48 /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; 0F7F0A4E201CD7E6BE345B17B5C5D3FC /* RSKImageCropper */ = { @@ -7232,13 +7266,14 @@ path = RSKImageCropper; sourceTree = ""; }; - 10522CD002867620319EC8FB7F22867C /* Support Files */ = { + 0F978264AB6889E8491D3FD8DF7D010D /* instanceid */ = { isa = PBXGroup; children = ( - 4D2F8C828587E15FDC75ABF6E30BEFBF /* FBLazyVector.xcconfig */, + DAF45E2E311666069F1D1EA35B8F0383 /* RNFirebaseInstanceId.h */, + 8D6E36EBB6C6709E2B246C46650DE2CE /* RNFirebaseInstanceId.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; 107FC8606AE9656EAAC7AB584CD690A3 /* SDWebImageWebPCoder */ = { @@ -7255,14 +7290,53 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 12BD3D5C4F42E9627134A728E54057C1 /* perf */ = { + 11064591AAAC84CDB081D331031E4D11 /* React-RCTText */ = { isa = PBXGroup; children = ( - 5B765178245272DC9CE07ADB0EA27BC6 /* RNFirebasePerformance.h */, - 01303812247D9D0D9810E6E57C5F301C /* RNFirebasePerformance.m */, + D3083E3F6791A7F0E39E85AEBF5607DF /* RCTConvert+Text.m */, + 3DF1D955E99654E72474891EAA6A27A6 /* RCTTextAttributes.m */, + BAC5EA33C33854E1B953102AC93BFFA4 /* BaseText */, + 447C964AF57E8E91B4E31A00CA894272 /* Pod */, + 6ACD22E3AD5DCFDD22F9D359FCE72A03 /* RawText */, + 410FC1DA3121E620413C4DF16ED630F7 /* Support Files */, + FB2C1C38B29C10D08DFBAD75726B5FF7 /* Text */, + 1AF73C6C4BD582C4CE0CE18DAABD4FBA /* TextInput */, + 03C67D5B07A7962E08D3E21851E6B613 /* VirtualText */, ); - name = perf; - path = RNFirebase/perf; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 118608F192A92FF37C9E917A6CC06F58 /* react-native-video */ = { + isa = PBXGroup; + children = ( + F973F9409273BC835DF5BAD69B2916C3 /* Pod */, + 524D0249EA90DFA1DB9E9DB61EE1E3D0 /* Support Files */, + 7C39A8B9C14A97471E5E9DB5A6E470A6 /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + 1283047626403C5C513389AF32FC718C /* Support Files */ = { + isa = PBXGroup; + children = ( + 464ABCA0B3B2C3388680CD5C5E480E3A /* React-jsinspector.xcconfig */, + 214919E23612A309342CC7EED519DD14 /* React-jsinspector-dummy.m */, + D61F4F0461B0C7B5AD28CA775BF8F55F /* React-jsinspector-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + sourceTree = ""; + }; + 129B9631BDC5266932C196368D1635C7 /* crashlytics */ = { + isa = PBXGroup; + children = ( + D94E6FCBC75DDF51AEEE3283443DD321 /* RNFirebaseCrashlytics.h */, + 88B72F8FA21C764D08EDCD41F3225EC0 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; sourceTree = ""; }; 12E5CC1CEB5E512E489E102250A45E0D /* Folly */ = { @@ -7299,401 +7373,271 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 13D3CA8C87AF09207BD961420E45BB94 /* React-Core */ = { + 15887A623F47936D5CCEA307821AADD9 /* Pod */ = { isa = PBXGroup; children = ( - 9283AA81C7FC075B93F791C8435F43E8 /* CoreModulesHeaders */, - 63913E99E74C3627E744C47380151190 /* Default */, - 21D9BC94C4E5CC8895EE136171E66E17 /* DevSupport */, - C4192A30F42F65B9CA31A3F75145F44E /* Pod */, - DCBBBFF3AB0E3ABB142B2ACF86919C58 /* RCTActionSheetHeaders */, - 1438729ED448E56AA3BD8F263AE5191A /* RCTAnimationHeaders */, - B5D4E3F75BE2427EA10E8BE55D9580A4 /* RCTBlobHeaders */, - 42B2F6B3D1A08233C1F529CD294BDB0E /* RCTImageHeaders */, - 7E85A690CBF5A8D03A5B0BA99267E30C /* RCTLinkingHeaders */, - FA0297EEB79B7FB2ACAE4B986C54097B /* RCTNetworkHeaders */, - 20D23762FC18A406186B6ED34CD2273B /* RCTSettingsHeaders */, - 2FA01EE2A9FFFF88322C8E7B827D7434 /* RCTTextHeaders */, - 34AA7E7DFCEDB2F847E1B83E0142FD33 /* RCTVibrationHeaders */, - 7CEB8F78F0358D94A25A10F4DDC6E4AC /* RCTWebSocket */, - 8FA493F516B56A6594EA94406531FE68 /* Support Files */, + 4F447397074DCECC8E98E4DD96374907 /* React-RCTNetwork.podspec */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = Pod; sourceTree = ""; }; - 1438729ED448E56AA3BD8F263AE5191A /* RCTAnimationHeaders */ = { + 16191FB226A8A7FF3E895072D12B9D33 /* Pod */ = { isa = PBXGroup; children = ( - 2FA8CB4BDD699CE785BDE16E2769C788 /* RCTAnimationUtils.h */, - 5847F83F1511FFC78F368047BF91DC5A /* RCTNativeAnimatedModule.h */, - A72519FE47656E71F57E31A667CD0CD3 /* RCTNativeAnimatedNodesManager.h */, - 041244CD32AA6FEA4394D1BF7AA99DD9 /* Drivers */, - 42726BB54247B9D5DEA9CDFFCB9B0F05 /* Nodes */, - ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - 14414F6126906DD265BEC7B6F69A1309 /* Pod */ = { - isa = PBXGroup; - children = ( - 2C686FED49C66D956053438E03901BF2 /* LICENSE */, - 4962B45EFC57517CB6EB2E7CA9EA4AA7 /* README.md */, - 4F7452EF148AC27F46CC6BB5658C701E /* RNBootSplash.podspec */, + D2A03585CC5CFB169458018CFF85C784 /* LICENSE */, + 876EB62D00154FCF978243A8C0A7C1B8 /* react-native-orientation-locker.podspec */, + FD2305ECBADAFB3A58387E2885071B8C /* README.md */, ); name = Pod; sourceTree = ""; }; - 1522BCA9286814F6257FC12C8AE4B61B /* Support Files */ = { + 17C928C2BC3434F0AB914A53FD5F754E /* Support Files */ = { isa = PBXGroup; children = ( - C80AF392BE3B7212CEF7609AF13ECC9B /* EXHaptics.xcconfig */, - 99B22BD68C280DEE9CDFCD2BDC341471 /* EXHaptics-dummy.m */, - C953AE5CAE5694B78104A24C590EF5BC /* EXHaptics-prefix.pch */, + 7719415B0BAFE759FB2C8D5C5C9369FA /* React-RCTImage.xcconfig */, + F30F7DDD011B6AB4F208D4402C6F7C09 /* React-RCTImage-dummy.m */, + 23A510721DF32D432E5E58DF50E4D051 /* React-RCTImage-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 15D618B6453B2323863567A028E5A9CA /* instanceid */ = { + 19F8FB735B2A2F3F1E7B0FC1C6277004 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - B1BAA0AFCCC2CA89EACE6C4CC7898197 /* RNFirebaseInstanceId.h */, - A7B9EB005E0AE8BE95FE42D4A10E24F5 /* RNFirebaseInstanceId.m */, + 9200C65635874B7E2D59DA1BC43B433A /* FBReactNativeSpec.h */, + 299DB64B3EEC7C3C81D7A8C926308FA2 /* FBReactNativeSpec-generated.mm */, + 4340AD944D465EEF65BE1F7F55D40E1E /* Pod */, + 0F0355BF639C34C87036C30995B1DA3F /* Support Files */, ); - name = instanceid; - path = RNFirebase/instanceid; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; - 15F0C3F83416333AFE25111C6577CB6A /* Pod */ = { + 1A87703181B365F3C977C5A0EA6D5BC2 /* Pod */ = { isa = PBXGroup; children = ( - 3DB835EAA6C8EC47AC6C3B91C432E4EE /* UMPermissionsInterface.podspec */, + 3B3177B1C24FACB84DF469E7BAF8E7C9 /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 17D8595D86B3D970F7435F253F649925 /* Sentry */ = { + 1A9D27323BB8BB75F3E1611E4F19AF74 /* Pod */ = { isa = PBXGroup; children = ( - B0DE54EDBFFD4D96AE20FB13D7493569 /* BSG_KSCrashSentry.c */, - A13C786101B03C6ACF386C4F90C88369 /* BSG_KSCrashSentry.h */, - 74CEE254E63E0D6884439E68ED87F2B9 /* BSG_KSCrashSentry_CPPException.h */, - 7B58F66926DF66A28AF4701D64EAF9CC /* BSG_KSCrashSentry_CPPException.mm */, - 2D82E4F1D8385F9B526D89EB110CDD69 /* BSG_KSCrashSentry_MachException.c */, - BB97DE41686AF3B3368CA0E5645C0771 /* BSG_KSCrashSentry_MachException.h */, - DDB133D484C08862DD3FCB34F3F63256 /* BSG_KSCrashSentry_NSException.h */, - 728362B91413E35140F0F638EBBB82B5 /* BSG_KSCrashSentry_NSException.m */, - E599DF2E1EB50E35816E14B3D9E5272A /* BSG_KSCrashSentry_Private.h */, - 83670C60DD32A046C142C279AD1BF0B2 /* BSG_KSCrashSentry_Signal.c */, - 38BDC1CDE654DCAEE3758699D9DD7F54 /* BSG_KSCrashSentry_Signal.h */, - D0D2EE2B22CACFB5A687015D3082F7A6 /* BSG_KSCrashSentry_User.c */, - FA806BBBE9D663E1F3A1EBBF41033ADA /* BSG_KSCrashSentry_User.h */, + B03A5E063D8E76CFB696B3B052B612E5 /* UMConstantsInterface.podspec */, ); - name = Sentry; - path = Sentry; + name = Pod; sourceTree = ""; }; - 18A2AA6BB10D2099A91AF6A39CF5F5D0 /* Pod */ = { + 1AB1040418D4E3500B764E962A221A7C /* Profiler */ = { isa = PBXGroup; children = ( - 0581318D6A97C9CF89ACDF1103209FD3 /* UMCameraInterface.podspec */, + B384E5858546AB5932A7EC9E6B7E280A /* RCTFPSGraph.h */, + 85DF79FC11F6F499BD4B5E580BA98DC2 /* RCTFPSGraph.m */, + E2A875767FBBF801A7E11E158C2A3E0B /* RCTMacros.h */, + 5683BD59AEAF94F824EB1B702529737C /* RCTPerfMonitor.m */, + 17C0B954E85FC75B7EFBDDFCB4506E4D /* RCTProfile.h */, + 96A6980E874057DC910E795C21713E96 /* RCTProfile.m */, + 1E38F27EE3D1DDF70053DD09AB23EC0C /* RCTProfileTrampoline-arm.S */, + 1C854232F42E0E0381F21A2CDDF9FDB3 /* RCTProfileTrampoline-arm64.S */, + 2D0609493E013F3C877E594E8FA8BE27 /* RCTProfileTrampoline-i386.S */, + CFC75F75889338CAF49CA530BB3F311E /* RCTProfileTrampoline-x86_64.S */, ); - name = Pod; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - 18A6146BEA941DB014BF9BCCEECB5DE4 /* RNUserDefaults */ = { + 1AF73C6C4BD582C4CE0CE18DAABD4FBA /* TextInput */ = { isa = PBXGroup; children = ( - 3872A721310BFDB6930B7D5C1D296B44 /* RNUserDefaults.h */, - F9E73AFFBE8A0877899831DA71FE970F /* RNUserDefaults.m */, - 03B77F580726A8DB7C67FFA9F2A74656 /* Pod */, - D33972DF6DF8BF4E79F9853F2D79E404 /* Support Files */, + 09EE574DAD4B7AD8E9A5DADA2E42228D /* RCTBackedTextInputDelegateAdapter.m */, + BF06209450F32BBCA280359DC01AD407 /* RCTBaseTextInputShadowView.m */, + 174B066C4F232B044FD1B4BDDABE8252 /* RCTBaseTextInputView.m */, + 409404084C453D06E24ECEEE5E16CD11 /* RCTBaseTextInputViewManager.m */, + 59F57304B8E6F2DF74420AFC132DC25D /* RCTInputAccessoryShadowView.m */, + 1D0D589E14519AC73BEE3A160AADA88D /* RCTInputAccessoryView.m */, + E1582A14837CD50EEAC15B8F48CF8B99 /* RCTInputAccessoryViewContent.m */, + B1D78552BC13412851EEBDA20713319D /* RCTInputAccessoryViewManager.m */, + 6FE80290C34F979904EF564E10AA0F34 /* RCTTextSelection.m */, + FA12B7132F7F975661623918126D8AC3 /* Multiline */, + 89691D7B11A794F119BF8340CCCE163E /* Singleline */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = TextInput; + path = TextInput; sourceTree = ""; }; - 18C11420732EDE9C9810029CC37CFEF6 /* RNImageCropPicker */ = { + 1D9095A3B30C3C007FE4DFD3DD75F8D5 /* Support Files */ = { isa = PBXGroup; children = ( - 255194BF156820C940AAD066457EC31F /* Compression.h */, - 96A056563F03FCBB1D361D6A1ED8A4E6 /* Compression.m */, - 168D8C9A5B4B6F4BDA3B81378B113350 /* ImageCropPicker.h */, - 87808C98E5B3B22FD51665EE19826AE7 /* ImageCropPicker.m */, - 5D9C66031E52E764B6BCF7FDE9CE3D55 /* UIImage+Resize.h */, - 5A7198670B947621667C80A667B332EF /* UIImage+Resize.m */, - EF627D7FFCA7C05878DA5BCF752AE974 /* Pod */, - 200E7127B7BF00F86F7AA6D74AB5480E /* Support Files */, + C75E1C5FEF410A767A34D685A2AB9BDE /* React-Core.xcconfig */, + 3711D94159E3D7F15972750F9C35469D /* React-Core-dummy.m */, + 066477951B48CE2421C5CBF1DB14E431 /* React-Core-prefix.pch */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - 18DCCD421EF1AA81BCA2CAB548857FAF /* Support Files */ = { + 1F15BEE4E27B44221A03689700B50682 /* Support Files */ = { isa = PBXGroup; children = ( - CDB5468A37ED6CD36055E9C4F71ED5BE /* ReactNativeART.xcconfig */, - 952192AAB62B39C4EE50DBD20E01392E /* ReactNativeART-dummy.m */, - EA43223A2D73A1598B0A360653AD2A66 /* ReactNativeART-prefix.pch */, + 4AD67A70327FDCCC913898360E063F69 /* React-jsi.xcconfig */, + 6DE0B56F032CC900BA568EE3A5F53A9E /* React-jsi-dummy.m */, + ECEB113579B22F8F88902146D58BD616 /* React-jsi-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 19CB484620D138FA4A8CBA317ECCA3C8 /* Pod */ = { + 1F1D2421669C7288D6A492641DB97406 /* Text */ = { isa = PBXGroup; children = ( - 230639622F3EABB93F2AE5966BAAE996 /* LICENSE */, - 158B735A90C027CEDA34FBCAF69BA419 /* README.md */, - 0D335854DE756DEA31C32D0B9E5A77BE /* RNReanimated.podspec */, + DCD0E6529E9841D6C85997AB91B4B18D /* NSTextStorage+FontScaling.h */, + 444FD0BF1AB213D078F9B010C660DF17 /* RCTTextShadowView.h */, + 3278C46B12DB44947D0BE2C1C4D94AAB /* RCTTextView.h */, + FA1954F4F2B6C752A44608FDD6E9942E /* RCTTextViewManager.h */, ); - name = Pod; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; - 19FE51453860B7855B0BBC0FD78C0D1B /* Drivers */ = { + 202304C596A298E5C9ADCE2B152D1206 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 7FCD1A9EC34F755EB14ADD4CFB193E2D /* RCTDecayAnimation.m */, - E09A60C2A51157612EC0773C1BB677AB /* RCTEventAnimation.m */, - 732709D75AB31D0A7F0FA6B1A2891C02 /* RCTFrameAnimation.m */, - 6E0A0022D5A37510935F30986F180472 /* RCTSpringAnimation.m */, + 268BBD0CB874980641E402FA75B54932 /* RCTCustomInputController.h */, + F7365B28A2A1507AC15C7C3C948E0307 /* RCTCustomInputController.m */, + 0A718148264A5FCE75ACD866F4B40602 /* RCTCustomKeyboardViewController.h */, + 3B0E798A56580A2D2AE9984C2CD43074 /* RCTCustomKeyboardViewController.m */, ); - name = Drivers; - path = Drivers; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - 1B0981C06C0E326533BCE7F4162DFB72 /* Support Files */ = { + 20646E28623429D3A257F4EAC59A72E8 /* Reporting */ = { isa = PBXGroup; children = ( - DA683C170779FFDEE242620DABFEDC8E /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 1B2855615AAE06B353B3120E21B20C5F /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - 56F1554D31C9D718533026EA3AE52938 /* CxxModule.h */, - 1DB3F7C67F08BF46BE529A99198B47E9 /* CxxNativeModule.cpp */, - 83C9E55BF533A45C735F71912882815E /* CxxNativeModule.h */, - 4235CAB374C9F97803E0BDD0C514BEB5 /* Instance.cpp */, - C1D4BAC998749162828C147C54A37427 /* Instance.h */, - 78BCF22F29081BBA22AF74792AEECAE4 /* JsArgumentHelpers.h */, - 372C77BF2C046CC5ADFEB3769B713E80 /* JsArgumentHelpers-inl.h */, - A5EF8A91F5485827872771CED65D0208 /* JSBigString.cpp */, - C8C5F970A9FD89FA8038F40AE9099CE0 /* JSBigString.h */, - E2B5BE7D91C42B92363CB1487D39E0E0 /* JSBundleType.cpp */, - 031C605D695A4BB6BA35BE8A3DFEA8C2 /* JSBundleType.h */, - 579B692837FF1A6468078CEA7859DEDC /* JSDeltaBundleClient.cpp */, - D8A560EB40FC009217DC4DA3D4AB3641 /* JSDeltaBundleClient.h */, - 0EEC72A4F5EB0A672AD4A657C3D64FC6 /* JSExecutor.cpp */, - BF7DE711D55D9DD439E62D3230704C8D /* JSExecutor.h */, - 75AA6DD00A2478FAC35C07DD73FDCC61 /* JSIndexedRAMBundle.cpp */, - BD561EF797318A51AE8ACF76ECBC4281 /* JSIndexedRAMBundle.h */, - 9DD23ADE3504A0B6D4C7AAA9EC6931B1 /* JSModulesUnbundle.h */, - B8E776405B18BFC3A0921A01FCEF5D97 /* MessageQueueThread.h */, - DBBAD328E62FEDDE290D0F9081BF16A0 /* MethodCall.cpp */, - 09A8C6CDE1AE2B0E817C47F53467B416 /* MethodCall.h */, - E1FB07B0CC8D15B8EABA88D0FBC9FA7F /* ModuleRegistry.cpp */, - 1264F013A1BF0B5AC5A2C3E4D5E61DEE /* ModuleRegistry.h */, - 24AF778FA97EAF72E666CEB2A88CF0D7 /* NativeModule.h */, - 2E808A86D11B52E5C76DB57D79DE4CDE /* NativeToJsBridge.cpp */, - 0FEAFC2D29194943D6A039D11D4011FE /* NativeToJsBridge.h */, - A3B93231E0AE74F58DC1C02AC948CDC5 /* RAMBundleRegistry.cpp */, - 0D8644D8314E793C80A1064FB00B2CA5 /* RAMBundleRegistry.h */, - D8C38461C3643D38F75191F67094D39B /* ReactMarker.cpp */, - FA8FF8C401A4BB41C7A86986BE0A3A53 /* ReactMarker.h */, - 3CC3B68DAE9A3E01C769D85966493AFE /* RecoverableError.h */, - F3BA367985062220F1382DE1CCB75ECB /* SharedProxyCxxModule.h */, - 2A8D8B96BA47FC802E04F8D64C8BDC6B /* SystraceSection.h */, - FF4C1C2D93C03C83FB242DEBF3431750 /* Pod */, - FE893BDAB7DB4AE09C10682009AEA1B4 /* Support Files */, + 68DF5AE3F8418E1F71234224EA64EA03 /* Filters */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = Reporting; + path = Reporting; sourceTree = ""; }; - 1BE631D3BB1184364EDAA287C9F349F9 /* Pod */ = { + 211D05E0527DF10B1C4716BC703A0035 /* Pod */ = { isa = PBXGroup; children = ( - 65FF02A5D3FE9160258A87326D06CEF5 /* React-RCTActionSheet.podspec */, + BA67F8B24E16E5E8DC7A7EBF64631AB9 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - 1E8AF4A0F2283D300E4240B5DEC4EF15 /* Support Files */ = { + 21BA86A999AEE7558DFCD0866E7AE415 /* TextInput */ = { isa = PBXGroup; children = ( - 4FA7BB063A2FEEF9F7383458D3622559 /* React-CoreModules.xcconfig */, - 8DB04111CFEA49C3BA0FAF650F134602 /* React-CoreModules-dummy.m */, - E8E342BF5DBC80363E2D21E69EEAD8D1 /* React-CoreModules-prefix.pch */, + 477C84944CA93ECD923D49B6D5DE0612 /* RCTBackedTextInputDelegate.h */, + 5AE4E6D37C942F20AE082A5C3E8EE42F /* RCTBackedTextInputDelegateAdapter.h */, + 6E398C60B85FD0481103C79C6EAE25AB /* RCTBackedTextInputViewProtocol.h */, + 6AB9EF3B0D94BB66C0A7D8CDA41D8E19 /* RCTBaseTextInputShadowView.h */, + D912E9C8CDC30A2DC90C787F99DA9738 /* RCTBaseTextInputView.h */, + E97DB02C97D26B7C40BCF28A04258E58 /* RCTBaseTextInputViewManager.h */, + 5210BEE1B83C6FAA39C29DD8643A61F6 /* RCTInputAccessoryShadowView.h */, + 49530A68CBFCAFB1CEFCDAA9F42B50D8 /* RCTInputAccessoryView.h */, + 287650BECBB76C9B1FF6B790694E0A37 /* RCTInputAccessoryViewContent.h */, + AC7A405C6401DDB6C9AF3DB85F834C14 /* RCTInputAccessoryViewManager.h */, + B316B81E4609D922262AAAB60412C3D1 /* RCTTextSelection.h */, + 4F490A99B0D7E8C0D51BACA682B7E4BE /* Multiline */, + CDB148105AC3BFFC6810D5263F4F7A8B /* Singleline */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - 1FB878427BDDA672E27ED1F7FF47BC32 /* Pod */ = { + 21E1DD8F6DAC381FB67443355ED63826 /* Pod */ = { isa = PBXGroup; children = ( - 1911B46424E9C6A3CF5DCB67D1BDFBB6 /* UMFileSystemInterface.podspec */, + 42AC7169A5DDA2C524AF202DC77E1B59 /* BugsnagReactNative.podspec */, + AFE0D33358500033F77E73E3E82DB8B8 /* LICENSE.txt */, + 92C99F31D68C55CC93087FAFB6844704 /* README.md */, ); name = Pod; sourceTree = ""; }; - 200E7127B7BF00F86F7AA6D74AB5480E /* Support Files */ = { + 21FFF566E3710B337AFFBCB0E764583D /* Support Files */ = { isa = PBXGroup; children = ( - 6B60C73AC99DD05CEA3593C13D5CA201 /* RNImageCropPicker.xcconfig */, - 63E253F25E6F03406A253B8F826FBBA6 /* RNImageCropPicker-dummy.m */, - 7860CB93BDFE379C40415BC240274635 /* RNImageCropPicker-prefix.pch */, + FF51B230FBFB8050E8A355161CFDD94E /* EXPermissions.xcconfig */, + BBA25B8D8C16C2EE29DB8BA456371398 /* EXPermissions-dummy.m */, + C9C92D2550165FDF90016110C2484856 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 20241934D63E97EB67D9C7A5B0A4D58E /* Support Files */ = { + 238E3B7A65AEB87A990C8432231C959C /* Support Files */ = { isa = PBXGroup; children = ( - D372A6256A180734764DF20625898BFE /* EXAppLoaderProvider.xcconfig */, - 211A4ADF1B4716CB169BFD5927015344 /* EXAppLoaderProvider-dummy.m */, - DC2D1705177B2A20B71D3448AE06EA66 /* EXAppLoaderProvider-prefix.pch */, + 8DDF27115B4335EEEE7D7F690F0929AD /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; - sourceTree = ""; - }; - 20D23762FC18A406186B6ED34CD2273B /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - DE495CD767A8541DF1184138EE27C08E /* RCTSettingsManager.h */, - ); - name = RCTSettingsHeaders; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - 21C71875E0D9DE84AD2D958DF97EF0A7 /* Support Files */ = { + 24D5554B760ACD07C9B2186588B9A66B /* Support Files */ = { isa = PBXGroup; children = ( - 7EF8719BF2F9E361B490C32CAB4032C6 /* react-native-video.xcconfig */, - 8C466854A0979F3A9C0FA018D4412FA6 /* react-native-video-dummy.m */, - 5D846DBDB6DEAE5491E4B59C7ECFE288 /* react-native-video-prefix.pch */, + 8EE4BE67037C8C3B3579ECDCD9B7C2A9 /* React-jsiexecutor.xcconfig */, + 5B3325F6C4A1A04B8F1C8AB907EEC24E /* React-jsiexecutor-dummy.m */, + 74B463CFBED62B5B2B498765818BBE90 /* React-jsiexecutor-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; - sourceTree = ""; - }; - 21D9BC94C4E5CC8895EE136171E66E17 /* DevSupport */ = { - isa = PBXGroup; - children = ( - C67AE4ABB8F0B5A64023C9470CD5DA3D /* DevSupport */, - 3EFCDA03378D26E6F64E6248662E46BA /* Inspector */, - ); - name = DevSupport; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 22345344800C9B0EEB5B75E7DAE83345 /* Pod */ = { + 24D5BA2EBE22CDB1EE0C90146988075B /* Pod */ = { isa = PBXGroup; children = ( - 8C5F3C9F1713972157126264F1A9C581 /* LICENSE.md */, - E383F515439768383BDCE78CF38F7DA2 /* react-native-document-picker.podspec */, - 50AF5FC5A7519388E52D96767E85292D /* README.md */, + 2AD54B237B77BB56F5C7DA1CB4627A09 /* LICENSE */, + 564CA59E047E052071A94E3B9E1EE01F /* README.md */, + 09A2AC691820BA94DD0F244DB6D6E786 /* RNBootSplash.podspec */, ); name = Pod; sourceTree = ""; }; - 22AF53CEFF6B80059B6515E882631D28 /* React */ = { + 27578AAA8B10C79C9233311F24A0CD40 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 97FED8FB21423CF2BF1B8009390D59D4 /* Pod */, - 8FEA1216F1154F3DE1AB10B22229ECEF /* Support Files */, + F1B007A4F0264B00BE2EBDB3E43EF100 /* Compression.h */, + 794BA5643428B87EAAA55E7C466C178E /* Compression.m */, + 5EE8C79DA443432EA357DFEEB6C05B4E /* ImageCropPicker.h */, + 89E859BF7FD662F7D787D8549B001AF7 /* ImageCropPicker.m */, + AC50FAD51606C7A7BDC77BEFDC97ACF6 /* UIImage+Resize.h */, + C550F27B5025D7535A042C37C8B851F3 /* UIImage+Resize.m */, + 0949BF5692E90AEA37AF6880D9A1D131 /* Pod */, + D38970B99893F0F5EFA1B3937ACFEDB8 /* Support Files */, ); - name = React; - path = "../../node_modules/react-native"; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; - 230ADDCCA4789FC0F3CA7D52F2A2C16D /* Support Files */ = { + 27598BEE044A767AEB2CB0E389AF8C7E /* Support Files */ = { isa = PBXGroup; children = ( - F575C8650BBDED7E79AA166FA59769C2 /* RCTTypeSafety.xcconfig */, - 9755B1EADF0D52F4B624DC293F075894 /* RCTTypeSafety-dummy.m */, - 43681818F909EADEC3A28A35BCCE0286 /* RCTTypeSafety-prefix.pch */, + CA70C3AE3EBEFFB8882CD01A76450570 /* React-RCTVibration.xcconfig */, + 1870B42FA1BF7FABF1ADF818582505D1 /* React-RCTVibration-dummy.m */, + 934EAEB70F86444DAC2278D8DD5B28E4 /* React-RCTVibration-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - 2362E34C1FA5F92491DFE823A888668E /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - B8B95204C043BBE4008D1B887928D81A /* UMBarCodeScannerInterface.h */, - 2B879886F9B3217460F150A1B43B2B91 /* UMBarCodeScannerProviderInterface.h */, - 54154AE7257EDB26FFAA01AC73384F5C /* Pod */, - 1B0981C06C0E326533BCE7F4162DFB72 /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 23CB0662A92C37144694C1C75B0EB016 /* Support Files */ = { + 27CA2E075B22223434B0DBA7E6A5C08B /* Support Files */ = { isa = PBXGroup; children = ( - F89338F87AA150D3B5F4A46980653AA7 /* UMCameraInterface.xcconfig */, + D3F4AF856E6308B210B2E961297B1E8F /* RNVectorIcons.xcconfig */, + 46458FC5BA171238711C4452D9FFE1BC /* RNVectorIcons-dummy.m */, + B381E2FEF7F3ADCD9C7A47EF386EEF75 /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - 24B9E037D7B94F66FEEE2CACF60B02F4 /* RNAudio */ = { - isa = PBXGroup; - children = ( - 4E1BECC500208618E8E9A8369212DC51 /* AudioRecorderManager.h */, - 7B5E5B409D57DF790D19E9EE422A74F5 /* AudioRecorderManager.m */, - 6740EB933E25F1C27586C5D630384494 /* Pod */, - 56EE96A5F41B7C8109D67BA851E70E5D /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; - sourceTree = ""; - }; - 25EBE54899DCE14926EEAC92302D706F /* Text */ = { - isa = PBXGroup; - children = ( - 53A76528D15834F35449B62084F8DFC0 /* NSTextStorage+FontScaling.h */, - C5D2B33AA450968108C00CA328D8929D /* RCTTextShadowView.h */, - 85D21287CC8CD2E34D27C3CC3F8955CE /* RCTTextView.h */, - 0B3E21EA3C6753D184118FC7057C78A4 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 26F4418A35595CDF5B5A0C05B7719E08 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - 9CA7DD40CA1A789B4BAB3AEA157CA9C4 /* ReactNativeShareExtension.h */, - 9DAEC06DC768C4AB2569BCE557D67E62 /* ReactNativeShareExtension.m */, - 592D02EC091DB39DF140A1E1F862D2CF /* Pod */, - 76B192400F9328BFD386267FF52DCA65 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - 27A82B35EC88F549D0047C18E4778D7B /* Pod */ = { - isa = PBXGroup; - children = ( - B9B508F8F16240D5B9E6E07881608978 /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 28C7C45D9A9D7CE4FA6AEA0640A72E24 /* Pod */ = { - isa = PBXGroup; - children = ( - C67EFC9720F80DAB82D02589142A37A7 /* FBLazyVector.podspec */, - ); - name = Pod; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; 2917A1F1577820FC43DB67455A33C871 /* FirebaseAnalytics */ = { @@ -7706,375 +7650,429 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 293BCC40871822479E21D86F6A11468F /* Pod */ = { - isa = PBXGroup; - children = ( - C733333F855300F2B0202DF598574DE8 /* RCTRequired.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2B7006B9010E0B1F8184DB1D977E6C67 /* Pod */ = { + 29894B1C683AB87264702A8084C978C3 /* Pod */ = { isa = PBXGroup; children = ( - A279624FBB906DD4630DE5BD855108DF /* LICENSE */, - 2FB12052BDB8F34EC69FFDB7DA72D987 /* react-native-keyboard-input.podspec */, - 985910BAB88EA3C29867A164EE11D3D5 /* README.md */, + 5E8DFF222B5CFFA8BEB02227180255E9 /* EXAppLoaderProvider.podspec */, ); name = Pod; sourceTree = ""; }; - 2B9F9C707C1E75C13C1B01C1C0C1F6D9 /* Support Files */ = { + 2A2C4F272DF334CCDA5D6BC991FFEF81 /* Support Files */ = { isa = PBXGroup; children = ( - E33360EBA3D9E551A9A45C8345B497EB /* RNRootView.xcconfig */, - F5F47ABC967EF8DDB8E104E9F74AE03C /* RNRootView-dummy.m */, - A02BFB3CE574A14C32C64B287F865597 /* RNRootView-prefix.pch */, + 8B5ADC31FD186B9A7FF39AB89C8645E1 /* UMPermissionsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - 2BA9BEA4880B8A41D10D4EB57B7487EC /* React-RCTAnimation */ = { + 2A9B334F7891442C5FC8795C70851FE8 /* Transitioning */ = { isa = PBXGroup; children = ( - E20142C80FA5EDC6CF2E7B584F05970A /* RCTAnimationUtils.m */, - 69A09FD2FDDFF6EDF3720803EDE86CAF /* RCTNativeAnimatedModule.m */, - 735DD463B733D6480E74D6EB513438FA /* RCTNativeAnimatedNodesManager.m */, - 19FE51453860B7855B0BBC0FD78C0D1B /* Drivers */, - F45EDF45B92DF80B0BC914E6BD1413BA /* Nodes */, - 59E09E876A114C6809B61408850ABBF3 /* Pod */, - FFC5D527C7121A0220AFDEE7E005EEB3 /* Support Files */, + 1BAC6664866FB387533C5CDFDDB9F619 /* RCTConvert+REATransition.h */, + B71804FD00A9A9347B390533972DE489 /* RCTConvert+REATransition.m */, + 96B8735479A382DAE21A14676BF542A6 /* REAAllTransitions.h */, + C807C7EA8D2619B6AFCB7F3C9AA5B4AD /* REAAllTransitions.m */, + B73D457C80055C29A2EEBCF847D13208 /* REATransition.h */, + 9974891C36F24ED4765E0B1AB9DD4F55 /* REATransition.m */, + 4B8DE89B4C8E0A59F30BD89DC6F21CD9 /* REATransitionAnimation.h */, + 816FB35DC5903426E821F1995F565692 /* REATransitionAnimation.m */, + 5EEA3E81725D3EF276A1B3A6B2FF4EF9 /* REATransitionManager.h */, + A00827AE4E0526B2442C2B9ADA956E4F /* REATransitionManager.m */, + 184580D07CC78549E4FF02C303DCCE37 /* REATransitionValues.h */, + B48A2EA23D4C0A5B39EA740A1B4C0B0C /* REATransitionValues.m */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - 2DBD5F2454E3A2A930640F71C1D2C898 /* Pod */ = { + 2B6607975CF25B79D39C70A068AC3C45 /* auth */ = { isa = PBXGroup; children = ( - A67C2DC89DF2F492578A935C98A0B24D /* UMFaceDetectorInterface.podspec */, + 8985DAE76335A3D2EE53D18D85CD06DA /* RNFirebaseAuth.h */, + F7E94DB59A7A62971D17CD5DE52D1FEA /* RNFirebaseAuth.m */, ); - name = Pod; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; - 2E3FE00FF7300335DB53EFC24BA411AC /* react-native-keyboard-tracking-view */ = { + 2B86D76D50C98BAD775CE65BC94BA3A0 /* Nodes */ = { isa = PBXGroup; children = ( - 7EBC3E2D6ECBBDE8F45F99120D7F43AA /* KeyboardTrackingViewManager.h */, - 4AD9066122F1EA3F325DD79F5284EFE7 /* KeyboardTrackingViewManager.m */, - 13255737D68BEF5CA5207F73B9A6C42C /* ObservingInputAccessoryView.h */, - 01D3BD7C2D742F77CAC96646E5979822 /* ObservingInputAccessoryView.m */, - 2C0F48AB87D685794F85A367F5BDBFAD /* UIResponder+FirstResponder.h */, - 5312D9A2C56B36BF96D068A82D3D4030 /* UIResponder+FirstResponder.m */, - D3F111FCD34FDB09EB386FF5B4E9CF36 /* Pod */, - 06BF548F3C839B450095F9C6EB109758 /* Support Files */, + 20261AF839A266429005BC132E5BD885 /* RCTAdditionAnimatedNode.h */, + 76C121310544F2A6D7A670B54988D90D /* RCTAnimatedNode.h */, + 6388FD3376A8816F4CB9B795094C3949 /* RCTDiffClampAnimatedNode.h */, + 2FD7AD9E9FA9A97DD7A667546ACD3376 /* RCTDivisionAnimatedNode.h */, + 2E219AE5CBEEF48D96AE1DC1EE0373CB /* RCTInterpolationAnimatedNode.h */, + 8E3ABE8DDE076301985B03E9838E6E92 /* RCTModuloAnimatedNode.h */, + 8FA886917FBAD8DFD01E5AC78D026B6F /* RCTMultiplicationAnimatedNode.h */, + 95D28D86D978E3AD6F7BB3C1D1882D04 /* RCTPropsAnimatedNode.h */, + 0A7740F5C04592BE2D469E4D7225DB5D /* RCTStyleAnimatedNode.h */, + 02A7A9BF12845DD2BB38B8AC584F82D0 /* RCTSubtractionAnimatedNode.h */, + AD28747ADBEDA87050DFAAA974028548 /* RCTTrackingAnimatedNode.h */, + 25911C20351B3EFCDBD5A6B009CF4574 /* RCTTransformAnimatedNode.h */, + E87031255BDDC756EF8EA2445A305577 /* RCTValueAnimatedNode.h */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 2EDA720D86857C66FDDE61029A5F98D8 /* Filters */ = { + 2D20F20D5DED1BE4DAA9F2CF58148BD0 /* Drivers */ = { isa = PBXGroup; children = ( - 26DB8D3AA474C3D57BE83F4619F05A1D /* BSG_KSCrashReportFilter.h */, - 01112CDA9C6B4D17A9BFBD45BBF9D498 /* BSG_KSCrashReportFilterCompletion.h */, + 45EFD1F68CE757CFF269AEA583107427 /* RCTDecayAnimation.m */, + 866B8BEC747C62D75D22399E190F5E3F /* RCTEventAnimation.m */, + FED985EFD2C3BD5B54AC82F3008B095B /* RCTFrameAnimation.m */, + AF839FCA4112FDEBE1C800CE2B88ED24 /* RCTSpringAnimation.m */, ); - name = Filters; - path = Filters; + name = Drivers; + path = Drivers; sourceTree = ""; }; - 2FA01EE2A9FFFF88322C8E7B827D7434 /* RCTTextHeaders */ = { + 2D5EFDAAD51FF4E808F66007D18F30B0 /* React-CoreModules */ = { isa = PBXGroup; children = ( - B9374B97BD2DB962C1DA9C22EAEF6BE3 /* RCTConvert+Text.h */, - DD656B4076DFABD877855D62FE4B1AA6 /* RCTTextAttributes.h */, - 5F548CD0F6078F1CF7512DB8977556CA /* RCTTextTransform.h */, - 41CE247531EE763CE59724A5374F1E3D /* BaseText */, - 6FBB608DAEC56FD6D16D0713CA4B38AA /* RawText */, - 25EBE54899DCE14926EEAC92302D706F /* Text */, - 048BE65AF093A50ED571ECAA1161F0AE /* TextInput */, - AE158DFA32AEA6568BE598DB74DECA5D /* VirtualText */, + EE98AE4383C426AEE9E1E31E0EF5F37B /* CoreModulesPlugins.mm */, + A81226598200B10C2B987E3266FCF849 /* RCTExceptionsManager.mm */, + 3AF4F25F2C55008268BC35CA2A9EB7EB /* RCTImageEditingManager.m */, + 8012D5582D3EC343EBE5BAD309CFA435 /* RCTImageLoader.mm */, + 4079355BB2F2437C8076FEFA38B1E6F4 /* RCTImageStoreManager.m */, + 793A542DDEF956C411C64BDB67CA815C /* RCTPlatform.mm */, + E60E2A3155025C2CA6A1D749A142BDB3 /* Pod */, + B49D64535E03ADD2A23158ED412F4CE9 /* Support Files */, ); - name = RCTTextHeaders; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; - 3129A0B9FCC8C5FB3CE46EC916967793 /* Pod */ = { - isa = PBXGroup; - children = ( - 54899AC40AFD23991C74EE0B851387F1 /* EXWebBrowser.podspec */, + 2E15E9FA4264BEC2E31242227599D9D7 /* Recording */ = { + isa = PBXGroup; + children = ( + 9ADD2B47DE62FE3AAED44D1169CAE31B /* BSG_KSCrash.h */, + 9D8CB53507FD2CF7B347980078D0B708 /* BSG_KSCrash.m */, + 644CDD5C7FECD32BE70294468CC33FCF /* BSG_KSCrashAdvanced.h */, + D088FA5527C3FF14246F7A5441833B4D /* BSG_KSCrashC.c */, + 32AE94794BB5B1659A6C44CC5F115E76 /* BSG_KSCrashC.h */, + 75F6D18956224424C34C25FFACF64AF9 /* BSG_KSCrashContext.h */, + 0BC0E242FDDCF508E8D27DAE5915C5D4 /* BSG_KSCrashDoctor.h */, + 02A556EAFA7A6B7CE43E4E2D6F94FEAC /* BSG_KSCrashDoctor.m */, + 54E610B481CD90275D742AA79C56D73B /* BSG_KSCrashIdentifier.h */, + 33D0B8B27FCF7C0CE3392525865DD2FD /* BSG_KSCrashIdentifier.m */, + C8FF3BEABB9BC47DAA40C934524C8E83 /* BSG_KSCrashReport.c */, + 08E89CB7B556BE3C15C57410C8D145EB /* BSG_KSCrashReport.h */, + 95FE2F533E3AF3E92FFF237C2DDED742 /* BSG_KSCrashReportFields.h */, + 37677EE64429D5E6813BBD62C03DC730 /* BSG_KSCrashReportStore.h */, + F84FC51799C8CDB5DFF75A4024913E72 /* BSG_KSCrashReportStore.m */, + B38FD508EEC7159D2988089AA995E20F /* BSG_KSCrashReportVersion.h */, + D233ABF5A66CC51C775AB4A1A43EBCC4 /* BSG_KSCrashState.h */, + B089DE8EA00A8D592AB7BF0167A0306B /* BSG_KSCrashState.m */, + 05B2A89D59FB73FB8BB0713988F4939C /* BSG_KSCrashType.c */, + CDEA2B647346AEF3BBD99512E658BE4F /* BSG_KSCrashType.h */, + 7A0047149EDD3362290D3B27E1D65AE7 /* BSG_KSSystemCapabilities.h */, + 477A5D0B7C294048C9688BF7F1498FCA /* BSG_KSSystemInfo.h */, + 4AC60DEE78FC30648336F862D99C49E2 /* BSG_KSSystemInfo.m */, + 96DAF4B3734906BE42CC60B2F924C3F0 /* BSG_KSSystemInfoC.h */, + 6C25388A9E307A984AFCD93A7242F091 /* Sentry */, + A34410724E041B6BA1007B3D5002EDB7 /* Tools */, ); - name = Pod; + name = Recording; + path = Recording; sourceTree = ""; }; - 3223DCC050EBD1169758D0DC94035A01 /* Support Files */ = { + 2E83E0B2E369E81E0020405ED3254BCA /* Support Files */ = { isa = PBXGroup; children = ( - C098929F9618F49264B1CD79900CA2E0 /* EXWebBrowser.xcconfig */, - 89895D63AFEC6DFA892193DA1A398F55 /* EXWebBrowser-dummy.m */, - FB90C775E1933F73D3E96AD3D5A9B440 /* EXWebBrowser-prefix.pch */, + 9E908FB25C09AAC8998A28B761484348 /* RNUserDefaults.xcconfig */, + 5466BA0485D3F92AE19B1E23AC599462 /* RNUserDefaults-dummy.m */, + 64F4D1B7D9CA627AA7A04C4BBFC927CE /* RNUserDefaults-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; - 322ED2BB8A0A36DB4DC848F87C46EB07 /* FBLazyVector */ = { + 2E9B70E8E32BA7510925889DE71E0063 /* Pod */ = { isa = PBXGroup; children = ( - E896441CBCAFB15634A77E70C3DD7DAE /* FBLazyIterator.h */, - 96BBFE4755B346B5CE6A0FB510D9F8A2 /* FBLazyVector.h */, - 28C7C45D9A9D7CE4FA6AEA0640A72E24 /* Pod */, - 10522CD002867620319EC8FB7F22867C /* Support Files */, + 3C9F8E05A41303B35D5A1FFA1047F9A0 /* EXPermissions.podspec */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = Pod; sourceTree = ""; }; - 3343CCF050052BD5160E1A99BBD4F1DC /* event */ = { + 2ECCFBBD048FCDEA8C3D1DA50C32BDBD /* RNScreens */ = { isa = PBXGroup; children = ( - 2282E5754D9ACC42C39AEF6821CE3571 /* event.cpp */, - 57C9A6DC94D054D443301AED6FDBF926 /* event.h */, + 2DBD62A1D8D5E6211EF692A42BF7684D /* RNSScreen.h */, + C3B8D99375736CBB89C2C356A7C8B338 /* RNSScreen.m */, + C1472B83E4014905BE3F518B816241F3 /* RNSScreenContainer.h */, + CA4EFE95627DE5E43FDD76604BE5519D /* RNSScreenContainer.m */, + 518A70B15B766E822D84528A62412F51 /* RNSScreenStack.h */, + DC27773B4EBB452167FB1A1926E52CB2 /* RNSScreenStack.m */, + 8097639CAAEAC14DB33641BCA5F76A09 /* RNSScreenStackHeaderConfig.h */, + 3D324E3D8C10F168C798634233A3E714 /* RNSScreenStackHeaderConfig.m */, + 8FA9335986D47217FD23292D8A919E87 /* Pod */, + A4C725DE0FB7E5759947BA3F79169D7B /* Support Files */, ); - name = event; - path = yoga/event; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - 34AA7E7DFCEDB2F847E1B83E0142FD33 /* RCTVibrationHeaders */ = { + 2EF9227F68F5B99AB22324E81307A34A /* Services */ = { isa = PBXGroup; children = ( - D55086610BA33B0E019E42B6AF131FCC /* RCTVibration.h */, + C88898EF298C6BF7493C15E6C14FDFC9 /* UMReactFontManager.h */, + 45373185955BA213D5F2900EB9902441 /* UMReactFontManager.m */, + 16F8FA0FC12A3715FA4378F662947DC2 /* UMReactLogHandler.h */, + DAC67E8E06887F48D79DF2EC45EB80D7 /* UMReactLogHandler.m */, + DD843FEED6C2152F9DD2C2890FCBC526 /* UMReactNativeAdapter.h */, + 9CDC59695B73073AAEF7E379442D68FF /* UMReactNativeAdapter.m */, + 4EF5694B8E66F0D0E0DC6F798081974D /* UMReactNativeEventEmitter.h */, + CCDDCB9A52D9A03994693CD0D6DA6DD7 /* UMReactNativeEventEmitter.m */, ); - name = RCTVibrationHeaders; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - 360E50A9A5422B63D0EE70B1EEE392A5 /* Support Files */ = { + 318F88C03A8873EBE76986FA09EA9C09 /* Support Files */ = { isa = PBXGroup; children = ( - B608E8E88ED36982C76F60D52EC50FCD /* rn-fetch-blob.xcconfig */, - 1460889D90DBA75997B55F518648FB7D /* rn-fetch-blob-dummy.m */, - 4CEE25B8EC65C16504FEF74BD5E0EF71 /* rn-fetch-blob-prefix.pch */, + 3D4E1404C1D332BB3FA51EC98F4F1E84 /* BugsnagReactNative.xcconfig */, + EC9619B8F1E2C194DE511CD8A7AC973E /* BugsnagReactNative-dummy.m */, + E6E83393AFE8646C82741AA740C22F85 /* BugsnagReactNative-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 36700344FEBBB9D84A1947D60FF45E1A /* NSData+zlib */ = { + 333321970107809D96BA6B514F52FEE9 /* Pod */ = { isa = PBXGroup; children = ( - 682F6E4792E01F83E62FDAE84681DDD5 /* GULNSData+zlib.h */, - 4869B54B0EE37591D6C195EFA088A309 /* GULNSData+zlib.m */, + 3805790FE2629BDDA7E8A74F62461CB1 /* UMPermissionsInterface.podspec */, ); - name = "NSData+zlib"; + name = Pod; sourceTree = ""; }; - 36D41EF87FADBBD601B42AE1569B3428 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - A07AB0AC0DD2B830F69AAE4284EB4826 /* IOS7Polyfill.h */, - 28F7C8D8BD934B4948079E44B625BD7E /* RNFetchBlobConst.h */, - 38D31D16FEF11BAC517B8AD6F7021B00 /* RNFetchBlobConst.m */, - BADE76B836DA5C67A129B2123E08184C /* RNFetchBlobFS.h */, - FAE8BA2EFD00B780218CC8E537FCB63F /* RNFetchBlobFS.m */, - A4B605CCAAE1AC3560DD864995FFE5AF /* RNFetchBlobNetwork.h */, - 0DFE3F59A8D00D12B0D1D17C592A8ACB /* RNFetchBlobNetwork.m */, - EB4425FBFCF5E1B982BE206B70D958C3 /* RNFetchBlobProgress.h */, - 18CFA87777A70CE8A32B608C88B50AB5 /* RNFetchBlobProgress.m */, - 71A73B7D54D1BE6342190E29E0329133 /* RNFetchBlobReqBuilder.h */, - B71E5DF4E7A46D848691A1898DDA99BB /* RNFetchBlobReqBuilder.m */, - 51B257153C7A0DE61085AEE1B94DADC8 /* RNFetchBlobRequest.h */, - DDFE1C5DE15E21C2382D0C647A24A94C /* RNFetchBlobRequest.m */, - 7BACE65362F5035D59BF922B0EE8A07A /* Pod */, - 6BAED4094EB3658D29C43634E6CFE173 /* RNFetchBlob */, - 360E50A9A5422B63D0EE70B1EEE392A5 /* Support Files */, + 33E6392BFCE96F4C629B93AB36EE7457 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + 1827F1127DF158706134416FF4B6A087 /* ARTCGFloatArray.h */, + 1A48BC0792F01838B2CD545480DFF90D /* ARTContainer.h */, + D083FB578FC9632BB9E23AAB9ACA3FCD /* ARTGroup.h */, + EC5D26A75463D24E519BF4EC68BF6243 /* ARTGroup.m */, + 5E1C8402C3E642F046EB336B4AFB5B86 /* ARTNode.h */, + 41BAD92EEFCD985EE3CC050DF1285A2A /* ARTNode.m */, + 10934ACE7B15F5AC3D02CCA4E7AC8A5B /* ARTRenderable.h */, + 9973B00F34DCC89350270D19C4B78C45 /* ARTRenderable.m */, + 7FE70E03FCF5F3D3A476D63FB08869F0 /* ARTShape.h */, + E2D39D57EE6339FF442978B150F2F571 /* ARTShape.m */, + 7DF94D11757CF0C19E98C670C0B46518 /* ARTSurfaceView.h */, + 27D6850F6315C471632ABED5426F4E32 /* ARTSurfaceView.m */, + F8248223FF4290A3D4266B51E6A2B504 /* ARTText.h */, + 7F533BDC208ED66383C167AB3E75F1C8 /* ARTText.m */, + 9307AD81DBBF310B8BE3E4035DD7BA80 /* ARTTextFrame.h */, + 4B16019424CA3E2E0EF220234A1473AF /* RCTConvert+ART.h */, + 3BFB77D1192D1BF54B08BAEF7E78D928 /* RCTConvert+ART.m */, + FA23DC6A4C097156C153FA8CD7542FF1 /* Brushes */, + 9F94049C63B155AC74581A61149F7D68 /* Pod */, + 5BAD32AEE7F380848A3ED8215D898C98 /* Support Files */, + E6C45F36C1871699561E2D2B810AD315 /* ViewManagers */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; - 3792159BE2DAC09AC0C16AB74E414B2F /* Brushes */ = { + 35B95A99CF6CBC3EA3BA21BBF63401B1 /* Support Files */ = { isa = PBXGroup; children = ( - F3412BD5233E3D48FA5CCA5DC7837617 /* ARTBrush.h */, - A538BEBC4D89577422B2804E44DA1763 /* ARTBrush.m */, - 973F3258A60E4FD62A39E54D76CCC1E4 /* ARTLinearGradient.h */, - EEE5729F20CF52915638C7F9B0EF4C3B /* ARTLinearGradient.m */, - 20EE457BFDCFAB6D806D177B0D42ABB5 /* ARTPattern.h */, - A7A070AB65F774923175A162B589849F /* ARTPattern.m */, - 4C83AD1EF56E73C6124E4ECED2017D10 /* ARTRadialGradient.h */, - 9013B402E6CD2423E8F50F42CDE02510 /* ARTRadialGradient.m */, - 0D0A6E511A6A98667DA1F0AB0C169AE3 /* ARTSolidColor.h */, - EEEE43297B60608C3C21606A46459B14 /* ARTSolidColor.m */, + 3A32946588EA5D283AD7F202679C7337 /* React-RCTSettings.xcconfig */, + E15A10A24919BCF86F29B8AEEE9C0C0F /* React-RCTSettings-dummy.m */, + B77BE8C9CDE50212C708D384B055D894 /* React-RCTSettings-prefix.pch */, ); - name = Brushes; - path = ios/Brushes; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 39015B95486C037E12673E77750DCD50 /* React-CoreModules */ = { + 36336A19CC852D958C4CB5D586AA7554 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 5654BE3CF2E21B0265F0F30371CD8AFA /* CoreModulesPlugins.mm */, - F7BA28841308F4FF7D1F2CE26231A620 /* RCTExceptionsManager.mm */, - 7024E26CD218E8F1D0CA346F769979C2 /* RCTImageEditingManager.m */, - 827510132A0156A9537A24136063186D /* RCTImageLoader.mm */, - 5C14787C3D9E2543FF595D4F057B305B /* RCTImageStoreManager.m */, - 054CA69973DEEFC863FDC9D9D7F0255A /* RCTPlatform.mm */, - 025D38DC64311CE96C412B2FB679D934 /* Pod */, - 1E8AF4A0F2283D300E4240B5DEC4EF15 /* Support Files */, + C869EE92774047221126F2CAD6CCB4E3 /* UMModuleRegistry.h */, + 45FDF409E1E2AB3479F8DE9D84CD9CD1 /* UMModuleRegistry.m */, + 50436AB6D02FBDE3A55FB16372626C24 /* UMModuleRegistryDelegate.h */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 398970515ABB2D4E7169177C947713BD /* Pod */ = { + 36700344FEBBB9D84A1947D60FF45E1A /* NSData+zlib */ = { isa = PBXGroup; children = ( - 356DEE22CFD29622BC9AF59BD8016DF1 /* README.md */, - 222F24FD6FC53DB2109B5B5BC6F4535B /* RNRootView.podspec */, + 682F6E4792E01F83E62FDAE84681DDD5 /* GULNSData+zlib.h */, + 4869B54B0EE37591D6C195EFA088A309 /* GULNSData+zlib.m */, ); - name = Pod; + name = "NSData+zlib"; sourceTree = ""; }; - 3A2C66FEDFDE92872442DDDDFFA196C6 /* VirtualText */ = { + 36C0E1745107A372E53A5F77D37F1957 /* Pod */ = { isa = PBXGroup; children = ( - 037DA8E6EE514A34E3C6C04BCE858F09 /* RCTVirtualTextShadowView.m */, - BE47C03ED2F5E88697989597C936E94F /* RCTVirtualTextViewManager.m */, + A96CF962EC52301B3A11F5CC41E11394 /* react-native-slider.podspec */, ); - name = VirtualText; - path = VirtualText; + name = Pod; sourceTree = ""; }; - 3A620F88965FC6DBAE6FBB1586FF5CED /* Pod */ = { + 375482B2C02DE2F203E50052B9A938B4 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - A493327AA7286BF4B72B02598020E5E7 /* EXHaptics.podspec */, + A97754D3320C1FD81ED660B127B36612 /* ReactNativeShareExtension.h */, + 15DA5644A3908F5FDC2B07D97A66CB74 /* ReactNativeShareExtension.m */, + 566C7E1FF8A6A7B78424975DD81F5ADB /* Pod */, + 776C367E1448158F2403B1AB02263084 /* Support Files */, ); - name = Pod; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; - 3C4FB016655DA24C67009ADBC0E79EB8 /* Tools */ = { - isa = PBXGroup; - children = ( - 0934F23676656CA6E9E4B183AE71892C /* BSG_KSArchSpecific.h */, - 4CBF97800CB375F5F1CFD50F2A9ED4EF /* BSG_KSBacktrace.c */, - CE79789FB8E987B27ED41A49D6B4675A /* BSG_KSBacktrace.h */, - E99D01BB1DB856E4EB342FA7725B5F29 /* BSG_KSBacktrace_Private.h */, - F8EA467571781ED6260FB02D8B6FBCFB /* BSG_KSCrashCallCompletion.h */, - EFB8D33B78500767C03AC602F3A78B82 /* BSG_KSCrashCallCompletion.m */, - 11E7E6E3B304EAF2808428C08C4ACBD6 /* BSG_KSDynamicLinker.c */, - AF804193C33FB58CBE5BA166426FAA72 /* BSG_KSDynamicLinker.h */, - E6A5E4BEFE7F41537E5CECF90E5E83F7 /* BSG_KSFileUtils.c */, - E265D8F6F85689533C709A9FC9579C46 /* BSG_KSFileUtils.h */, - 29A7A5BC488F61AA66BE4A5105B1A52E /* BSG_KSJSONCodec.c */, - 1DD7F34093205C98B4E3AA38720E16B6 /* BSG_KSJSONCodec.h */, - 0BFC8AB78F4EB413F1E0B9D0369C9F0E /* BSG_KSJSONCodecObjC.h */, - 943441E919563D1569077A8D87875F8C /* BSG_KSJSONCodecObjC.m */, - 226679663EC6272B26CD3EFEDBCF017E /* BSG_KSLogger.h */, - FCA17397A6F4EE36CCAC58434AD77B29 /* BSG_KSLogger.m */, - EA69641476EBDFD775EE1A153B4DC45A /* BSG_KSMach.c */, - D65B743192481AEB0E97FF3AB7B38DE6 /* BSG_KSMach.h */, - D438306ABC79A45616BB67230E8A3CA4 /* BSG_KSMach_Arm.c */, - 0CD130116A699DC621AF848D5D8E2397 /* BSG_KSMach_Arm64.c */, - FE7E75F43B3D11A6A85FD1B17B69328A /* BSG_KSMach_x86_32.c */, - 6FA5383284FA4E5D77AFB961CC32FEC0 /* BSG_KSMach_x86_64.c */, - 87FD40DA6748C6061788970380646A26 /* BSG_KSMachApple.h */, - F4D92D870DE607D7B8C8194D1AB7A57F /* BSG_KSObjC.c */, - 4E41BEA18D5C9A442C93226CF8EB9B3D /* BSG_KSObjC.h */, - 656B24CBFCFD017F4CD8D3C2CE6CBDDE /* BSG_KSObjCApple.h */, - 1AAD1E3BE0FAE3A9DC564AD26127A893 /* BSG_KSSignalInfo.c */, - 73C46F2D672C59BA5F9AECB4DDEBC887 /* BSG_KSSignalInfo.h */, - 36C67981B3FD8CED45B6F5DAFFF5FD03 /* BSG_KSSingleton.h */, - 7FFB4730ACE0DCB77A8A34C4015CD46C /* BSG_KSString.c */, - 68A742138C374705F38D264CE064DE8B /* BSG_KSString.h */, - DC9A7FD402406EE14CF5A2B3091C48BB /* BSG_KSSysCtl.c */, - 3A31B0164DC60DCA090793823095A032 /* BSG_KSSysCtl.h */, - 3582942CFA8E78918EFA4177321D2119 /* BSG_RFC3339DateTool.h */, - 356B1FE083963ABCBE2D82121CA472D6 /* BSG_RFC3339DateTool.m */, - 453ECA6654F44A718F0A1BC0DC7960A4 /* NSError+BSG_SimpleConstructor.h */, - 76ED9D28EED0243EC7E23698DDBADBF6 /* NSError+BSG_SimpleConstructor.m */, + 37EFA389C9C279A1FC93172649E85CF7 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 6D17941B59F44323C04C1DAC48280552 /* CxxModule.h */, + F3CE924AF39D972901B75A1D006860B9 /* CxxNativeModule.cpp */, + 7FD61F0884C908C799762789F059ED95 /* CxxNativeModule.h */, + 5E7B33BB49E5177A2B1BC344012308BA /* Instance.cpp */, + 2573D9D6041079FF47BD50EBD8AADBF9 /* Instance.h */, + C8E15D566E869780991CBD1B44981393 /* JsArgumentHelpers.h */, + 364529EEFD05AEFF36F7B42792ACB275 /* JsArgumentHelpers-inl.h */, + 181122469084C654B646247B9E0E4375 /* JSBigString.cpp */, + D6A2B5E32E4E76CFCC9ACBD0FC878085 /* JSBigString.h */, + E1ED07314747EB40BB32C54621BB1A01 /* JSBundleType.cpp */, + A44080A70A5B010573F0F3BF7552F45D /* JSBundleType.h */, + 3B6506265F3367141E31DCF936763ACD /* JSDeltaBundleClient.cpp */, + F13E5BA2F003C2AD077764D62C67C1ED /* JSDeltaBundleClient.h */, + 4174C3DA62C6EDE81EC9F9D21A6F2728 /* JSExecutor.cpp */, + 801FDE00F084B3ED700B2166D5288922 /* JSExecutor.h */, + 41145DB6B12EC01D187F813FAEB19857 /* JSIndexedRAMBundle.cpp */, + EA41E26760068111B4C2441D15CAA4CA /* JSIndexedRAMBundle.h */, + AA970E0E45CEC7FD98BCB9CD50A94784 /* JSModulesUnbundle.h */, + 297DE5906FC3CE4D8A2A5293D38E1532 /* MessageQueueThread.h */, + 5EB359D7BD524A919EA6F9A4D4B01214 /* MethodCall.cpp */, + C413EE953021DCA4AC32898DA184C0FD /* MethodCall.h */, + 3A54A0A46C79160C041E5BC8B5148561 /* ModuleRegistry.cpp */, + 2C7EE7B40BA6C455473BC868F9ECBE8B /* ModuleRegistry.h */, + 3403650F0D63AA3E71AE9F8D5D73A0AD /* NativeModule.h */, + 383F75F79C51D1F463B71D72C88578D9 /* NativeToJsBridge.cpp */, + EC9333163A7D0ADADB870B7BB851A3DC /* NativeToJsBridge.h */, + B0E62FEACC9E49A4A484367E061F37BA /* RAMBundleRegistry.cpp */, + 65A885C83B69E89EE743E1A0A7D9267E /* RAMBundleRegistry.h */, + 659B0ADDCE76E43B49B8AB8132AF43D4 /* ReactMarker.cpp */, + CDE345C23442F216F1CF3AD8BC422E5F /* ReactMarker.h */, + A215F2AED7CE7F6AB106DEBEAC8BC6A6 /* RecoverableError.h */, + DF27017AAE3E8185C335CC76EB83C16C /* SharedProxyCxxModule.h */, + 9B7526C820683A597B5F0C52AD0E9AB4 /* SystraceSection.h */, + D10993FF920CF5AD2DF1315152B8C1F4 /* Pod */, + A672C9F12B317A1FBB1E950BE44B2006 /* Support Files */, ); - name = Tools; - path = Tools; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 3DD178F5CC41FD3E11BFADAB9FFB57E4 /* ReactCommon */ = { + 3B446FEB8459CFDF3C724712300C4EDF /* RNAudio */ = { isa = PBXGroup; children = ( - F28F5B57C3544A7B50EC0698FEB4C1D9 /* jscallinvoker */, - 76E4982740E39D568351B47573328D0B /* Support Files */, - EAE573E77B997B1836725FA8F609169B /* turbomodule */, + 18FAC1774558F6AA1A4C383E707F9678 /* AudioRecorderManager.h */, + E489C8EF128611E726278BD75FDCCF03 /* AudioRecorderManager.m */, + 448A233CEA50A8AA9A59810915302176 /* Pod */, + F52E6BE73A247295F08576A3B494CCC3 /* Support Files */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = RNAudio; + path = "../../node_modules/react-native-audio"; sourceTree = ""; }; - 3DD5D80BA0F48DF5D668B054D2529DA4 /* Support Files */ = { + 3B83F9CD18B37D9EB9BC17B14C89B3F1 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 1A9E54B8C06A1BBE8C3A3BF8BC2F5EFD /* React-RCTBlob.xcconfig */, - 50872EEE1BDB14CB8104E116422B5BCC /* React-RCTBlob-dummy.m */, - 56E7D5CB6A3CB8DC47AA75D4A880637E /* React-RCTBlob-prefix.pch */, + 698FE0484A539BB14D90E0BDA75745C3 /* RCTAnimationUtils.m */, + FE67390DB33CBF818310CFA548018E5C /* RCTNativeAnimatedModule.m */, + 76DDB51F2393776542183257E816A139 /* RCTNativeAnimatedNodesManager.m */, + 2D20F20D5DED1BE4DAA9F2CF58148BD0 /* Drivers */, + C2E802E80CD449B549ADBF0BD073A45F /* Nodes */, + 82272FBE4B5A9724808C85D8580BABB9 /* Pod */, + 3F9E707D7F024A401BF067C2DF7FD2C4 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - 3E44A08297C6A34B2FE6B2952053A21C /* Pod */ = { + 3C06E6106F9820180300C909B8F51B5D /* Pod */ = { isa = PBXGroup; children = ( - 580DB1027ABB78299355159A7EB54CDD /* BugsnagReactNative.podspec */, - F3BC78208E88BD0AED435415F9149B51 /* LICENSE.txt */, - 9D81AD994B48A6DA0B0BA3C6017BCFED /* README.md */, + D4C5CD890680CEA719DD1A8B5BC1E1D3 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 3E6DCA53D8A6EFEAF417F6AAEEFC49BC /* notifications */ = { + 3C84EBE16DDBC0CCD3A6C80920B40F48 /* React-Core */ = { isa = PBXGroup; children = ( - CF35D67199A3C1F368CB2BADCC76A144 /* RNFirebaseNotifications.h */, - 9D3C2027F9DF7D383B337F87DC09F20E /* RNFirebaseNotifications.m */, + E79A4DF913F15F0B0C0C88FD52F8F80A /* CoreModulesHeaders */, + A862468E4D841C358D941E163F6C098D /* Default */, + AF3F9621B19C8C2B33528E31A38A290F /* DevSupport */, + D1DDF1424B159F0715B52974DC174A37 /* Pod */, + 039381F7E2213BAFB49E5F57FBF0E4BA /* RCTActionSheetHeaders */, + 79F6E576C83EC8109FD87217E870FB87 /* RCTAnimationHeaders */, + D19DC70342F0806F8586EFF36584E76B /* RCTBlobHeaders */, + F12761497C4EA5A2B050B4D3323BD666 /* RCTImageHeaders */, + 6EDAE35CE76879AA7745EB98E70A81B7 /* RCTLinkingHeaders */, + 783A0320CCF8B32721BD6610DBF52551 /* RCTNetworkHeaders */, + 8259767F02022C527F29A4F19567B0B8 /* RCTSettingsHeaders */, + C39554A459A2F2CE674EE14558D958FE /* RCTTextHeaders */, + BA268D585A6DE6D5337F4D2920CCE801 /* RCTVibrationHeaders */, + 9B4B339ADABFF6CBF5F622EF5ECD91DA /* RCTWebSocket */, + 1D9095A3B30C3C007FE4DFD3DD75F8D5 /* Support Files */, ); - name = notifications; - path = RNFirebase/notifications; - sourceTree = ""; - }; - 3E716092872B7C84BF2DB037CA57D38B /* Support Files */ = { - isa = PBXGroup; - children = ( - ABE765A6A7C399E3A90685CE47136030 /* RNScreens.xcconfig */, - FBFFCBED60AEBCF25524A6709D604EBD /* RNScreens-dummy.m */, - 7CA40B56292E7634B9E50020843B9B05 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 3EB9363E175D460A4D095878FCC150BB /* react-native-cameraroll */ = { + 3E28CEFBC7B1AC47803BC4DA2D15D3A9 /* RNFastImage */ = { isa = PBXGroup; children = ( - 3A5C61482E71AF20A55ABB3BE40456E0 /* RNCAssetsLibraryRequestHandler.h */, - 4B3A4194FBF855305AD67DC72205C80A /* RNCAssetsLibraryRequestHandler.m */, - 3A94CCC3BDFB081EBCDACADA0F4DAA1E /* RNCCameraRollManager.h */, - 0B6AA6BED7B91DB529B424AF84064C6B /* RNCCameraRollManager.m */, - A65466AF22A03A768C45F5E10C710390 /* Pod */, - 4D4ECF2429D99E17369545C56C2B2F27 /* Support Files */, + F151FD2B2793EEA2AFBA711AD59876B3 /* FFFastImageSource.h */, + B7FBAF412502DA3718AB5678B93FB742 /* FFFastImageSource.m */, + B2108B9C07424EC2174F3964D3445244 /* FFFastImageView.h */, + EB405B9622075B540AE9604AC84ACFB1 /* FFFastImageView.m */, + 844F783A7D1E9F58F9CF8ABC7D95DF5A /* FFFastImageViewManager.h */, + CF99CEF282BCCCA7045904509F3CAE81 /* FFFastImageViewManager.m */, + A10DA349E7CD902C7793F3AA93463F07 /* RCTConvert+FFFastImage.h */, + 78D32E195FDA5CC0224ACC288F463B73 /* RCTConvert+FFFastImage.m */, + B0BB866DBAAFE3FBFDDFEC623DD5E392 /* Pod */, + A249DAFE4743494069FE8796BB425859 /* Support Files */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 3EFCDA03378D26E6F64E6248662E46BA /* Inspector */ = { + 3E7AE840957DEE13D51D6088CC867A02 /* Handlers */ = { isa = PBXGroup; children = ( - 42517419A5D52E0E983BC2E0AF034132 /* RCTInspector.h */, - E2A015033875EC5BE7D392791F17A964 /* RCTInspector.mm */, - 868C8DFBC824AAFCA308E7A59CCE30F8 /* RCTInspectorPackagerConnection.h */, - E6B2D8A5D47AE547F5D716E8F7B12BA0 /* RCTInspectorPackagerConnection.m */, + 5BBE09D8BC9D3CA679020FB1EE11D644 /* RNFlingHandler.h */, + 604BE1DA0F7D231747F98877C94DDC4D /* RNFlingHandler.m */, + 58AFE978C3D3CD2EE9D90093B21B77E8 /* RNForceTouchHandler.h */, + 2655AE4B93DD0C0A2EE756E5852FAAC9 /* RNForceTouchHandler.m */, + 0282E5FA3AC27F85124E41667CAD55F2 /* RNLongPressHandler.h */, + 22E5A3C18B5D608336D84AB10D0DF85B /* RNLongPressHandler.m */, + 745A64730A3479DCBD1E56C51BE7F6E7 /* RNNativeViewHandler.h */, + 3DB97B0F2AA1C96B6D43BB002D7FCE0A /* RNNativeViewHandler.m */, + 1E77976B72B9AB6E7BA93B640FE4F43F /* RNPanHandler.h */, + 7B1216DF5913FC67AAAC23A8888AE9DA /* RNPanHandler.m */, + 6A0A066BEAB1661F706F8E216290347D /* RNPinchHandler.h */, + C078287057644DB319CD83478B3EE278 /* RNPinchHandler.m */, + 754EABC0EB1BE0FFB98FF8050FFAF7AF /* RNRotationHandler.h */, + FC86158A8E3AE82E8EA0A55C1A9B64F7 /* RNRotationHandler.m */, + A81B4DF35AA3E7DC245F92694E0C9488 /* RNTapHandler.h */, + A249D0DA845BD71A9288775610F95281 /* RNTapHandler.m */, ); - name = Inspector; - path = React/Inspector; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; 3F11EBA90E912A79808384BC5B4F4631 /* Support Files */ = { @@ -8088,98 +8086,157 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 40B626A781621BAEC18BA7EE491F20D0 /* RCTRequired */ = { - isa = PBXGroup; - children = ( - F72AD69D6FFFD1BD9797D1C508EEAD21 /* RCTRequired.h */, - 293BCC40871822479E21D86F6A11468F /* Pod */, - A9DFF49188CB7A810E0E1899D772481A /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; - sourceTree = ""; - }; - 4157BE611029362FA76CD327FA4694EC /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 3B28807606D3BC1F3BE3785ECCE22078 /* FFFastImageSource.h */, - A08A9CBA50474D8B415788D13F8CBA7B /* FFFastImageSource.m */, - 0B3C78CD2543A1CF6729C277106A9B25 /* FFFastImageView.h */, - DFD6A559D2729450558813F60FD5E889 /* FFFastImageView.m */, - 015105489BE88D6B7A958B5FC40AA949 /* FFFastImageViewManager.h */, - 0A668A088D98CBD06FCBFCFA3AA2A8D1 /* FFFastImageViewManager.m */, - 46BF0E8347D4466B74F3BB878811DE73 /* RCTConvert+FFFastImage.h */, - D37A2042179ACF144088B152D8CCEC9D /* RCTConvert+FFFastImage.m */, - CD5A20B908A8009A093A55D6090D0E1E /* Pod */, - CE8EB9251018E8ACF1D5752DA2862D85 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; - sourceTree = ""; - }; - 41CE247531EE763CE59724A5374F1E3D /* BaseText */ = { - isa = PBXGroup; - children = ( - F176D8D1036AD52B6FEC84FAC49139A3 /* RCTBaseTextShadowView.h */, - A11F3E94C537432CAABB1F9310874882 /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 42726BB54247B9D5DEA9CDFFCB9B0F05 /* Nodes */ = { + 3F9E707D7F024A401BF067C2DF7FD2C4 /* Support Files */ = { isa = PBXGroup; children = ( - 60F63E6EEBA4EC4855EC5155FC5B232E /* RCTAdditionAnimatedNode.h */, - E60AAF61B5DA56B41F263EE9D35A4FE3 /* RCTAnimatedNode.h */, - CE2E9A96B006F6156BEE69353385D25F /* RCTDiffClampAnimatedNode.h */, - A4A479A8DD127274B1AC3A458907EDBC /* RCTDivisionAnimatedNode.h */, - 6E0F47B23EE7517CE5E9B8D2AEF2BEEE /* RCTInterpolationAnimatedNode.h */, - CC749B0E2A9153CB4C7E1560AA1AB45B /* RCTModuloAnimatedNode.h */, - ED5C1A02BFFD5E207406E1C79A084507 /* RCTMultiplicationAnimatedNode.h */, - 90558417A3AD4FD637DFD00520357285 /* RCTPropsAnimatedNode.h */, - E17A2EF70C40EAB41925A2983530F0F7 /* RCTStyleAnimatedNode.h */, - CBFF3ABD6A492A41EF206A0CBE9ACF34 /* RCTSubtractionAnimatedNode.h */, - 7824FF216D45340CC6AA893A3D15946F /* RCTTrackingAnimatedNode.h */, - 6044529B504553E2405928A546581C1D /* RCTTransformAnimatedNode.h */, - FD4059D86E13B5BD3B77C3865778919A /* RCTValueAnimatedNode.h */, + 19894FB1CFA58E290D9BE9891F271CE4 /* React-RCTAnimation.xcconfig */, + 8BCDDD7DB6B1E4894935BB2821D35D00 /* React-RCTAnimation-dummy.m */, + C0E3E7B17C4136F51E46AFBA00D41DD3 /* React-RCTAnimation-prefix.pch */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 42B2F6B3D1A08233C1F529CD294BDB0E /* RCTImageHeaders */ = { + 410FC1DA3121E620413C4DF16ED630F7 /* Support Files */ = { isa = PBXGroup; children = ( - 8AF97759381C515AC1ADE8E987FB7CED /* RCTAnimatedImage.h */, - A3E790B97C4D3BA314D6D5D9A90E5579 /* RCTGIFImageDecoder.h */, - 2EB6F6BB23954FA3C96940D122EB3544 /* RCTImageBlurUtils.h */, - 3EAF80DCE8A9ED255EF456B3190CDE96 /* RCTImageCache.h */, - 74B89B090ACBED9661241F4684C2BAFA /* RCTImageDataDecoder.h */, - 95792081C9ED4ECC41A8BA1E2597FB16 /* RCTImageLoaderProtocol.h */, - 8C6D5819019D8BC3EFD511785A370535 /* RCTImageShadowView.h */, - B953ABEE1C3548F31D3358C6B37FC339 /* RCTImageURLLoader.h */, - 34CD9E734C4FC85F53ADBBDF44B64B49 /* RCTImageUtils.h */, - 522AFF1E7ED2CC5B94FBD25D2F712FD6 /* RCTImageView.h */, - F50F6B6D2CFFDABD8D303D89754C7837 /* RCTImageViewManager.h */, - 6EE082B6C44D1037E68F687128E2BFBC /* RCTLocalAssetImageLoader.h */, - B896AC7D9DABB6B6E4B0B536BC7327CA /* RCTResizeMode.h */, - 0F61B6AEED9503AE65D497C66B491B1D /* RCTUIImageViewAnimated.h */, + 980E94CA1F2EEB7523859A67F4719063 /* React-RCTText.xcconfig */, + 7A41746DE0A98E4B82C4C89A3397C9DC /* React-RCTText-dummy.m */, + 401973BCEACADF073C4E35B793FB91FD /* React-RCTText-prefix.pch */, ); - name = RCTImageHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 42C68DC8CE48536D832C9A7A5353B785 /* nanopb */ = { + 420C48B2DE10CB29EF09E117AF91E28A /* Products */ = { isa = PBXGroup; children = ( - FAFF3D6DA73503BE193DA001AF40848F /* pb.h */, - 276DC8FED36CE7A1A8580CB612E3C53E /* pb_common.c */, - A7AAF36698B12EC9A5F1499B0E23D952 /* pb_common.h */, - A90996A1D17F8B19F648CCA2F3DA90B1 /* pb_decode.c */, - B2B5C12C9057A3C3F80B6FE63DC672B1 /* pb_decode.h */, - B495422B40687B5786370FAACD615B60 /* pb_encode.c */, - BE559106116A7A7648B12A03E9D4D28B /* pb_encode.h */, - 51A851DF9BB4A2A85756E8061DA6067E /* decode */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 20D73B80DBEDC9935666EB05B502A6E8 /* libQBImagePickerController.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */, + 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + C9708630F9D9C8C32EF0B3C91B9E469D /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 421283CB37B144422D71F4B2C0A74A18 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 900B7C7EDA009C3BBD15C6E61D862277 /* EXAudioRecordingPermissionRequester.h */, + BF675BDCEB62F9E372C87820209D75E9 /* EXAudioRecordingPermissionRequester.m */, + EA8D1E6F05AE398D3EA1C47BA61D9C61 /* EXCalendarRequester.h */, + C23A05811E5A08969071B98F5D6FA4E1 /* EXCalendarRequester.m */, + 247A5EA03A4847E3A7AC163CE046CB04 /* EXCameraPermissionRequester.h */, + 98B6480466BF7CEB07BFD59FB4E4DE0C /* EXCameraPermissionRequester.m */, + 8739F636733F045253E3984A04D799FC /* EXCameraRollRequester.h */, + E72566E849EB71B89223F60686D9916D /* EXCameraRollRequester.m */, + 550C1881C392DAA26E9287B7205615FB /* EXContactsRequester.h */, + C69C3EF859CAB70E5B41B8C17C7F3630 /* EXContactsRequester.m */, + 6A8A82725A1B7969CA9273A7738DCCB8 /* EXLocationRequester.h */, + 30BC2FFC08B0A3A295BB44C47A3365E4 /* EXLocationRequester.m */, + 44647028373AF2AC1D2203A046C079A5 /* EXPermissions.h */, + E1AA147282D13B9A62FB98A4D23C0F97 /* EXPermissions.m */, + C7118DF0E7B234BAF5DCD97B2157CA65 /* EXReactNativeUserNotificationCenterProxy.h */, + 3A635FB4D4337285928E1B8E0256C596 /* EXReactNativeUserNotificationCenterProxy.m */, + C2E07EE358222A72786267B401D65856 /* EXRemindersRequester.h */, + E082F75E88B6470276CBA30D21654AA1 /* EXRemindersRequester.m */, + DF0916E2D77A3E67ED66B363A3040548 /* EXRemoteNotificationRequester.h */, + F1712CA546A814EA6A8CE62EF8DD9850 /* EXRemoteNotificationRequester.m */, + 7E038BA992C7ACE80C4C2AD8D8EC6304 /* EXSystemBrightnessRequester.h */, + A9BF2015C38AF72591EF97C81BD68934 /* EXSystemBrightnessRequester.m */, + F78CD7C2F3E2E0B3206A404242C93775 /* EXUserNotificationRequester.h */, + 34D303E7970EB9860AB1A558D43CA8C9 /* EXUserNotificationRequester.m */, + 2E9B70E8E32BA7510925889DE71E0063 /* Pod */, + 21FFF566E3710B337AFFBCB0E764583D /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + 42C68DC8CE48536D832C9A7A5353B785 /* nanopb */ = { + isa = PBXGroup; + children = ( + FAFF3D6DA73503BE193DA001AF40848F /* pb.h */, + 276DC8FED36CE7A1A8580CB612E3C53E /* pb_common.c */, + A7AAF36698B12EC9A5F1499B0E23D952 /* pb_common.h */, + A90996A1D17F8B19F648CCA2F3DA90B1 /* pb_decode.c */, + B2B5C12C9057A3C3F80B6FE63DC672B1 /* pb_decode.h */, + B495422B40687B5786370FAACD615B60 /* pb_encode.c */, + BE559106116A7A7648B12A03E9D4D28B /* pb_encode.h */, + 51A851DF9BB4A2A85756E8061DA6067E /* decode */, 8776D2C51A83E427D2C48EB1069F5894 /* encode */, 87D4566BBFFD271EEEA3C99A94209C9D /* Support Files */, ); @@ -8187,26 +8244,37 @@ path = nanopb; sourceTree = ""; }; - 43BE51787A8F1A2FFB8DFA861F39B175 /* admob */ = { + 42DE498DF847C4C1CC9A6452F7751281 /* Support Files */ = { isa = PBXGroup; children = ( - 31F2DFFBD015209A78F79B7C330814E4 /* BannerComponent.h */, - D8FC957DC3D9891D6C2213715A4A3CC3 /* BannerComponent.m */, - A2E183E4C6AE6E9E48300981ECD06066 /* NativeExpressComponent.h */, - 814814520D392A8A4AE97CE6CE0D160E /* NativeExpressComponent.m */, - 0B6E647645C49AE8A5FBB9354CF640D0 /* RNFirebaseAdMob.h */, - B1CC5B760149F472F3B3D3662E478237 /* RNFirebaseAdMob.m */, - 5B27787F529AC269BC648A8B1420B0AE /* RNFirebaseAdMobBannerManager.h */, - DA3E56B402EFAB8A6A5C000A0022DBAE /* RNFirebaseAdMobBannerManager.m */, - FF841DAA10E8FDA9BE870CF58457AB5C /* RNFirebaseAdMobInterstitial.h */, - CDC9F6875A8D886F6A28C664B969A564 /* RNFirebaseAdMobInterstitial.m */, - 0FB50A378E098C24E8D3B9722246C460 /* RNFirebaseAdMobNativeExpressManager.h */, - D07E020AC126A86B9F047BD3CF998B64 /* RNFirebaseAdMobNativeExpressManager.m */, - 5782475A5B000620FC63EF2A7980B76B /* RNFirebaseAdMobRewardedVideo.h */, - 81925D74BC93FA6D687019F99B428209 /* RNFirebaseAdMobRewardedVideo.m */, + 2094B17B932F0291907A328EF66C43DE /* RNRootView.xcconfig */, + 39552618FA6525665B95AF0294BEE26D /* RNRootView-dummy.m */, + 2B9C85EDD81E15E166CB2B0AE63AF203 /* RNRootView-prefix.pch */, ); - name = admob; - path = RNFirebase/admob; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + 4340AD944D465EEF65BE1F7F55D40E1E /* Pod */ = { + isa = PBXGroup; + children = ( + CF4FBF84A03B3A3676453FDB124B0D5B /* FBReactNativeSpec.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 436210F0061D75846CFF4B450B2793EF /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 1CDB27E785D4D6DAEBDCB5C57E7DEF5B /* DeviceUID.h */, + 224C3853AE53D9D61A871DD7F8B301E2 /* DeviceUID.m */, + C9DE202B4213AAFD5770902F012AA03F /* RNDeviceInfo.h */, + 59F794A51B1D3BCBD1E47EC5D497217A /* RNDeviceInfo.m */, + 7949DA73F5C61A367F6FB11FEF3C0521 /* Pod */, + C71928742805931ED72422B4D5A1685A /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; 44068648C93A50DA0671DCC0DCC8EA4B /* Support Files */ = { @@ -8219,6 +8287,63 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; + 445AE7681F50F4BD3CE35EA9D9947E5B /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + C3EF60B0F25C5B959CE46EB06E181E18 /* UMTaskConsumerInterface.h */, + 5C859002414E92A52A5137453712DC1D /* UMTaskInterface.h */, + 5035E94EF5F622A429E66E8AEB4219D3 /* UMTaskLaunchReason.h */, + 448A5165EE319879F03FA0B9F9829517 /* UMTaskManagerInterface.h */, + D76408503C34E1CB1F96401C858C61DD /* UMTaskServiceInterface.h */, + 047AD55C1E2248F15D0C743E60A2D784 /* Pod */, + 238E3B7A65AEB87A990C8432231C959C /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + 447C964AF57E8E91B4E31A00CA894272 /* Pod */ = { + isa = PBXGroup; + children = ( + C2B839BCA727B64D2C80846C64060A4F /* React-RCTText.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 448A233CEA50A8AA9A59810915302176 /* Pod */ = { + isa = PBXGroup; + children = ( + A0499834785EA50EA58E3EB46B8FB6C6 /* LICENSE */, + D7014E8A87FE95F8EB4A9E9D165FCC6B /* README.md */, + ABCF9D5FA6B69B7FE22448C63F5C0C35 /* RNAudio.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 450B5FCF710FFA64AF6B0426DFD2C915 /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 9A7ADFFD11CA3176AD9B995816F26E0A /* FBLazyIterator.h */, + 0D2A15030BBD7E453F08CB2638712216 /* FBLazyVector.h */, + D4D3DB278036B460122D7AD158BD3736 /* Pod */, + FD2ABB1C3AD32EB6CDD1E38A18560079 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + 45E96C23EBEC66CF50595F57D7A40AA6 /* Inspector */ = { + isa = PBXGroup; + children = ( + E85B008837FA9F5C524F86ADFBB667E5 /* RCTInspector.h */, + 1613165AD3D38B77EBDBF0EA8019FCE1 /* RCTInspector.mm */, + BD2149CD1A9786D1ED0CFA9C925C800C /* RCTInspectorPackagerConnection.h */, + 73934CBCB26D587781880AFD9B873AE0 /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; 45F5ED2C3A330A590E11E433B7535194 /* JitsiMeetSDK */ = { isa = PBXGroup; children = ( @@ -8229,101 +8354,78 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 466AEA0681255505D75FEC68B9A0DAFD /* jsi */ = { + 460D6A8ED928920BDEB2DD9D2E52F667 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 1CDE1CCC43729B11B1EB0CD96DB532AB /* decorator.h */, - 00AA5F5D4F338AAFF3B7D3901B95C5ED /* instrumentation.h */, - DC95671A15E9C07339E1D8953A1147DB /* jsi.cpp */, - 8C9D6B2256DD82E66BB5C86F27CDDDAF /* jsi.h */, - AA9C6BF7BA250086B1CEBFEA43E3257F /* jsi-inl.h */, - 9D981A1DB1221804922B01B00B454BC4 /* JSIDynamic.cpp */, - 99AECA93497D65F4FD67F870BE6B6D5D /* JSIDynamic.h */, - 550F2CCD6ECB3B9D99992AEB94B55300 /* jsilib.h */, - EBF25C83155D2B8C1F835544873D640B /* jsilib-posix.cpp */, - FAFDBE9DCD0D1C4FD161BE5B0AB525F3 /* jsilib-windows.cpp */, - 16F28F0BE74BAE1DF1601F547002E5EF /* threadsafe.h */, + 7FD3A23C2C73AF02C7B123F5BF72FD76 /* RNVectorIconsManager.h */, + 6CFF0EB764BC9AD5478CDBAF1F1616F3 /* RNVectorIconsManager.m */, + DE4190BAA6DEE3A98E1E9D86D6728FA6 /* Pod */, + F52AAFCB4EC12A55239B51CAF8F6101A /* Resources */, + 27CA2E075B22223434B0DBA7E6A5C08B /* Support Files */, ); - name = jsi; - path = jsi; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - 472F9D61C490551B00D0F0442F650E86 /* RNVectorIcons */ = { + 4793B76C36EC1A75B8DAFBE0A259EB6A /* event */ = { isa = PBXGroup; children = ( - 62C786E86B50E39341F733E7082DFB83 /* RNVectorIconsManager.h */, - 8BFA64390F2297C72F735CF5C9DA5D0C /* RNVectorIconsManager.m */, - 94CD99E1EAC3545479FE99B77C8C9FFB /* Pod */, - 9180627561303A9CE353139B9AFCF787 /* Resources */, - A8122ADB6F02940FBDD915535FB48582 /* Support Files */, + 54C24149A3A1B3D3197BF7F331408AEE /* event.cpp */, + E5559923AA1F789D49B777E430398950 /* event.h */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = event; + path = yoga/event; sourceTree = ""; }; - 4AEAC3DA0A32E3F642D3E425F766DF34 /* React-RCTText */ = { + 47BE8EACC41F288EF200D9F6B6EE3A50 /* Support Files */ = { isa = PBXGroup; children = ( - C32F8F309CE7E7C79D02758EBF426426 /* RCTConvert+Text.m */, - ADFEC8233ABDA82D55BCB91310F87833 /* RCTTextAttributes.m */, - EB86E6DF37FF57CC426067554244A7BC /* BaseText */, - 64610D741B10BDBC22A47638D732AA66 /* Pod */, - D0CE2FDB4A9A14A5F77BED871930524B /* RawText */, - 5CB719A70600D93194A80B9A22235BC9 /* Support Files */, - 94A98801D5C5A86CCC64BCF2166F6C17 /* Text */, - E03C1A0C2DF993ACB7D465AE9942E93F /* TextInput */, - 3A2C66FEDFDE92872442DDDDFFA196C6 /* VirtualText */, + 8D9AD324C45816C8695A7CB64332E1F3 /* ReactCommon.xcconfig */, + 01060FCDBEF265BFA21F91667CE83154 /* ReactCommon-dummy.m */, + 8F28466A1AE32C6340402C07E1C9ECCB /* ReactCommon-prefix.pch */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 4C506470E791F506FF16E9B58E391767 /* UMSensorsInterface */ = { + 486B0FF3DF4E7F5C500CDB8E7DDC3801 /* Pod */ = { isa = PBXGroup; children = ( - 845271E161412CB3ECD93F8ADD700547 /* UMAccelerometerInterface.h */, - 2597C32D353393B8BFA90E56A865EB3F /* UMBarometerInterface.h */, - B4062488C45CC6AB763BFF3E3D0E7E13 /* UMDeviceMotionInterface.h */, - 8D94AC0E7D29E04670A1DD77105A999A /* UMGyroscopeInterface.h */, - 310644A8BABE64B68FA90C6A00610000 /* UMMagnetometerInterface.h */, - E23E6CFC2CE5F8525BC1BBBC5A9170DA /* UMMagnetometerUncalibratedInterface.h */, - D2142FA9B79571DAB573ACA5C020D99A /* Pod */, - 4D5F3F4EBC7327494CA1C4C4CF6C6DBD /* Support Files */, + 0919CC701D5F76D8506D5E6FDC0C64DD /* LICENSE */, + 8ECAD65385F5517D8358A5844A0A33AB /* react-native-keyboard-input.podspec */, + 6DE5FE1436D20CF01174346129817D21 /* README.md */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = Pod; sourceTree = ""; }; - 4D16C1E7ED78DC24D0F8C2AFD9BEC61D /* RNBootSplash */ = { + 48AB9742C8222728F55DB65ECF4DB387 /* Pod */ = { isa = PBXGroup; children = ( - 72123E7D02C388515AB2243BC69C8B07 /* RNBootSplash.h */, - 211CAE2A1EE82EF06C89A9DE024C57E4 /* RNBootSplash.m */, - 14414F6126906DD265BEC7B6F69A1309 /* Pod */, - 76AD0FA4BE4EE59A67DF98BA3CF85C01 /* Support Files */, + C59C0285928EE93A3D14096AB122F3CD /* React-RCTVibration.podspec */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = Pod; sourceTree = ""; }; - 4D4ECF2429D99E17369545C56C2B2F27 /* Support Files */ = { + 494756B2A12485678BBEF28AE7D9E7B2 /* Support Files */ = { isa = PBXGroup; children = ( - E3D9D482398AC78F2A144C249F57F6DC /* react-native-cameraroll.xcconfig */, - 64A0EED7740EBFB115F934F278F76ED1 /* react-native-cameraroll-dummy.m */, - 3C4474A0D732B54951F9E3D680193009 /* react-native-cameraroll-prefix.pch */, + 17B3808D010EAE5E4DA1D386D6CA94D6 /* rn-fetch-blob.xcconfig */, + E356A1577B80364B95DE1871626C066D /* rn-fetch-blob-dummy.m */, + 2D8E2E86502AB32BE1A6A36EE7EABAB1 /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - 4D5F3F4EBC7327494CA1C4C4CF6C6DBD /* Support Files */ = { + 495C0516FE69A6C6E8F1FF9D31A49617 /* Support Files */ = { isa = PBXGroup; children = ( - 0175CE46F11CDB1ED332E8FB610C328F /* UMSensorsInterface.xcconfig */, + 361B885668026CB8D0F97C254A166261 /* RNLocalize.xcconfig */, + F9857BED366CA42AB9F83EF63D63CFCA /* RNLocalize-dummy.m */, + A0E7A17B499199474386A43A83B29188 /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; 4D83F06413D6217C0D772C119D940DF0 /* MethodSwizzler */ = { @@ -8348,14 +8450,12 @@ path = Fabric; sourceTree = ""; }; - 4E6BA6CB835499F877E4A7F1514FCC8C /* auth */ = { + 4DDC41BEE5EF7446BC97F12695DC1A81 /* Pod */ = { isa = PBXGroup; children = ( - B6932E5B3FB33A30726CCC21AC9D8021 /* RNFirebaseAuth.h */, - DADD793C127BAD297FC359DA52B8CAC1 /* RNFirebaseAuth.m */, + 36A62BEFF7EB6CB4D7EAD29A3F708E1C /* UMSensorsInterface.podspec */, ); - name = auth; - path = RNFirebase/auth; + name = Pod; sourceTree = ""; }; 4E83550CD2D87DD34D933535D7603C46 /* glog */ = { @@ -8379,82 +8479,224 @@ path = glog; sourceTree = ""; }; - 4F6D92EB5F1D173B21A30425430CB6E6 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - A01D9AC93F25265E70DFB82DB68F294B /* UMPermissionsInterface.h */, - 7F37C83694CD9E95DC016CC53EFB3BD9 /* UMUserNotificationCenterProxyInterface.h */, - 15F0C3F83416333AFE25111C6577CB6A /* Pod */, - 9AFE5D75F8DCAB8727BA36088961E769 /* Support Files */, + 4E9F31892FFE76505FA6CAA7C783E38C /* Views */ = { + isa = PBXGroup; + children = ( + C84E273398627AF9A988343BCCE455F4 /* RCTActivityIndicatorView.h */, + EF9921F47FF3BDE4729BAAA616C80D74 /* RCTActivityIndicatorView.m */, + 1E0135D46DF131834F793B0B429E1533 /* RCTActivityIndicatorViewManager.h */, + E082881CDFED92CBF377AA6C5387CDE5 /* RCTActivityIndicatorViewManager.m */, + C3F3F8C91AC91F1D56DEE2A183B95EAA /* RCTAnimationType.h */, + AF4E50930C881D54C475F4E9E2708438 /* RCTAutoInsetsProtocol.h */, + 9BC60395AFE6474124D409C530940D54 /* RCTBorderDrawing.h */, + 09F77CDD7F7A0108AAF824CA344D662D /* RCTBorderDrawing.m */, + 6AE018BDB38E30FEFA9F2E4E04212C3F /* RCTBorderStyle.h */, + 3EB1C6BBBCFC667C647FDECEC591BA2C /* RCTComponent.h */, + C4AE2A6DA28CCE60ECD1B230FF30E591 /* RCTComponentData.h */, + 9B0AD001626F3DA49488E7AF64CBE2C0 /* RCTComponentData.m */, + 73748A783C6B7DDB36A887E64DDF81ED /* RCTConvert+CoreLocation.h */, + 13FE5B7DC64A6E9F42C8297AE48B1586 /* RCTConvert+CoreLocation.m */, + 8BEFCBA577467637C7DA1AD12DA6F75A /* RCTConvert+Transform.h */, + 9035E72802D369C7C7D38B73340C5664 /* RCTConvert+Transform.m */, + D61ADA0D65AF7B704FDA8AB935CC54BE /* RCTDatePicker.h */, + FD76891E956AFD0CA82E395F8E80D8C8 /* RCTDatePicker.m */, + 30D7C6D1BD3C9423C251D5877B013378 /* RCTDatePickerManager.h */, + 4835F854BEA7430B1001BABA909F51A0 /* RCTDatePickerManager.m */, + AD464DC212D3FA00C00082CE9A4F5116 /* RCTFont.h */, + CEFAE0C3CF1D99BECB230114EE412F42 /* RCTFont.mm */, + 9E17215D2FC4543AFE3EEA6E44348E62 /* RCTLayout.h */, + B3071ED7A5495BDF6F19DD820649D418 /* RCTLayout.m */, + F844C20A54D995CE7E93296EC2B64F8C /* RCTMaskedView.h */, + 70F7C71414E7A687F23D5D9F0F2AEAD1 /* RCTMaskedView.m */, + A0F035410C2743287DE4D765755713BB /* RCTMaskedViewManager.h */, + 7138F704A6445B722A1765D2C6BC981D /* RCTMaskedViewManager.m */, + 3F11D64FD1C54C0726523DA779674B67 /* RCTModalHostView.h */, + 6EAD38E56CBCD12D7D253B809C78322E /* RCTModalHostView.m */, + 556F58FFA119B290E284AE0FCBE98DE1 /* RCTModalHostViewController.h */, + 7F7156A23284105AA7C4121711BF1FFC /* RCTModalHostViewController.m */, + D0FE01A8134FB0C1F55977D55508FDED /* RCTModalHostViewManager.h */, + 78321E51A4A540D13D5D8BD2DA2809C9 /* RCTModalHostViewManager.m */, + 79DAA100D0372D6D695BD1BEE90566CB /* RCTModalManager.h */, + FAEDC38D7537173AC92AC923861A2862 /* RCTModalManager.m */, + F56003BB4ABF3AE50FC4F26A90B5C09F /* RCTPicker.h */, + 2E4BFE364D0D3C25C27CA651D3B09427 /* RCTPicker.m */, + 34B29BD9D3C6B94CE636A7EF39030F71 /* RCTPickerManager.h */, + 5503724E3438B0679C3F7E4CB8DBFBEA /* RCTPickerManager.m */, + B6AA38713255D261FDE99A974E08E031 /* RCTPointerEvents.h */, + 40CED93B20D9FFF39C80A720C8A38A57 /* RCTProgressViewManager.h */, + 0F49FE03700918174AEC164794F2D225 /* RCTProgressViewManager.m */, + C72004FD57292D2E614494D7D9C54E2B /* RCTRefreshControl.h */, + D3D7687A63CDDE8D8CD1FD27BBA35203 /* RCTRefreshControl.m */, + 986F1311D788AD1A5E83C73246AACDC0 /* RCTRefreshControlManager.h */, + 558915603AF11306686E59F03CF0521F /* RCTRefreshControlManager.m */, + ED454F9E93C36A82D19796302057A7E7 /* RCTRootShadowView.h */, + 40178D2B0A8A63A48E68DBEFF053B4B6 /* RCTRootShadowView.m */, + C1ABCC63C6117F6139F5E754A885B208 /* RCTSegmentedControl.h */, + 8827799CD3622DDFB04521A953779AE8 /* RCTSegmentedControl.m */, + 152B32D40B0A4AC5A72EA9301B83D89B /* RCTSegmentedControlManager.h */, + F661E60947B4E42E1D50EED00F0407DA /* RCTSegmentedControlManager.m */, + 9046263A87404FE2FA089678B448B3E5 /* RCTShadowView.h */, + 9873371C2104E1C78F4B2935D14AF9E1 /* RCTShadowView.m */, + B532B085F7B45D6DD72D8BE49A120916 /* RCTShadowView+Internal.h */, + ACB1D44F71FFDD55AC7EB6BAD87B6508 /* RCTShadowView+Internal.m */, + B5C3844CC61A7B52C6EF376DD18B477F /* RCTShadowView+Layout.h */, + F758C0842CF42881EE9090A2D7CF3353 /* RCTShadowView+Layout.m */, + CC78F64D3E00349B2ED22DBCBDEA320B /* RCTSlider.h */, + 66E4AF841D8F2BF5B4E1B7A3BB51EBDE /* RCTSlider.m */, + AE4B7870CAE91B35878C676011311F07 /* RCTSliderManager.h */, + 4687F4AD27605F70F42D7F708F1D4379 /* RCTSliderManager.m */, + 9D1DF51A2C2AA7F4AFD2F3DF605779A8 /* RCTSwitch.h */, + 4EA99B2E10162FD11E167103AD76752C /* RCTSwitch.m */, + 170D4C06361FEB7268E6CD7CB57E7C16 /* RCTSwitchManager.h */, + 84D33921BE9769249475C3A87ECB9B0D /* RCTSwitchManager.m */, + 22509F6CAC0545EE9C92B24406594D33 /* RCTTextDecorationLineType.h */, + 5666A5BA1FED758B8028AC4746EDF849 /* RCTView.h */, + 423FA01DAEC6424828A0992FEBD3F2F3 /* RCTView.m */, + 70EE458F7665755CBE7A61B543F829E6 /* RCTViewManager.h */, + 6F3BC7AFDBB9E36B2866BEDE84B27639 /* RCTViewManager.m */, + C468F235C6359CF14498360F3EE89F37 /* RCTWrapperViewController.h */, + 5847EF3E88F8586EE1EED4D1B5E6FFAD /* RCTWrapperViewController.m */, + 4A1AF04F5E4E9C6FE295E0CEE224AB63 /* UIView+Private.h */, + 43E400FA303B245EEC239368D0F13B7C /* UIView+React.h */, + ACE0C766FDC8F386168B1F1043432A35 /* UIView+React.m */, + 5B5AF73C78732C7E6BC1A98FCF67E032 /* SafeAreaView */, + 69C3D02941331BE7E90F01197D15D598 /* ScrollView */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = Views; + path = React/Views; sourceTree = ""; }; - 50E1DDF837F8D50DE5EB2D58B92FD20A /* React-RCTNetwork */ = { + 4F490A99B0D7E8C0D51BACA682B7E4BE /* Multiline */ = { isa = PBXGroup; children = ( - C48C4E8A17341434A3CB157CED4CA93E /* RCTDataRequestHandler.m */, - 03741CDD38C3E8BE05FB21A3997FC0DF /* RCTFileRequestHandler.m */, - 1E5B69B58243A758FACE527D5002E5E3 /* RCTHTTPRequestHandler.mm */, - 63E35ACD97B399AA544D30AC6DF3FACE /* RCTNetInfo.m */, - 8B8C893A393FDB571F438043774B20A4 /* RCTNetworking.mm */, - 0A695B08EA87FA1103D656D40A947067 /* RCTNetworkTask.m */, - 611A7B11D3CE81F67B99D73FD3AD70B6 /* Pod */, - DD26B56257C905DFD7318724FA399189 /* Support Files */, + 8DADD905867794EB8BCD2EBEA004EBBC /* RCTMultilineTextInputView.h */, + 58CBABEC94E70081AAEE2424463752F8 /* RCTMultilineTextInputViewManager.h */, + 04A0B811CAB29369C222BE3D98E2DDF9 /* RCTUITextView.h */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 51A851DF9BB4A2A85756E8061DA6067E /* decode */ = { + 4FA03511063E19F05F4056F42344EBB9 /* Base */ = { + isa = PBXGroup; + children = ( + EE8F86CB1A6A99E11E3604FB3EED2811 /* RCTAssert.h */, + 316CD5DF8063442746D2DA9064B0EBBE /* RCTAssert.m */, + DF9CEE916A7CB9AA263794699B5A2EA1 /* RCTBridge.h */, + 7FA68F18A14101923CA3305B869081B3 /* RCTBridge.m */, + A40EF82C56217F0738FD4B01182B1FE6 /* RCTBridge+Private.h */, + BE0103F3DA1BF440C6C9AB5CE797E13A /* RCTBridgeDelegate.h */, + A01ACBA98CC707F86EAF5590BB456FBA /* RCTBridgeMethod.h */, + B1FF2AC40395AD4A4C1BD974D62A21CE /* RCTBridgeModule.h */, + ADA995225964E165EFD31F85A2E16E27 /* RCTBundleURLProvider.h */, + 133155EAE646F5287D3A95970889BA11 /* RCTBundleURLProvider.m */, + 9087A343EAD796B5EF7708A9AE478E27 /* RCTComponentEvent.h */, + E596BE4F55ADDB5AFFEC47697DD5A142 /* RCTComponentEvent.m */, + EF7F636FEBEA23A9F4137BB9AC4BDB57 /* RCTConvert.h */, + DF32F01EEED52B2EEAF17A10F226FDC6 /* RCTConvert.m */, + 75ED6A2FE645B4C2CE9C0CAA112C005E /* RCTCxxConvert.h */, + 07DAB8EC81730CD97DB2B6C1AA675CC2 /* RCTCxxConvert.m */, + D4A7BF4513B33FA0D8756475FB480194 /* RCTDefines.h */, + 9EC3DBBA6E2E7BA421C6B0182A7246C3 /* RCTDisplayLink.h */, + C490D848F8DFB508E94CD6FE5DCE7754 /* RCTDisplayLink.m */, + 23600A44329F9568F208F52F10DC0EB2 /* RCTErrorCustomizer.h */, + 2EC40F160B7A2931915500E5AE27872D /* RCTErrorInfo.h */, + AFCE2E8D52457C0FA404D519055D555A /* RCTErrorInfo.m */, + 6B7BC4A3AB982847EE799E6134804887 /* RCTEventDispatcher.h */, + BEA14F6F6DF113FE70057996FA76C819 /* RCTEventDispatcher.m */, + D0C1F8FAD362FC436D035E3E4721D715 /* RCTFrameUpdate.h */, + D71097868824A10B6E5D6025B9CE5C13 /* RCTFrameUpdate.m */, + C25D34BC5BD12F75E17A5CDCF0EECBB4 /* RCTImageSource.h */, + AE3CB43D8CCEBF1F5B8D6F9D6F3CAC26 /* RCTImageSource.m */, + 9758E3F67028E745B7EFD69C3C0B0AF4 /* RCTInvalidating.h */, + 69021CD0329E9C6EA7DF13D36EE6AE17 /* RCTJavaScriptExecutor.h */, + 1458E4E4EAE7B330DD86A82D306C54E5 /* RCTJavaScriptLoader.h */, + 0048D36470E53B5FF8A46C8A01CC8EDC /* RCTJavaScriptLoader.mm */, + 3F67F1AC6F5CF2DBC46147151813B627 /* RCTJSStackFrame.h */, + D67B7CD545E3FB0BEB3931F8B928AA31 /* RCTJSStackFrame.m */, + AAEF3D1F614129815AC3A6D26B1127C0 /* RCTKeyCommands.h */, + 4F7B20942FDA996EE4CDC0EFED918B26 /* RCTKeyCommands.m */, + 0BB2579ADEE7C759DE9786F9C48BF1B2 /* RCTLog.h */, + 36C1854B287AFFB26744246A35457328 /* RCTLog.mm */, + 4ABED4B6A40DC160B75C622BC6970884 /* RCTManagedPointer.h */, + 0AE2390FAF9D6C096BDAAC31A97CC854 /* RCTManagedPointer.mm */, + 36FC33777B596CE2E3B8C419C6C37B5B /* RCTModuleData.h */, + 6A8094FB9C0DB2FA0F33E45E5CBA6CAF /* RCTModuleData.mm */, + FBCA47BDDC923B7EFAA1A48587713D07 /* RCTModuleMethod.h */, + 4F9B8D49D7836C792AD1829FBCABE7C7 /* RCTModuleMethod.mm */, + 18327D94E3FECE2CEC5A97BE593BDDE7 /* RCTMultipartDataTask.h */, + 5F7B3CE5659EFC4D1B944B572AE0A047 /* RCTMultipartDataTask.m */, + 73E582A85DD07279E40A4F9CFE495665 /* RCTMultipartStreamReader.h */, + AC535588D6E1BD18ED100CDC4973D51A /* RCTMultipartStreamReader.m */, + C97AD60F608DA260967F6C6D51228FA3 /* RCTNullability.h */, + 10C411D3236565B3A06B8A05735867DA /* RCTParserUtils.h */, + BA191249F4128BB2C5BBD28AEC3714F1 /* RCTParserUtils.m */, + 3F0410A5C14A0972819B5EC2F90D23E3 /* RCTPerformanceLogger.h */, + C5697EC5539A94D88DFCA46BC4FAC53D /* RCTPerformanceLogger.m */, + 6C6CF259A44CF9DF80BFD89DC5907AC4 /* RCTReloadCommand.h */, + 02E1D4C0A7F385C24A1B699EEB7C119A /* RCTReloadCommand.m */, + 10ABDC36FF69BA3A8700170692F89B6C /* RCTRootContentView.h */, + 9B5CC34B97248513D9C582B86D266F4F /* RCTRootContentView.m */, + 0DE5E34FE8EE79376EB837070EECF228 /* RCTRootView.h */, + CDA25FAFFD8601D819EDA22C11846BAD /* RCTRootView.m */, + 3F9253965AF41E2F212F66DCE9B0591D /* RCTRootViewDelegate.h */, + FB3123A952F455F3BA8BB9C13899B78C /* RCTRootViewInternal.h */, + FB7A54F3586E2E3E3689005870160DE4 /* RCTTouchEvent.h */, + EBF847F06E3B1135F4A59B491BE49CDC /* RCTTouchEvent.m */, + 3CBDE4657D6A5AF70D5945711059E3DD /* RCTTouchHandler.h */, + 98F75EFC7CE2E08B668461CE1F083CDB /* RCTTouchHandler.m */, + D9D72929B07675E8D75FB35FF71C2E33 /* RCTURLRequestDelegate.h */, + 98D8ABA72F0E8855B0F38E6EFF24C531 /* RCTURLRequestHandler.h */, + AAC9B40BAD88705271E4912C77E2E865 /* RCTUtils.h */, + 61AFC53D38AE61A9FBB42B58F86B0A7C /* RCTUtils.m */, + A0796802932A3DFC4FB3237E1E18425E /* RCTVersion.h */, + 7E6F52EA4F16924172A07F5D50747553 /* RCTVersion.m */, + 8ED4271184378A662C5899FDD8424B61 /* RCTWeakProxy.h */, + 50CF51CD8F739AF49732B92F8AF4177C /* RCTWeakProxy.m */, + 00E8988B0DB46B73F643101C75E090B3 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 500901F722FE2BC2EB9467F58770F86D /* Pod */ = { isa = PBXGroup; children = ( + 906608F36838AE9FB4DAF3EA0F93C1C1 /* EXWebBrowser.podspec */, ); - name = decode; + name = Pod; sourceTree = ""; }; - 51B1C4EC03D39BCC47BBF69FB7DF98D0 /* SafeAreaView */ = { + 5184AB391334154A4B55BFE1E9E1B47B /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 712E7E9D6D5EC20B9405BA2FCEA2CB60 /* RCTSafeAreaShadowView.h */, - 66896C98AE9CAB343CADA108564AB5EA /* RCTSafeAreaShadowView.m */, - 2A99B8E12A26047272700D4C96DC2C6D /* RCTSafeAreaView.h */, - 1EDEFC74D73E5585A99482F8910E029D /* RCTSafeAreaView.m */, - 98FC90D7FE55EC2A2B29F7307D6707A2 /* RCTSafeAreaViewLocalData.h */, - 96CF8C5BA9EE37BE6EA08F0BC5944361 /* RCTSafeAreaViewLocalData.m */, - 95236F1C1997E77999E28FC481CE2832 /* RCTSafeAreaViewManager.h */, - E410A15B31656AC6971F3D3B084B743F /* RCTSafeAreaViewManager.m */, + 8D7B66BD42BC878EA51C2BC82B338C1B /* RNDateTimePicker.h */, + EA35C9BA0A713AA410C2F0D77F97197C /* RNDateTimePicker.m */, + 5305F1456CC2A2DB218DE2992B1FEA67 /* RNDateTimePickerManager.h */, + 5B9F406C1C9FB6617BEB005C8E98781E /* RNDateTimePickerManager.m */, + DC49EC89736FEFC41C816E3FEA509BA0 /* Pod */, + DF3F80C167AC9A97192A91E4176FFC20 /* Support Files */, ); - name = SafeAreaView; - path = SafeAreaView; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - 51B7D06CF0F79D4327A9CF786E2C595F /* RNReanimated */ = { + 51A851DF9BB4A2A85756E8061DA6067E /* decode */ = { isa = PBXGroup; children = ( - C272D01BD95A7F1439AFAC27F3C7F3E8 /* REAModule.h */, - 8DC10663C54F93F073F1523793EACC17 /* REAModule.m */, - B484D5F9E15B6E79FEF8D3BD8BB7FF6E /* REANodesManager.h */, - 0C10297C7F04DE00ACECD1B688AC72EB /* REANodesManager.m */, - D5B4E85D4832B9506B68042F9432AB6E /* Nodes */, - 19CB484620D138FA4A8CBA317ECCA3C8 /* Pod */, - 621A457B1EEA79933393A0B1984D5422 /* Support Files */, - 9606CB9C5E6531D811C7FB65B59ACD86 /* Transitioning */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = decode; sourceTree = ""; }; - 5201C6966B77EA1095B5B60F7EB941A8 /* Support Files */ = { + 524D0249EA90DFA1DB9E9DB61EE1E3D0 /* Support Files */ = { isa = PBXGroup; children = ( - 0D7A9380AE8FEC9A05B657440AAAB8A6 /* React-RCTActionSheet.xcconfig */, - 743E39A4070D10E7ECCFD930E77B52ED /* React-RCTActionSheet-dummy.m */, - 4892495932BE1CE8068BEED1CB1A837C /* React-RCTActionSheet-prefix.pch */, + C572D6C900A5E509B5FEA33C4BFF7C16 /* react-native-video.xcconfig */, + 30EA571AC9A610DDE68C8A41286F37F6 /* react-native-video-dummy.m */, + 1B69B9E72831955F1B7FCC4F58931BD4 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; 524D7310F63A08A40E791D96940ECEC6 /* Reachability */ = { @@ -8468,209 +8710,238 @@ name = Reachability; sourceTree = ""; }; - 53424CA96BFC315F097CFBC0AFDBED76 /* react-native-webview */ = { + 52BF1DCAC81CBC11E518816E431F945C /* jscallinvoker */ = { isa = PBXGroup; children = ( - D2635AF6ED610E433DD12BC0E114CA3E /* RNCWebView.h */, - 736D43C55C3596EBAC95DAB6D9A5B191 /* RNCWebView.m */, - BFE02734C9C68F8D9E65EA58B865DD39 /* RNCWebViewManager.h */, - 838D58F01A9F34096C6A6D9A4E2C8DB6 /* RNCWebViewManager.m */, - 77DA376D4A149C74CBB34B2246AEC0E1 /* RNCWKProcessPoolManager.h */, - 1E42561FD25274B8CD626FFA97DCB7E6 /* RNCWKProcessPoolManager.m */, - D5B2A4764793AF404C495E1E90FAC5EC /* Pod */, - BE56B0D729345FA92FB2D3D4A9B4A39E /* Support Files */, + F3A98E2968BEB084F27F587A4C5726ED /* BridgeJSCallInvoker.cpp */, + 1386113097CC1FDE6E2557A4518C1268 /* BridgeJSCallInvoker.h */, + 9B5B403E518E7409481854D121386E9D /* JSCallInvoker.h */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = jscallinvoker; + sourceTree = ""; + }; + 55747659727D105E17D20D60E6089B75 /* Support Files */ = { + isa = PBXGroup; + children = ( + 66E67D54611C3F741EDE2775CC1C74DC /* react-native-notifications.xcconfig */, + 3D162C3557E14886DF5D130C63966C11 /* react-native-notifications-dummy.m */, + BAD395CB9F308A48A79A1EF5C947A910 /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; - 54154AE7257EDB26FFAA01AC73384F5C /* Pod */ = { + 566C7E1FF8A6A7B78424975DD81F5ADB /* Pod */ = { isa = PBXGroup; children = ( - A32ED8DC6E5B1BB1091C55EDA9EFDF9F /* UMBarCodeScannerInterface.podspec */, + FB95115557FF10BFB0F38D95820E0494 /* LICENSE */, + D05EBE847C047974E2167EDED4553433 /* README.md */, + 4C8F43A8B2A5C4AEBFF388B1C1FD7074 /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 568BEB3EB55D8D616055FD979CEFC1E1 /* Source */ = { - isa = PBXGroup; - children = ( - A6276D0BCBD19A041231595A2DDD0DCA /* BSG_KSCrashReportWriter.h */, - 996DF887CF2C60D0FA69A3775D13FAD4 /* BSGConnectivity.h */, - 98513C9F247265E29035FC28FFDADAC2 /* BSGConnectivity.m */, - 99E554CBFD47A5DBE00B42D842BA9D51 /* BSGOutOfMemoryWatchdog.h */, - A1B52FBCF74C5BFE6F174439E1E1E310 /* BSGOutOfMemoryWatchdog.m */, - 25267DB2604CE566026E1F22B8468B73 /* BSGSerialization.h */, - 89229B4A886BA8BB472EC585D9ED59F9 /* BSGSerialization.m */, - 5531FE118FC285029F2319A4A0C952AF /* Bugsnag.h */, - A8220CC9E1DC67335E08E9B0E971E150 /* Bugsnag.m */, - 886796CEDF20A83B0184CFDAD0F61599 /* BugsnagApiClient.h */, - 022BA8466297F4D9B13C5CF55FF192E5 /* BugsnagApiClient.m */, - FD54CDBEF4278CA381AB0E03B28B5994 /* BugsnagBreadcrumb.h */, - B80B5D56226EC314252E94AF85AA7930 /* BugsnagBreadcrumb.m */, - 0A21C97BF219CCE6523969073E46B773 /* BugsnagCollections.h */, - 0516BA5C785D1728D4FB7BF43B9AE36C /* BugsnagCollections.m */, - A5F9C35AC7F2EA43348AE615F1F7E674 /* BugsnagConfiguration.h */, - 608911C3E52CEE0623802BCB68B9AC7D /* BugsnagConfiguration.m */, - 1734573A1FFAF648D3E038462767F3A7 /* BugsnagCrashReport.h */, - 720A8300022B6EED3F587923DCA9DE59 /* BugsnagCrashReport.m */, - 1A2DDEE55A6C71E4E661BEE68007A7D3 /* BugsnagCrashSentry.h */, - 7E251E72A90E1284708697322B5F0686 /* BugsnagCrashSentry.m */, - 764DF824FDB95FD1D3BAB356814EBE4C /* BugsnagErrorReportApiClient.h */, - 72137B6EE09994AA6387B176220EAF01 /* BugsnagErrorReportApiClient.m */, - 331B677103A37239289A28A159B157EA /* BugsnagFileStore.h */, - DA558CB3BEC3C7A92CE9063E5B36F312 /* BugsnagFileStore.m */, - A0C78B1708C401EED5647D6C2FE131AD /* BugsnagHandledState.h */, - 09A9CD6BF3878BDD484FAF1D0C88F75B /* BugsnagHandledState.m */, - 29D0B376D7EC4B81CA519C556FB714B9 /* BugsnagKeys.h */, - 1284BAF15F0362B14FB97344398DD252 /* BugsnagKSCrashSysInfoParser.h */, - F4800FE217F808979C87C8E841605069 /* BugsnagKSCrashSysInfoParser.m */, - 256B4C6502ADBF7F084F9E1423832249 /* BugsnagLogger.h */, - DC20C5F5CAC17952DA0E8720A8F4A8AE /* BugsnagMetaData.h */, - CF387BE93EB6E9CA6ACEFD82F6AC1D58 /* BugsnagMetaData.m */, - CED7956F795BB4B3F702234E8CB630D6 /* BugsnagNotifier.h */, - EE7DEC430284CD7F7EC6768D1BEDF3DB /* BugsnagNotifier.m */, - 9D3FBDCB7C2D40599A440E30D3C76C50 /* BugsnagSession.h */, - 7A2484D5B2BC865802F527875319FFA4 /* BugsnagSession.m */, - FAAA9B1EE222A2AE1EE953558AE9A582 /* BugsnagSessionFileStore.h */, - E927B04D6693CA9C0EF0BEDC75F8EDEB /* BugsnagSessionFileStore.m */, - A4D1E294C29AE932561F3974053E69A2 /* BugsnagSessionTracker.h */, - 510D444C7D882F7FA6C64952160D9B18 /* BugsnagSessionTracker.m */, - 2D4E2165343805BD6AE57C4F2203CA31 /* BugsnagSessionTrackingApiClient.h */, - F98ACC2961642744E6F8EAA770B039B3 /* BugsnagSessionTrackingApiClient.m */, - ACE0FEB094739BAC2BB7241D8B9604FE /* BugsnagSessionTrackingPayload.h */, - CF66AB4F9569D8AAE1EC3C3AFB7FB420 /* BugsnagSessionTrackingPayload.m */, - F9BA2E6BDB61430E49AD9B7B3D271E2B /* BugsnagSink.h */, - 2C9F4B66EE7652E0F2BCC18E113FD5F7 /* BugsnagSink.m */, - 03401FAFF52132A91A038D9A41DF9297 /* BugsnagUser.h */, - E1E4DD31D81AE0E3C64094C4791C5FCE /* BugsnagUser.m */, - 977EFF582A49AE610F599DC18AFF7EC0 /* Private.h */, - CD8AB6A5B57EDC3B869D2DCA94FB3B80 /* KSCrash */, + 5708B5DA29D8876C225B090105B988F1 /* CoreOnly */ = { + isa = PBXGroup; + children = ( + 338ECC56A4A92EB571B4761542C43109 /* Firebase.h */, ); - name = Source; - path = Source; + name = CoreOnly; sourceTree = ""; }; - 56EE96A5F41B7C8109D67BA851E70E5D /* Support Files */ = { + 57B4C13AF33F6D17454F8B89D700F96A /* Support Files */ = { isa = PBXGroup; children = ( - 90A862A2A7763F21D80BFA6F4AF75AD5 /* RNAudio.xcconfig */, - 35308D9DC4CF8DF1F4797C6BCC4D9994 /* RNAudio-dummy.m */, - 9DC98618886B2E6FC929E22836E3841D /* RNAudio-prefix.pch */, + A761313D967005DBA593B9F9E2FB63FD /* EXWebBrowser.xcconfig */, + 542C2C6C4E041D16FC5F65BCA7CFF5DA /* EXWebBrowser-dummy.m */, + 1498C709C92B779078AEA950ED04240E /* EXWebBrowser-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; - 5708B5DA29D8876C225B090105B988F1 /* CoreOnly */ = { + 57C691A1891B683E6EF9663D16526743 /* messaging */ = { isa = PBXGroup; children = ( - 338ECC56A4A92EB571B4761542C43109 /* Firebase.h */, + 1E7BD509DA6643B58855ED3144CF45F0 /* RNFirebaseMessaging.h */, + B3FC9FECE308309CFEDA0657B6E891AD /* RNFirebaseMessaging.m */, ); - name = CoreOnly; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; - 58C8BD1DDDDFF762A773A10B15CE72CC /* CxxBridge */ = { + 589A4425B55B2618EA8B89AA587655DF /* React-jsi */ = { isa = PBXGroup; children = ( - 94DF3758694540156E6543263914926C /* JSCExecutorFactory.h */, - 5269F03BB241F03F3D874F6A711CC3E5 /* JSCExecutorFactory.mm */, - 6D5BD3615CAC29F1FFCB30EAD767F4AC /* NSDataBigString.h */, - 259E4501D1D6650A9B4670C2A99991C7 /* NSDataBigString.mm */, - 6F40BA34FB244DF34C7A74D3B78F64FC /* RCTCxxBridge.mm */, - 444D69041368197ED52BFBE9A90FA6F4 /* RCTCxxBridgeDelegate.h */, - 876DAEBEDEE01F239B3FF5D0EF30330A /* RCTMessageThread.h */, - 3812548294336EDBB96494202AD0DE69 /* RCTMessageThread.mm */, - 3E5524B1A2A7B10ECFEBDFDAC0BAC57D /* RCTObjcExecutor.h */, - 3F3EDBA9C3FD47F489B95DBB5960571D /* RCTObjcExecutor.mm */, + 9E144FD8216517C431056C8AB56A39E5 /* JSCRuntime.cpp */, + 22AEECF0E7FAF915135D3CD08ACAE8A2 /* JSCRuntime.h */, + 0E3D9542E19AD8B526C826FECB85AC87 /* jsi */, + 662C7555AEDCDFBD89B9065ACE6DC4BD /* Pod */, + 1F15BEE4E27B44221A03689700B50682 /* Support Files */, ); - name = CxxBridge; - path = React/CxxBridge; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - 5908013FA18FFD96ABA8CC9E763EB26C /* Services */ = { + 5A80505CC923C77BE5B6DBDE266695F9 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 0EE4E45B140F7B38EAFA76B778C29AD6 /* UMReactFontManager.h */, - 4BD10B6009D40B6E3D6E6B0735226E4E /* UMReactFontManager.m */, - 35DEC5F45A51DC3D386B80E88F297CCB /* UMReactLogHandler.h */, - 0B2652A7D5CA703524DC2E8EB96A11A2 /* UMReactLogHandler.m */, - 01165657A3FAD6941F11451F5E5226E1 /* UMReactNativeAdapter.h */, - 281277198852CBE11C6BC5FDEC40FA1F /* UMReactNativeAdapter.m */, - 3068BE99AAD0D69BD1FED082F7142E02 /* UMReactNativeEventEmitter.h */, - 42E906D709FDA7381D9058890236F110 /* UMReactNativeEventEmitter.m */, + CD9545865447D3EA29F4F23222CDF654 /* Source */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 592D02EC091DB39DF140A1E1F862D2CF /* Pod */ = { + 5AA35265B5CA9728F5792EFCA3742B1E /* Protocols */ = { isa = PBXGroup; children = ( - CB9BA6BED08656465F624874E9DA33EB /* LICENSE */, - 1933D9B70FA4266F8FBFB00C762F6D24 /* README.md */, - 1CB544ED2ED7431E2542B6EBBEF31CFC /* rn-extensions-share.podspec */, + 5F5900B6BE72B694A3F23E322A4E9F6C /* UMAppLifecycleListener.h */, + 758A0D976C7B66A9F730027FB1B32121 /* UMAppLifecycleService.h */, + 85CD6CEA26EA2149C045B78050DDE5BB /* UMEventEmitter.h */, + 15E7E201770E0C51DA76600BB01462A9 /* UMEventEmitterService.h */, + D9F4A62A9ED7CFA44D786F0DF1226B10 /* UMInternalModule.h */, + E686FE56EF5CEC46BF66195FC2C9BFAC /* UMJavaScriptContextProvider.h */, + 7DE7843EC8739E3A31678AABD115CE35 /* UMKernelService.h */, + 019C0E800661744EF0D3438C0676B8C2 /* UMLogHandler.h */, + 3233CA3991ADC282DDC155994E84A82E /* UMModuleRegistryConsumer.h */, + 8F7F6CFFBB5DA88C7B9A3E2CFBFE18C8 /* UMUIManager.h */, + 7D9426D6A7FB61A887D503ADBD24144C /* UMUtilitiesInterface.h */, ); - name = Pod; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 595C2876AD4B1768D7D96FC361774A8C /* Support Files */ = { + 5AC06D0E4BD00E50AC27F1A738EDF9D8 /* RNReanimated */ = { isa = PBXGroup; children = ( - 98186FFD7D98FD7CF4FC31BD0D29EA5C /* react-native-slider.xcconfig */, - FE80D776A22CAAD6BA29A345BC883F99 /* react-native-slider-dummy.m */, - F1381235A5E7EABD9908DFFD58D0BD99 /* react-native-slider-prefix.pch */, + C465C75546851E198789BEF2A625763D /* REAModule.h */, + 7EBDF44A68FBA375D60FFE9543F8E508 /* REAModule.m */, + DF65D00D2E3926F0F65448B95953E2E8 /* REANodesManager.h */, + BE00DA4FA4953A7C98A06C183B9FE409 /* REANodesManager.m */, + D266BBF617FED041725C7DB8C34EC8BC /* Nodes */, + B987258FF064BE4448F1B0F823868E8A /* Pod */, + E3BCD663FDBC63775611F8DD3E615BD2 /* Support Files */, + 2A9B334F7891442C5FC8795C70851FE8 /* Transitioning */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; - 59E09E876A114C6809B61408850ABBF3 /* Pod */ = { + 5AC4395CCD8088A447C988A56E12D803 /* Pod */ = { isa = PBXGroup; children = ( - 340F3FBBB3B2050A6DC67AD92D71D546 /* React-RCTAnimation.podspec */, + 14B5DBFA2F27AE12D683695CC6A0EDD3 /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5A1DA251DDD0CD293A86563887CDEBBA /* UMImageLoaderInterface */ = { + 5B38FA7FDAAC5006075BA24450760E2C /* Support Files */ = { isa = PBXGroup; children = ( - A7F32BF8E14B0D696D73836BC7265AF4 /* UMImageLoaderInterface.h */, - 77912240F883FE15A67722D6415820B0 /* Pod */, - 036F2EACA590D619D2DF57A6D41966CE /* Support Files */, + 442C6BF9F30352725CF6D5AA0170FC26 /* KeyCommands.xcconfig */, + 673E2FF2AD11DB9BE526F5B2098DB323 /* KeyCommands-dummy.m */, + 4A983CF8AC17E84D64C0436AA6007DF2 /* KeyCommands-prefix.pch */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 5B88181B9B141AC864DAAC0DE13453FC /* Pod */ = { + 5B5AF73C78732C7E6BC1A98FCF67E032 /* SafeAreaView */ = { isa = PBXGroup; children = ( - AA874607CB8A8742CC9ACCD04DB8A8D7 /* LICENSE */, - 366F69DBB232725AB1C2B755C50FBA4F /* README.md */, - 6219883BA7D5FFDF1BDB5E612F97315B /* RNDeviceInfo.podspec */, + 969E8C3F5B691A1E16B2076AB59ECCEE /* RCTSafeAreaShadowView.h */, + 030EC38CDEFF41D68FDBC8DAE691C72A /* RCTSafeAreaShadowView.m */, + 0CFC5BCB4620933A2A03665A8B4317C0 /* RCTSafeAreaView.h */, + D4ED23D2A53497958107B386E7127258 /* RCTSafeAreaView.m */, + 69897F67B1CE0D41A709DFC6B8EC563F /* RCTSafeAreaViewLocalData.h */, + 64256F252274D3A8699007081DF39488 /* RCTSafeAreaViewLocalData.m */, + CF72A9ACEA8C2E20997ACC80E819BA40 /* RCTSafeAreaViewManager.h */, + F27A6172A4529BF19BB7F287C544B5D2 /* RCTSafeAreaViewManager.m */, ); - name = Pod; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - 5C0B998AC5076DCB3812AF37D0F8AAEA /* Pod */ = { + 5B8EE0ADD8B7C7105D513EF5238A9751 /* Pod */ = { isa = PBXGroup; children = ( - 3E11C981A1BEB01F4F3A5346D4D22292 /* UMTaskManagerInterface.podspec */, + 2B17E3BE35B17FB8CE516DE9EA62BE2F /* Yoga.podspec */, ); name = Pod; sourceTree = ""; }; - 5CB719A70600D93194A80B9A22235BC9 /* Support Files */ = { + 5BAD32AEE7F380848A3ED8215D898C98 /* Support Files */ = { isa = PBXGroup; children = ( - 8E2E495626104817BB58C7343494EE1D /* React-RCTText.xcconfig */, - B0D482449B83B8967059DB4231B9531A /* React-RCTText-dummy.m */, - 5670A2144F9A5C801A835F462AECC3AF /* React-RCTText-prefix.pch */, + 3FC26F772864A9B9CAB72B4AA4920881 /* ReactNativeART.xcconfig */, + C58390A83AB01A7454861AC7F511E242 /* ReactNativeART-dummy.m */, + 3D8ECF7DC7D7DE7D2C815B57EBA7BE8C /* ReactNativeART-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + sourceTree = ""; + }; + 5BEF79FD74E5AE114A88A6068A617BE9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2810FE8C402902684E42F86B061B20B2 /* UMCore.xcconfig */, + 69319F03CE5E5C62BB0E8F87AC0D27EE /* UMCore-dummy.m */, + 6EC0281875AB169A95463DCE7B616CD3 /* UMCore-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + 5C286EA110E5FFC66B035705F592371D /* platform */ = { + isa = PBXGroup; + children = ( + CAA493CC1FF46313924D4667DD07EF19 /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 5C562902C115D5EDB87121316231717B /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 9F5FB068E6579EC439F40174681E0C88 /* JSCExecutorFactory.h */, + 8C8327DC370B5B24F3945529C1786252 /* JSCExecutorFactory.mm */, + 41EFB624DDACF745DCD4B1F2D9425193 /* NSDataBigString.h */, + 97C73D35C3F8342122E3D4A1B8345EF9 /* NSDataBigString.mm */, + 0E2DD79F3185FA2FC168B3994A11E0CD /* RCTCxxBridge.mm */, + 982723DF0EA78914275B7343D58C2F6C /* RCTCxxBridgeDelegate.h */, + 9D37813C41CC038BF57E7CD6C0138D43 /* RCTMessageThread.h */, + 45A90A1095F0EAA8DA0CE39F826759EE /* RCTMessageThread.mm */, + 4975D25D641388661ED009D8D308059D /* RCTObjcExecutor.h */, + E284D6FA97B9F53973F4EB270D42D492 /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + 5C74FB555B4FAEA2F47E36601407CEAA /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 37F34983C5F8CA9DF6901B6AAFB41865 /* RCTVibration.m */, + 48AB9742C8222728F55DB65ECF4DB387 /* Pod */, + 27598BEE044A767AEB2CB0E389AF8C7E /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + 5CA1631F0A08BAB0BF17CE2F20E8D1C2 /* KeyCommands */ = { + isa = PBXGroup; + children = ( + B8957262993233598CD4806BC13EE726 /* RCTKeyCommandConstants.h */, + B3C0443D7BD72020F140C3CFC024099C /* RCTKeyCommandConstants.m */, + 8FC6E49F6394BC3947789CDE321BDFE6 /* RCTKeyCommandsManager.h */, + 12D6DDF0809405EC84AA186265E7476A /* RCTKeyCommandsManager.m */, + B22683D0F4DBDE4F2DC158D42FDC1429 /* Pod */, + 5B38FA7FDAAC5006075BA24450760E2C /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; 5D5E0FE32BB74DFE4D34627DADD93C95 /* FirebaseCoreDiagnostics */ = { @@ -8687,91 +8958,84 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 5F57D6C67D99D9305AEFB311A2F9C413 /* UMFaceDetectorInterface */ = { + 5DEB1C62C3743C50B0ACD3EBFF1759B4 /* perf */ = { isa = PBXGroup; children = ( - 0EC6E6C4EC9FFBFBA93007ADB224A492 /* UMFaceDetectorManager.h */, - 439BEE50C5E3C1DF69A864C97AF488DD /* UMFaceDetectorManagerProvider.h */, - 2DBD5F2454E3A2A930640F71C1D2C898 /* Pod */, - BE13A37C3B1A58DE9956A65F7CD5B7E8 /* Support Files */, + 0DD3B947B1CC3C77423B663874CA0A2C /* RNFirebasePerformance.h */, + 82325A477E75BADD23CB0A88F2E29306 /* RNFirebasePerformance.m */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; - 5F90430586CA31CD6F7158DA47BCFF50 /* mux */ = { + 5F07894D6A20CA111F8C89846A6330CE /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 0F8EFB6551B10AE3A44E03B9462574B8 /* anim_encode.c */, - 51E14E8D70831052A1B75375D21618B9 /* animi.h */, - ACB9C9B7C028DDBC2B0FBEB2D1EAE8D2 /* mux.h */, - 15B09F7F9121E23D66CFB7EA2FDF3E2B /* muxedit.c */, - 661B96714A028FF3735AB243B40A52F2 /* muxi.h */, - 8938B320492783985358B1EB49BD2B5E /* muxinternal.c */, - A4AFF26A82F62EE0683FFFB913D9DE76 /* muxread.c */, + 7BB8B9D9FF1D265B60688407B6F2A7B1 /* RNJitsiMeetView.h */, + 53CAA23FA23F0C7E1DF5C9751B02D722 /* RNJitsiMeetView.m */, + DF023C46434A618EA273DA8E3F8C49B1 /* RNJitsiMeetViewManager.h */, + CC23577415A061586DE6BFBE1115BFE0 /* RNJitsiMeetViewManager.m */, + FB4DE46B8E35D2727F267F58F96B871B /* Pod */, + D3A37211E2B21BE30AF46FD504AE2029 /* Support Files */, ); - name = mux; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - 611A7B11D3CE81F67B99D73FD3AD70B6 /* Pod */ = { + 5F75B08B044CFAA6B52A18BDF1162CAC /* Pod */ = { isa = PBXGroup; children = ( - 8BA82B07B02A0CEF2EC536AC30E823C5 /* React-RCTNetwork.podspec */, + 08323B44348E91C55325CF7C2C0C8140 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 619C063FA9711E324A4F6F888BE0CBEE /* functions */ = { - isa = PBXGroup; - children = ( - F5CC6C18F9D85D5EE60E7881A52C8F50 /* RNFirebaseFunctions.h */, - 0D848F68395B70D6462D3770923C28EA /* RNFirebaseFunctions.m */, - ); - name = functions; - path = RNFirebase/functions; - sourceTree = ""; - }; - 61D3F3688835225B54E07DC6CC5A9338 /* Support Files */ = { + 5F90430586CA31CD6F7158DA47BCFF50 /* mux */ = { isa = PBXGroup; children = ( - 1454EEF0AE1533254C943C167301BF1A /* react-native-notifications.xcconfig */, - 1C63FA7C1210846B888831F24CF9756D /* react-native-notifications-dummy.m */, - AE8759793107F38259604086AD85C3CA /* react-native-notifications-prefix.pch */, + 0F8EFB6551B10AE3A44E03B9462574B8 /* anim_encode.c */, + 51E14E8D70831052A1B75375D21618B9 /* animi.h */, + ACB9C9B7C028DDBC2B0FBEB2D1EAE8D2 /* mux.h */, + 15B09F7F9121E23D66CFB7EA2FDF3E2B /* muxedit.c */, + 661B96714A028FF3735AB243B40A52F2 /* muxi.h */, + 8938B320492783985358B1EB49BD2B5E /* muxinternal.c */, + A4AFF26A82F62EE0683FFFB913D9DE76 /* muxread.c */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = mux; sourceTree = ""; }; - 62161291EBF10F4A12711DF9172B3635 /* UIUtils */ = { + 6045ACBE05A93188E10555402DDAC31E /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 0A82C6FF1B2D9D9CB4D0445F8A61A9D8 /* RCTUIUtils.h */, - BCDD9348083B07153E874FCE0A08BD65 /* RCTUIUtils.m */, + E437ED23976C426526DE63DFE45023B1 /* Orientation.h */, + A49BD0CA97A040D95882D2B44D220DE0 /* Orientation.m */, + 16191FB226A8A7FF3E895072D12B9D33 /* Pod */, + FBF288CD093BEDC9DEF46A1D4DDAB401 /* Support Files */, ); - name = UIUtils; - path = React/UIUtils; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 621A457B1EEA79933393A0B1984D5422 /* Support Files */ = { + 6058E9AAA1164A7BD8BB1EB31F980EDE /* RNRootView */ = { isa = PBXGroup; children = ( - 7D3D82F98484D93CEE6F238F27C8A15D /* RNReanimated.xcconfig */, - 9F69D7C608FDD38834B665020063BB79 /* RNReanimated-dummy.m */, - EDE5F3B200E59A109BD7F0DA32A44008 /* RNReanimated-prefix.pch */, + 2FFBEE170794A5DB487CB2774FE9472E /* RootView.h */, + FA564AA83167F3AF33C645641EB17384 /* RootView.m */, + B75B5E579D4F12B47B7CC00DD581C961 /* Pod */, + 42DE498DF847C4C1CC9A6452F7751281 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = RNRootView; + path = "../../node_modules/rn-root-view"; sourceTree = ""; }; - 624C8A18775084C49961A12A6A0E8F7A /* Support Files */ = { + 6088774AC69077C495F2EEA4E2691C6F /* Pod */ = { isa = PBXGroup; children = ( - 70C0B89F860A1A27231D6E32750D7567 /* React-jsiexecutor.xcconfig */, - 840F678749E054ED962E71ABD47D958B /* React-jsiexecutor-dummy.m */, - 918F11BCBE36C21EAD4CC3AAAF21B38E /* React-jsiexecutor-prefix.pch */, + C696A65BE0557521F371467856B99ED4 /* LICENSE */, + F1A64FAB27479F2FD6C329BDE02733A4 /* README.md */, + 0CFD130B2A73F0FB43AB17A23FB6F399 /* RNLocalize.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = Pod; sourceTree = ""; }; 6289CF0766C0E62D4976921B805194C8 /* AppDelegateSwizzler */ = { @@ -8786,156 +9050,189 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 62B46BE1CFFB02B3E9F90389CE542960 /* UMFileSystemInterface */ = { + 62A2B1EDD4BD93A6D10C27B2C235DF56 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 7AD211281D0C8D968F13A0FE65B7C5A2 /* UMFilePermissionModuleInterface.h */, - CF05EEDDE1F42BEBDED47A1E90BF6E72 /* UMFileSystemInterface.h */, - 1FB878427BDDA672E27ED1F7FF47BC32 /* Pod */, - 0F54ADE456B34BAD98FA49FE855753CE /* Support Files */, + C309EEE0027919F2FDD4A86918A9116D /* RCTConvertHelpers.h */, + CB880D07B8E49F0D9D486FD8C4EBCB45 /* RCTConvertHelpers.mm */, + 00DD1E17FADBD9970827C980A7A23A11 /* RCTTypedModuleConstants.h */, + D2A6D1E488F8616F877E6473D6DA102C /* RCTTypedModuleConstants.mm */, + ABC2566CE593935445907D2B5F0B40A1 /* Pod */, + EFAF8065AB31B7CC35A23E6AF1ECDF3C /* Support Files */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + 62D511CAAE93578DB3C9BCF27814DDBB /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + F6B26AFF04F1FEE26DC55FE531D0C411 /* BugsnagReactNative.h */, + 69469A9DF3E2863175A9296586E7CDA5 /* BugsnagReactNative.m */, + A29670C1EEBEB28F182E970D10358F56 /* Core */, + 21E1DD8F6DAC381FB67443355ED63826 /* Pod */, + 318F88C03A8873EBE76986FA09EA9C09 /* Support Files */, + 6462373880E7558D68F4776314855B7D /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; - 62D15A3272A6DC0785A240F2BD74849D /* Pod */ = { + 640B166BDC544391DBD97024C97C1D47 /* Pod */ = { isa = PBXGroup; children = ( - BECCD52E50BAC2B68DE53D8919E02ECF /* React-RCTSettings.podspec */, + 4DA8B3C5660C6300CF4DBBF9B59882A6 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 632DB00B21BBAE8AE4875273C3426981 /* Support Files */ = { + 644260B13E5E0D69EC6B9E9BC63A2E4D /* firestore */ = { isa = PBXGroup; children = ( - 732AC42D7A5B7B4AF72D1F9811321660 /* React-RCTImage.xcconfig */, - 78C9E61EDC0117816DC79B10E699FE24 /* React-RCTImage-dummy.m */, - D818A63670A485270216279045A21859 /* React-RCTImage-prefix.pch */, + C566B6EB9F57FA3C87E707D6D74B94C6 /* RNFirebaseFirestore.h */, + 48B7736E3C557317C8AB51D9B3EB69D3 /* RNFirebaseFirestore.m */, + 6691E96B148B09DF302684A500CA3A80 /* RNFirebaseFirestoreCollectionReference.h */, + 40490EA85C4333BDBB5F0815E15C37E0 /* RNFirebaseFirestoreCollectionReference.m */, + 99F8EF5E7EB91D7D592579424BA23CC9 /* RNFirebaseFirestoreDocumentReference.h */, + AB8EC5CC4960BD59FBC4B1EA9F4E461F /* RNFirebaseFirestoreDocumentReference.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + name = firestore; + path = RNFirebase/firestore; sourceTree = ""; }; - 63913E99E74C3627E744C47380151190 /* Default */ = { + 6462373880E7558D68F4776314855B7D /* vendor */ = { isa = PBXGroup; children = ( - E7CB671DF683F7F86D44CE09C5A821F2 /* Base */, - 58C8BD1DDDDFF762A773A10B15CE72CC /* CxxBridge */, - E77BE94020C5D62DE4F3D9BF3DDEEE7E /* CxxModule */, - 77BC81BEC556CD249D82BDD1D8172420 /* CxxUtils */, - F51AFC94FDE360160AD16BAACB020124 /* Modules */, - D47CFE041834F121F1DD83A6A69E5F84 /* Profiler */, - 62161291EBF10F4A12711DF9172B3635 /* UIUtils */, - F8F319D0B09352C226887A9022796F2D /* Views */, + 5A80505CC923C77BE5B6DBDE266695F9 /* bugsnag-cocoa */, ); - name = Default; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; - 64610D741B10BDBC22A47638D732AA66 /* Pod */ = { + 64FFF11AF8DCBC4D472D9DA2A15211B4 /* Support Files */ = { isa = PBXGroup; children = ( - 279A8F56A1C6FA393FEE409180A42353 /* React-RCTText.podspec */, + A7C79A7C3E9D40D9FFAB49F0F16F188D /* React-RCTActionSheet.xcconfig */, + 9BE8C08641A20E76AF3548379EDC8CE4 /* React-RCTActionSheet-dummy.m */, + E6D782F825647D8B8375940211AD8B6E /* React-RCTActionSheet-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 6512E9BF7C27EC6989B693509EC07285 /* messaging */ = { + 65045770EAD7CCAF8352A6B400E3CA7F /* turbomodule */ = { isa = PBXGroup; children = ( - 8BDC33C800F1575A055B922793143317 /* RNFirebaseMessaging.h */, - 9E10B0FA15A9C3809484C33493DA9F7A /* RNFirebaseMessaging.m */, + 69E9A97973E0258CB3C2C89F4AC69982 /* core */, ); - name = messaging; - path = RNFirebase/messaging; + name = turbomodule; sourceTree = ""; }; - 659BEF6B87732C30818F7EC4C78FB9F1 /* Support Files */ = { + 65F540AC66CE29D8B89CBBA774761EC4 /* Support Files */ = { isa = PBXGroup; children = ( - A5290CB5EFEBBEE577022209969A594D /* React-RCTSettings.xcconfig */, - BADCD5F30A21049153976FA2144BF12C /* React-RCTSettings-dummy.m */, - 72F55CF0EA367B6E885B001290A7C270 /* React-RCTSettings-prefix.pch */, + 12F9685BAA8BDA1D4DB413B7DEC5918B /* react-native-webview.xcconfig */, + 1F21DA5637D8FEC1E1EC72FD36D79B52 /* react-native-webview-dummy.m */, + D0370B2D3A7E017E08DC3D7BA3297F9E /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - 65FCA36C4C78F9A2AAE588A23CC7F426 /* Singleline */ = { + 661CF1E4823F8EE9F35BC418B992E7E1 /* Pod */ = { isa = PBXGroup; children = ( - 3A0E24054AE40C9CD36A0E9F54F63186 /* RCTSinglelineTextInputView.h */, - 5853282F8FFB3FAC55D2507B207565D9 /* RCTSinglelineTextInputViewManager.h */, - 4DE9D9CA74146F1A9618FB3ACF57C64B /* RCTUITextField.h */, + AC9D76B5565CA05C6BB43B1C6121CFA4 /* React-jsinspector.podspec */, ); - name = Singleline; - path = Singleline; + name = Pod; sourceTree = ""; }; - 662E3DD11CA9F1E2382BF270B4B4BB60 /* fabric */ = { + 662C7555AEDCDFBD89B9065ACE6DC4BD /* Pod */ = { isa = PBXGroup; children = ( - CEA5722C1AA20FDD3F80649264DFA04B /* crashlytics */, + 7042D27E266BDFDA19BA0125EBBBA32C /* React-jsi.podspec */, ); - name = fabric; - path = RNFirebase/fabric; + name = Pod; sourceTree = ""; }; - 66D78A72417B2FBD13EE56752C600343 /* Pod */ = { + 68687CBD224F93745A2D421189504950 /* Pod */ = { isa = PBXGroup; children = ( - 5679EDFDAD5E93751635C0386EB207C7 /* RNFirebase.podspec */, + C363DECC5EDB5C45A63451DB285AA261 /* advancedIos.md */, + 2DF77C6162EE2FA7C657727DE6EDADE4 /* installation.md */, + CDDC31E171D1B1ADB9F67AE18E3CEBD2 /* LICENSE */, + 0D064EB54D8B6C62A259E4FF78DEA4A2 /* localNotifications.md */, + 0902A4DF2D5AA54E895AD57345B34929 /* notificationsEvents.md */, + A7F10EEE384072DAEC822B4C1EC97BB8 /* react-native-notifications.podspec */, + 415888839FC90D55328208C78454E68A /* README.md */, + 0DE5F0559E7ACA3A6996EADCDFEC7DAA /* subscription.md */, ); name = Pod; sourceTree = ""; }; - 67121A263CAA936C9665C5654E4651C2 /* UMCameraInterface */ = { + 68C27C7FD7A70E1CEC24EC5F7705E18C /* UIUtils */ = { isa = PBXGroup; children = ( - BFEFD9A4553F9D44ED0D9387ED59EA82 /* UMCameraInterface.h */, - 18A2AA6BB10D2099A91AF6A39CF5F5D0 /* Pod */, - 23CB0662A92C37144694C1C75B0EB016 /* Support Files */, + 8AEFD94BD06B3B9C73DD29579ADE16D3 /* RCTUIUtils.h */, + 43C78A7B765EEBC4F79BFCC653786878 /* RCTUIUtils.m */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 6740EB933E25F1C27586C5D630384494 /* Pod */ = { + 68DF5AE3F8418E1F71234224EA64EA03 /* Filters */ = { isa = PBXGroup; children = ( - 76A7FFFA0B8D5C1B33F48EA3860C5457 /* LICENSE */, - C8965540E6D63AF6A1597D0561079839 /* README.md */, - 957724BAC1001E6E909CBD9ADCC70F84 /* RNAudio.podspec */, + 48319D4EFA7B379179DFB57BB2214E81 /* BSG_KSCrashReportFilter.h */, + BA2C39987E14A691FF9F9CBC45983ADC /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; + sourceTree = ""; + }; + 694A524840EF8BC4BC3CC0D7A88A8B6E /* Pod */ = { + isa = PBXGroup; + children = ( + 11DB17B398F89556A128A8730636AC9A /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - 68D82C2A205901A710077589263A2A9C /* Video */ = { + 69C3D02941331BE7E90F01197D15D598 /* ScrollView */ = { isa = PBXGroup; children = ( - 855D90E68B6207E87B932212D60C4B6A /* RCTVideo.h */, - DE8D63720415AAF8B81D0D5AAC31F353 /* RCTVideo.m */, - 932FA24E79500381ED43D45BF87FBA5D /* RCTVideoManager.h */, - 9DB9B8A955A3D699293827ACB01901FD /* RCTVideoManager.m */, - DDBB9C9E31B5AA6FC31A8701993BCBB0 /* RCTVideoPlayerViewController.h */, - 112FE6CA274DE84DCC9B32ED070D75DA /* RCTVideoPlayerViewController.m */, - 7562E049ADD629B8AE223457C9B2B425 /* RCTVideoPlayerViewControllerDelegate.h */, - AEFCC766316C33AAD2B4654961656828 /* UIView+FindUIViewController.h */, - 02597CDA7BDFD060932D57516110A586 /* UIView+FindUIViewController.m */, + A94FC8265B2A05BF385C7740DDDA27E3 /* RCTScrollableProtocol.h */, + 449428C979474F349FBCA71A58A212E4 /* RCTScrollContentShadowView.h */, + D1170E41A93AAC135601308AA15AB3F2 /* RCTScrollContentShadowView.m */, + 97CC1F39BD6B7A42FC80541F6BA0A436 /* RCTScrollContentView.h */, + D2E5D64282CC7D790DF0D1CD3AC276E8 /* RCTScrollContentView.m */, + AA846A7E972417C6D0F9D749BD466139 /* RCTScrollContentViewManager.h */, + 0DDEBF412DE7E3ED85D2FC7E5E36A457 /* RCTScrollContentViewManager.m */, + BB877402E672F8A003609B814ACF2F6F /* RCTScrollView.h */, + 1BD0242730F72EC571B4E5C64EC03FE2 /* RCTScrollView.m */, + 4E5D8886EC2AEF3B4428AF073B0E19EF /* RCTScrollViewManager.h */, + 837A8379C8855239AA7C291770C26657 /* RCTScrollViewManager.m */, ); - name = Video; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 69BC81389CDC4911063145733AF64FF3 /* React-jsinspector */ = { + 69E9A97973E0258CB3C2C89F4AC69982 /* core */ = { isa = PBXGroup; children = ( - 15640CBE61329EB57ED2567362949E7D /* InspectorInterfaces.cpp */, - FAA936CAA727A4AA5F59E224C1697C1C /* InspectorInterfaces.h */, - 82C2B406036645A46BE6A9D77383B894 /* Pod */, - 80A476F48029D36C38F338FEB2C82BBA /* Support Files */, + B1640597D9EE540D40FF4401209ECD47 /* LongLivedObject.cpp */, + 767477ED4C5F319854580DDB9C87446E /* LongLivedObject.h */, + EC1D9B062B593261912037D96B1D02A8 /* TurboCxxModule.cpp */, + 5FD04D51CE5D0AEB2B519A68E6C3E90E /* TurboCxxModule.h */, + 5900A6B36CAC4D2231B49EC3DFFFB96C /* TurboModule.cpp */, + 07EBE9D2DCD42DF4A6965813483257EB /* TurboModule.h */, + FFD26AD0B6B93ABF61F3644CA78A1701 /* TurboModuleBinding.cpp */, + 2E205DD1A8A9821D013B25E0B64BD027 /* TurboModuleBinding.h */, + B6DAD9C5614BB881D7C20EB48748B359 /* TurboModuleUtils.cpp */, + A13BB77041759D8D682E75E4DFCC1CC9 /* TurboModuleUtils.h */, + 5C286EA110E5FFC66B035705F592371D /* platform */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = core; sourceTree = ""; }; 69FEBD0A6526DA4FC3A18296426C2B93 /* UserDefaults */ = { @@ -8947,97 +9244,69 @@ name = UserDefaults; sourceTree = ""; }; - 6B2138F8688BDB83E41D4BDAB3EA337D /* Pod */ = { + 6ACD22E3AD5DCFDD22F9D359FCE72A03 /* RawText */ = { isa = PBXGroup; children = ( - 942F20A52210EBBF80063CCD185BF50C /* EXPermissions.podspec */, + E6BEC6D2172E395B251077020EC71F68 /* RCTRawTextShadowView.m */, + C53430ED54ED4F3713EBBE6BC4EE8A62 /* RCTRawTextViewManager.m */, ); - name = Pod; + name = RawText; + path = RawText; sourceTree = ""; }; - 6B43DE7AAD3224D701963CD1F38635AB /* Support Files */ = { + 6BFDEC8CF48BCF3BBE35E13756D46F27 /* Pod */ = { isa = PBXGroup; children = ( - 7117E78C426E35F3503896BB53C1081F /* Yoga.xcconfig */, - 4D94E8771CB638313C135DB3C4A5200F /* Yoga-dummy.m */, - 05DC4496E37AD1073A68EEAC52272B35 /* Yoga-prefix.pch */, + 09DB2FB75538C0F7A31861C00809F0CE /* UMReactNativeAdapter.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + name = Pod; sourceTree = ""; }; - 6B61566CD8D4930EDD61DF4EEE6BAB07 /* RNRootView */ = { + 6C25388A9E307A984AFCD93A7242F091 /* Sentry */ = { isa = PBXGroup; children = ( - D748330BFCDB2BCAE3663E9198FF258F /* RootView.h */, - 954F9FB4042B9C5613E655837B5284A7 /* RootView.m */, - 398970515ABB2D4E7169177C947713BD /* Pod */, - 2B9F9C707C1E75C13C1B01C1C0C1F6D9 /* Support Files */, + B8C510B7BD8264A9978428A8ACEFC04D /* BSG_KSCrashSentry.c */, + 7FFC024A324BB2B1560D00D447B2735C /* BSG_KSCrashSentry.h */, + 8BB833DB91F3C3F00F5659F874B8DCF2 /* BSG_KSCrashSentry_CPPException.h */, + C96EFC242C43FBD164324E0B2023512B /* BSG_KSCrashSentry_CPPException.mm */, + 532C9FDDA171E6A5C9D8A0982E1DF37D /* BSG_KSCrashSentry_MachException.c */, + 82EF58F8DD5FC7A85BEFD70ED49A0C48 /* BSG_KSCrashSentry_MachException.h */, + 380FBE2909AF477DCBEEC054550F2614 /* BSG_KSCrashSentry_NSException.h */, + 3F62265AA8BD2F597DD957CB4B42FAFE /* BSG_KSCrashSentry_NSException.m */, + 56C861D69529CAD2F70FF9D59FDD2909 /* BSG_KSCrashSentry_Private.h */, + 3E67050C46585971FBBCBC894D517A84 /* BSG_KSCrashSentry_Signal.c */, + 25D76806A95BD94C3D3A37C4CC2DAAFB /* BSG_KSCrashSentry_Signal.h */, + 06FF23DBC6702815A7D141F51674FF6D /* BSG_KSCrashSentry_User.c */, + 28F8B4F4A03F94AF7D250100CC9ADD78 /* BSG_KSCrashSentry_User.h */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 6BAED4094EB3658D29C43634E6CFE173 /* RNFetchBlob */ = { + 6CC35CE8D9C55C0195267D876162C85B /* react-native-keyboard-tracking-view */ = { isa = PBXGroup; children = ( - 9FB466FCCBCE2213939C0C7FB6BEFCE4 /* RNFetchBlob.h */, - EA33A0E9BA08017FE8FCA14EC8893AE4 /* RNFetchBlob.m */, + 667F3BFB62F122519FB99A3D0251AFCC /* KeyboardTrackingViewManager.h */, + DFA74FC4FDB093E5C8CB9880404E9BD5 /* KeyboardTrackingViewManager.m */, + 811A189C13279895F1162EF2A40D4904 /* ObservingInputAccessoryView.h */, + F250FC3EC3F38D1DCF45F1806BD95F98 /* ObservingInputAccessoryView.m */, + DFF192861FFFE74B020D3D11BA0E279F /* UIResponder+FirstResponder.h */, + C3790B3E64A5743708CDA7AC3A352E19 /* UIResponder+FirstResponder.m */, + E895E9D6F74044A2D72A6F7E43860075 /* Pod */, + C4AEC3EDA3A21F521401FF32E28A5E14 /* Support Files */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; - 6C53A9BEE92CCC7435650508575D7C58 /* Video */ = { + 6DB79FC6826507DC6FFC8D48F763CA1D /* Interfaces */ = { isa = PBXGroup; children = ( - 8E26B4778A2E346310E558D4C7BA06CC /* EXVideoManager.h */, - DEC46DA3B0658B379FC60AEB6EE786F9 /* EXVideoManager.m */, - F1A94A809492A1BA619A085ECB3F74EC /* EXVideoPlayerViewController.h */, - F6C2544F40662DC7D9BAB9A046C7EF0C /* EXVideoPlayerViewController.m */, - E7CDF9715C400A8E198BA0A3AF9B32D1 /* EXVideoPlayerViewControllerDelegate.h */, - CD16FBC9E587ACB91BD74D1E29A9318A /* EXVideoView.h */, - DBABBB14C13E95007EF4229F5005F232 /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - 6CD43C0AAA81A9A9C7E29ACC08BD149A /* Yoga */ = { - isa = PBXGroup; - children = ( - 94E1E757F500D70CCDBDD23688B72E2E /* Bitfield.h */, - 97F85F9B60E9C93E77F44E2CB0645774 /* CompactValue.h */, - 61F603C852ED842BEA31D284324E81AF /* log.cpp */, - 1C19CF08C1B8A9FC1A05A928B035C792 /* log.h */, - 7F3E35EB18A335E7F683CEF8E1E51DA5 /* Utils.cpp */, - 172BC77A90390B1225883519C2201917 /* Utils.h */, - 3DBA4B691ED78F42C1F6204633203B66 /* YGConfig.cpp */, - 76936D115A1C29D524D8187A9156402F /* YGConfig.h */, - C2CDE8ACE04094A27C343B06B9D7E9D1 /* YGEnums.cpp */, - 7D4F9AB6B1E729C0B6BD989B55E05E15 /* YGEnums.h */, - 33ED83296143FA22EDEF12D431300B0B /* YGFloatOptional.h */, - 412EC6AD6957E1AB07590859753840BC /* YGLayout.cpp */, - FD15F10F0F7DA3F97B7507A714576CA9 /* YGLayout.h */, - 5BBADEE8B615E8B44EAD4B6CE5584DB1 /* YGMacros.h */, - 858A831F7A94869D2392B130C501CE40 /* YGNode.cpp */, - 8BBC16EA3A6C090D1477D66570BA76FC /* YGNode.h */, - 7C137E8A620B6800FB646A6A4D436298 /* YGNodePrint.cpp */, - C664F93BAA891AF0FF9EC0DB1F408895 /* YGNodePrint.h */, - 35A2755C977AD6162004E2683BE5893A /* YGStyle.cpp */, - DF9420F89FA08462AE32838455554263 /* YGStyle.h */, - 1797F31304BF85171448F2A45CE72402 /* YGValue.cpp */, - 2AC75DCCD4BEFC147B6C943F2BFF07A7 /* YGValue.h */, - 4106E6108C7F9B186510BB81EAF0AAD4 /* Yoga.cpp */, - 17E17BB23627E1BA02957C5B5995D92D /* Yoga.h */, - A201234272B992046DC33FAEC1DE2DB8 /* Yoga-internal.h */, - 3343CCF050052BD5160E1A99BBD4F1DC /* event */, - FB8DEA0E1AF570BB6DFC2BB2296A4279 /* internal */, - E0A447869E2268B7B72F7BB38E244B52 /* Pod */, - 6B43DE7AAD3224D701963CD1F38635AB /* Support Files */, + 4B068F2251EF317197654560800E894C /* EXAppLoaderInterface.h */, + 8EC873DEE6E3D81E6C3D6F548B7590A7 /* EXAppRecordInterface.h */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; 6DBF468270EF9BED67EFC3A23AB2D361 /* FirebaseCoreDiagnosticsInterop */ = { @@ -9051,64 +9320,65 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - 6E3530BE022BF5654730A337F14CB2DD /* Support Files */ = { - isa = PBXGroup; - children = ( - 692A0BEAB532D50C39FCC91D745FC49C /* EXFileSystem.xcconfig */, - C47099E8F26D854F1EEC3EC8F0C05B5E /* EXFileSystem-dummy.m */, - 8CC78AE1417EB5D10FFAAB9E9AEEA63E /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - 6FBB608DAEC56FD6D16D0713CA4B38AA /* RawText */ = { + 6EDAE35CE76879AA7745EB98E70A81B7 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - C968F4692AE46EBD64F7483EE19B1BAC /* RCTRawTextShadowView.h */, - AC0050F422BD1C7C80671188634CC725 /* RCTRawTextViewManager.h */, + FFCB61056D2A2DE31144CE33220F0B6C /* RCTLinkingManager.h */, ); - name = RawText; - path = Libraries/Text/RawText; + name = RCTLinkingHeaders; sourceTree = ""; }; - 701928D8B1040333734C82F19CA66677 /* Pod */ = { + 6FE4A528147AE758565FD221545A55E4 /* CxxModule */ = { isa = PBXGroup; children = ( - 9616C45C729614D47BE820DC425491A6 /* KeyCommands.podspec */, - 7A8579780CD8BDA7780FD25C558D7229 /* README.md */, + B6A1DC7DD495655A76A0ADE66027B757 /* DispatchMessageQueueThread.h */, + 1706B15B1ED8A8665C6596CF0F53293B /* RCTCxxMethod.h */, + 312143C6EFD4E709F7973078FEA4C744 /* RCTCxxMethod.mm */, + 6B369F72D2E47B69D55228318BEF77D7 /* RCTCxxModule.h */, + 46AFE37F6388C286B8391C9A0E468EA8 /* RCTCxxModule.mm */, + 0A964CDCD9BBFE2A22B9B062F46E3611 /* RCTCxxUtils.h */, + 89DECEC5BA10EB7025185E6B80FEC4FC /* RCTCxxUtils.mm */, + 426FAEF1C0C7577FDF76C49002CAB1B0 /* RCTNativeModule.h */, + 7453FC765B3BE0CACDDC5F0EA1BD0812 /* RCTNativeModule.mm */, ); - name = Pod; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - 71FE971EAB9C5F0BDE5B36480AA98959 /* Pod */ = { + 709185A5AC67E20B0BB9AC5549CECFB6 /* Pod */ = { isa = PBXGroup; children = ( - C97EEAD0486C1F4E2B2861E879578590 /* LICENSE */, - 6CD690B59D3D6AC062CE96402C44A454 /* README.md */, - DB335A2468D50CF10DB8196DD1B219A7 /* RNGestureHandler.podspec */, + 5BCC2E165A8C0C5E57E07B2B56E1F37A /* React.podspec */, ); name = Pod; sourceTree = ""; }; - 724844D04250B49878EA7B0DC4DEE7C9 /* RCTCustomInputController */ = { + 715FB4ED6E27F456AC09171100A87B0C /* EXWebBrowser */ = { isa = PBXGroup; children = ( - B509282D6F3523D9CBFD7208AFCDAE12 /* RCTCustomInputController.h */, - 8D0545F7A645289DBA3A922DAC960EA6 /* RCTCustomInputController.m */, - 30450BB1A1B8370C4B861F726E2B8538 /* RCTCustomKeyboardViewController.h */, - 1AEA55051C846DAF6CF2A29BAD1CD474 /* RCTCustomKeyboardViewController.m */, + 984EA1E705F33650022CBBD03DD3B174 /* EXWebBrowser.h */, + 7F2008BAA06F83FEC23799BE4E7BA8D0 /* EXWebBrowser.m */, + 500901F722FE2BC2EB9467F58770F86D /* Pod */, + 57B4C13AF33F6D17454F8B89D700F96A /* Support Files */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 73F51729EADA8C3C94FDA5D700569702 /* Pod */ = { + 73B14A62FEB10CF2DBB63C07E51CB718 /* react-native-appearance */ = { isa = PBXGroup; children = ( - 5C2ADF7083329363FCBB723970AB368D /* UMFontInterface.podspec */, + 01479C2645C082B6B80D617D5F01F290 /* RNCAppearance.h */, + 3D60AECC0FFD09038D82BB1E68B2F474 /* RNCAppearance.m */, + A34CFCA6CBC9D938E4A04A62F4791E7F /* RNCAppearanceProvider.h */, + 809D7F88930C76D358E1DC90AC941F47 /* RNCAppearanceProvider.m */, + FA536876C2A2AF9664307B7ECFEAA71A /* RNCAppearanceProviderManager.h */, + 4D5667383EEAC7C0FBC98210A1743F3B /* RNCAppearanceProviderManager.m */, + FBDA06D58AB29B3488243C69B97F8520 /* Pod */, + BE77B6D45E0877B51DFA487D2C9B26B5 /* Support Files */, ); - name = Pod; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { @@ -9125,69 +9395,33 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 76AD0FA4BE4EE59A67DF98BA3CF85C01 /* Support Files */ = { + 76629C7951E54BCA4136E3AA31D2CB67 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 6E51EAC008EF7B39A2EDBA5F14D745AF /* RNBootSplash.xcconfig */, - 02511183F0809AE5BC72DB78870C820D /* RNBootSplash-dummy.m */, - 877740F8C7E2BA275F27588AF839B3BF /* RNBootSplash-prefix.pch */, + E5ED82D9706849F2F567FE41A3EF434A /* RCTDataRequestHandler.m */, + 3B295C5BFC6986B808EC09C336A1AB44 /* RCTFileRequestHandler.m */, + C05051A320F925F5FFF777DF97486CCF /* RCTHTTPRequestHandler.mm */, + EA28F8CD09A6D38BD4F0FE8DEBD01185 /* RCTNetInfo.m */, + 3FBAA72966C50526A17418E951C9CEBA /* RCTNetworking.mm */, + 9A3A877FF2E6B17B85590B0509543C22 /* RCTNetworkTask.m */, + 15887A623F47936D5CCEA307821AADD9 /* Pod */, + EB081BEEA4416F7B40D25D54AC643B11 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; - 76B192400F9328BFD386267FF52DCA65 /* Support Files */ = { + 776C367E1448158F2403B1AB02263084 /* Support Files */ = { isa = PBXGroup; children = ( - B5FBCFB75660253D3988D97D13A59212 /* rn-extensions-share.xcconfig */, - 813EF8E8728F6807FC791AA84CB01376 /* rn-extensions-share-dummy.m */, - 85F0BA1E799818CCC8C9D878BB4A5A7F /* rn-extensions-share-prefix.pch */, + D95027C21CDB2163088FC9FD923A4F17 /* rn-extensions-share.xcconfig */, + 90B1F52B1F454638E0627016BCA69CF4 /* rn-extensions-share-dummy.m */, + 921AAEF5A4FB1980C7831B850FF99EBF /* rn-extensions-share-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - 76E4982740E39D568351B47573328D0B /* Support Files */ = { - isa = PBXGroup; - children = ( - 84C2DB33F45684C2910CEF1476050604 /* ReactCommon.xcconfig */, - 9BB72A68FADD29C24BE001A314E12B4B /* ReactCommon-dummy.m */, - 1325EDC71335CFBEE0E5DFF41E89867A /* ReactCommon-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 77912240F883FE15A67722D6415820B0 /* Pod */ = { - isa = PBXGroup; - children = ( - CC10835824649F2419E33363059E36B8 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 77BC81BEC556CD249D82BDD1D8172420 /* CxxUtils */ = { - isa = PBXGroup; - children = ( - E85EA29B7D10E54713877DEE6E8C19C2 /* RCTFollyConvert.h */, - B1481DE0D3013EEF3284860677C09A1C /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - 77D500A026E0C8462559E76C9BCBC4E1 /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - 8C53B8B32A60013C1FFE08E8808BD840 /* Orientation.h */, - 363F26D5D2DF4C8A2054DC4C8972854E /* Orientation.m */, - D68E7A1D69C4CD8EE1204CFBE9E36715 /* Pod */, - D04BDEDED7B8223D6FD9161A6DBCDB69 /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; 7832AD3901A3642E9DA5240FE29E97FC /* DoubleConversion */ = { isa = PBXGroup; children = ( @@ -9215,107 +9449,108 @@ path = DoubleConversion; sourceTree = ""; }; - 79FDE39DF21C444A344FDD54C0C737AE /* Support Files */ = { + 783A0320CCF8B32721BD6610DBF52551 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - D9157AC9BAE95C58196307C25D94827B /* RNGestureHandler.xcconfig */, - 08A87AAA1C5BD52E2FBC34873666C749 /* RNGestureHandler-dummy.m */, - D6FD0BE6FD89A98E3F9D4014F2DA0697 /* RNGestureHandler-prefix.pch */, + 9B4C7CD90F879B29C6DD1487E5572EFC /* RCTDataRequestHandler.h */, + 7815570FA654A6449AB6FC6D4391B571 /* RCTFileRequestHandler.h */, + 6A60ADE3BF08A5523805361E2D21254C /* RCTHTTPRequestHandler.h */, + 9DC31B49E2571BDE3CEDB84B28DE5525 /* RCTNetInfo.h */, + 60911FF1F8A388840484198157C69D02 /* RCTNetworking.h */, + EB07099CCB71AF0E678168B069B44205 /* RCTNetworkTask.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = RCTNetworkHeaders; sourceTree = ""; }; - 7BACE65362F5035D59BF922B0EE8A07A /* Pod */ = { + 7949DA73F5C61A367F6FB11FEF3C0521 /* Pod */ = { isa = PBXGroup; children = ( - 37FC34126325D0813F871C63293D1CC6 /* LICENSE */, - EDDC19E49F1C68FC7A9EFE1656004C9D /* README.md */, - 218D06A629DCF242BE7F1E4EE1820A21 /* rn-fetch-blob.podspec */, + A5D139B53C87A017F84A48EAECB433CF /* LICENSE */, + 1DBBED15B89611831F8A4DA95B21FA37 /* README.md */, + F0DB6163D4B984CAC96C0AD4026C3894 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - 7C200EA6AD19E86DD93ECB927D21D35E /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - 042DB439959923C1AD80F32ACAE3A5D9 /* UMConstantsInterface.h */, - C34CE77F519ADFF11FD1669180807851 /* Pod */, - 9DA58514AAB0D20A4B33FCF116CF7D99 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - 7CEB8F78F0358D94A25A10F4DDC6E4AC /* RCTWebSocket */ = { + 79F6E576C83EC8109FD87217E870FB87 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 3F10E4F82ECCC9C01CC40FDD5AFF1857 /* RCTReconnectingWebSocket.h */, - A512481F655233F8246BBCB59AF590F5 /* RCTReconnectingWebSocket.m */, - 25B9D77B42FEAE3A5C5A6F2C427F1594 /* RCTSRWebSocket.h */, - 580ACC587414B9802EC19A1A030175F4 /* RCTSRWebSocket.m */, - 975FA0E9E7BCC09C378476C99966B7B6 /* RCTWebSocketExecutor.h */, - 1FC28DEE582DBC128838358F4823931A /* RCTWebSocketExecutor.m */, - 6D9E109EFEE82B18E047DD6F88138F12 /* RCTWebSocketModule.h */, - 874F6931152DE68462910E67CF869C91 /* RCTWebSocketModule.m */, + 49D0414802185B4FE7CDBBF860A00BB4 /* RCTAnimationUtils.h */, + 4B52E9D746EF0D3DD9A49A8CBE6E7828 /* RCTNativeAnimatedModule.h */, + AECF4433A2AD5F5A18C5346CF8BD76DE /* RCTNativeAnimatedNodesManager.h */, + D10626F205436A70A5AE9BD6B03B9D7E /* Drivers */, + 2B86D76D50C98BAD775CE65BC94BA3A0 /* Nodes */, ); - name = RCTWebSocket; + name = RCTAnimationHeaders; sourceTree = ""; }; - 7D036101DA155761F37E1B78C56749CB /* Handlers */ = { + 7AC926193AFAE8DF70FEF6151E06820E /* Support Files */ = { isa = PBXGroup; children = ( - 47396539803F6D5DAD6C44517FBCBE7E /* RNFlingHandler.h */, - 5BB74003C0C0C7D47A9ABECBFBF79F10 /* RNFlingHandler.m */, - 58CD34121685C6D6AE7005C060A7045B /* RNForceTouchHandler.h */, - 1B565AC50DFB311DB14EF47A37CF9A63 /* RNForceTouchHandler.m */, - 5844A68D6B3B4D005BCC46ECB0CB222B /* RNLongPressHandler.h */, - 47AC7EF3484B4FBA656D8C1C2EB7BE83 /* RNLongPressHandler.m */, - 9AB32205596E1C54CAD1799582A518B8 /* RNNativeViewHandler.h */, - D645118DFE6FB7C20F4E6C1C6955A1CF /* RNNativeViewHandler.m */, - FEA7897689E9DB340D216C1A8EB94A96 /* RNPanHandler.h */, - 5959AE39C14A8819B5DA39F68FD8CBC2 /* RNPanHandler.m */, - 111BD1D6CC902B06AC43CDB6F8EDB137 /* RNPinchHandler.h */, - 1DC0D5790EF381188B2739066F327485 /* RNPinchHandler.m */, - F6F432392F467FFED0E683F8D259EF2E /* RNRotationHandler.h */, - 5E8B7FF0B07871D9A1C8D316BB50B6AE /* RNRotationHandler.m */, - A287A3A02E0C83C770F7658B4984A1F5 /* RNTapHandler.h */, - 3A2991B86A47D1BB6ED19CC933044BD7 /* RNTapHandler.m */, + 3408483C86C5FC83F26C6296D16EBAEB /* React-RCTBlob.xcconfig */, + BCDA8B40730E825225F4057078C4457B /* React-RCTBlob-dummy.m */, + 3A368D02F5F1945BD559480BE293C477 /* React-RCTBlob-prefix.pch */, ); - name = Handlers; - path = ios/Handlers; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 7DFF06AAD671C0D6087302EF3D3778CE /* converters */ = { + 7C39A8B9C14A97471E5E9DB5A6E470A6 /* Video */ = { isa = PBXGroup; children = ( - AE6DD72BDF5ABF38934986A79E1E2FA4 /* RCTConvert+UIBackgroundFetchResult.h */, - 18643D1C0F9D8AB0C1752850CE848C57 /* RCTConvert+UIBackgroundFetchResult.m */, + FD0E8A669DD48C41347774E827473736 /* RCTVideo.h */, + 4514539C2C0C362A6F990F26F90E28E1 /* RCTVideo.m */, + 6D3356D0654ECCD9F91792A399CBEDE0 /* RCTVideoManager.h */, + 672D35F1B37F73FB06F71BC116EC3C15 /* RCTVideoManager.m */, + A6B0E365670EE8461300952EBBC26EE7 /* RCTVideoPlayerViewController.h */, + 046CED75C001E550AFB9F94D53222FF0 /* RCTVideoPlayerViewController.m */, + 17EDA0CB2B36DDEC0132A8257FD0A4D6 /* RCTVideoPlayerViewControllerDelegate.h */, + 3540C9864A9BA4D74A6A0F1374562723 /* UIView+FindUIViewController.h */, + 9C37C25F4A945ADF194855A7D3CFD188 /* UIView+FindUIViewController.m */, ); - name = converters; - path = RNFirebase/converters; + name = Video; sourceTree = ""; }; - 7E85A690CBF5A8D03A5B0BA99267E30C /* RCTLinkingHeaders */ = { + 7C39E042AF68B539DF732AE394677ED5 /* DevSupport */ = { isa = PBXGroup; children = ( - 03D4C4833101030D0CF0D412FEC21E68 /* RCTLinkingManager.h */, + 60BA70ABB0A5CEE1D278D82385B27A95 /* RCTDevLoadingView.h */, + E45604C26007BD9B5497EA865674F0EE /* RCTDevLoadingView.m */, + 0AEB4E96DEC40AE7082A21584B0293E2 /* RCTDevMenu.h */, + 5A133FD543B1274E44C44D609C59AC63 /* RCTDevMenu.m */, + CA97A1E11835A8EF80ADF1D107049CFA /* RCTInspectorDevServerHelper.h */, + 6352469D352EB3CDFDDF55A3201B6CF7 /* RCTInspectorDevServerHelper.mm */, + 49609DA301B6E3967D8CCA98AF2EF435 /* RCTPackagerClient.h */, + C378C9AACE70EDB586F37D1F5F54EB9A /* RCTPackagerClient.m */, + 74335971DC911411BF969612FC477D72 /* RCTPackagerConnection.h */, + 632D734EBF072B36C92E49CF98712EC3 /* RCTPackagerConnection.mm */, ); - name = RCTLinkingHeaders; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 7EA35AD78FB6DDA008257F95FDF8DD28 /* react-native-jitsi-meet */ = { + 7EA2163D67476FA8466B97974DFBA348 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - EC2570CE7207D22EBABC07C0364E6D2D /* RNJitsiMeetView.h */, - 634B493CBEC263608C0B23096186E37A /* RNJitsiMeetView.m */, - 5A765F8ACED619016BC5A4F78F5CB63C /* RNJitsiMeetViewManager.h */, - 4DF97351CD2CDD8612AB9B48C0BC5E5A /* RNJitsiMeetViewManager.m */, - C39A73AE9BE50B6092967315A9411392 /* Pod */, - 888A3A946034D261FC23CF3EBB6392CD /* Support Files */, + C1E6C26D0A88F1156B17D0BB8344EEA1 /* IOS7Polyfill.h */, + 3616676FA36F77D6CB565DD31D5C3622 /* RNFetchBlobConst.h */, + 11F1813A9D674B4CA2B5BF846AE4A838 /* RNFetchBlobConst.m */, + 917AFCA2801BA90C79B13088F10DF09D /* RNFetchBlobFS.h */, + 3772EDFAB6079CDD709B999FAE9504A7 /* RNFetchBlobFS.m */, + ECDE6F8AF8D623A387BD8F1DEA0C2DFB /* RNFetchBlobNetwork.h */, + 793C439B8C3BA2C4EA8F0D803309BCF1 /* RNFetchBlobNetwork.m */, + A1ACF5E5E35D45C8E93D1A812A4B41F0 /* RNFetchBlobProgress.h */, + 568DCBD7D7766031CA4173F36BA5D2E8 /* RNFetchBlobProgress.m */, + 1FC7C2B1E113D97290E46F1F96539849 /* RNFetchBlobReqBuilder.h */, + A905B1B82C1F6C380AB77151E8D5E078 /* RNFetchBlobReqBuilder.m */, + 521DB349BE450C04573E730D5FF9ED1F /* RNFetchBlobRequest.h */, + CFE50FFC676E29FD9BFB1EA54887CE9B /* RNFetchBlobRequest.m */, + 080769E20FD4D003269F7E3E38835DE8 /* Pod */, + 0C910015B4EDFF901284932B263778F8 /* RNFetchBlob */, + 494756B2A12485678BBEF28AE7D9E7B2 /* Support Files */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; 7EC38910709317D57D76162B4AAAB4A0 /* Frameworks */ = { @@ -9326,16 +9561,6 @@ name = Frameworks; sourceTree = ""; }; - 80251DEFA66ED7392A442F90B41988A6 /* Pod */ = { - isa = PBXGroup; - children = ( - CCACB1D660421DF54DC4995D1D55DD7C /* LICENSE */, - 790ACA1CC4E6A8D90186D62F2D2E1E51 /* README.md */, - 75C0C7DE8CA78A85461428120CC3F9A1 /* RNScreens.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 802DD9B71286FAF400232C809E49A8E3 /* libwebp */ = { isa = PBXGroup; children = ( @@ -9348,137 +9573,111 @@ path = libwebp; sourceTree = ""; }; - 80A476F48029D36C38F338FEB2C82BBA /* Support Files */ = { + 807F30CD019A9B425C6DF02E7386160E /* EXHaptics */ = { isa = PBXGroup; children = ( - 9FAFDA568BD6E4671BD4C57316F349F0 /* React-jsinspector.xcconfig */, - 442CD07F1DB8846A151DDA3BC3D596FF /* React-jsinspector-dummy.m */, - 2997A3C3733C63705008CECC0F73DD57 /* React-jsinspector-prefix.pch */, + 4F862EA1AA055373123163311F43DCFD /* EXHapticsModule.h */, + 97E36034661AA111E0BBB20ADFBC5EE8 /* EXHapticsModule.m */, + 211D05E0527DF10B1C4716BC703A0035 /* Pod */, + FE12BC87CB7E17D2CBBE8B22FCE77339 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - 8106627BBB6846338D4C3446F6BC03A0 /* config */ = { - isa = PBXGroup; - children = ( - 53307E5952D6AB4A314D232013266EAB /* RNFirebaseRemoteConfig.h */, - 9E43A47BF5FA58C4FACE64C548519B26 /* RNFirebaseRemoteConfig.m */, - ); - name = config; - path = RNFirebase/config; - sourceTree = ""; - }; - 81B5C39DA836219082AB32EF68F95534 /* RNFirebase */ = { - isa = PBXGroup; - children = ( - 63EDA347B70C089C01A97CF736CD4309 /* RNFirebase.h */, - 7B3B441E1D796AF3184CB0B15AC6C639 /* RNFirebase.m */, - 43FC20B10BBFE3B2DF6CD670ADD6508B /* RNFirebaseEvents.h */, - 812806CFF56D0C611E2C594692561A12 /* RNFirebaseUtil.h */, - D941AF1DB4A347DDAC124FE87692520A /* RNFirebaseUtil.m */, - 43BE51787A8F1A2FFB8DFA861F39B175 /* admob */, - AD08520F4F3312D4431721B0555A7A23 /* analytics */, - 4E6BA6CB835499F877E4A7F1514FCC8C /* auth */, - 8106627BBB6846338D4C3446F6BC03A0 /* config */, - 7DFF06AAD671C0D6087302EF3D3778CE /* converters */, - 838B4B9B185A0941B903ADE17F9DFD43 /* database */, - 662E3DD11CA9F1E2382BF270B4B4BB60 /* fabric */, - 8A1FAD0AEB6EDB87DC1614CA7A43A268 /* firestore */, - 619C063FA9711E324A4F6F888BE0CBEE /* functions */, - 15D618B6453B2323863567A028E5A9CA /* instanceid */, - AAEEA23BE1242B6CBA34CE42392D0B8F /* links */, - 6512E9BF7C27EC6989B693509EC07285 /* messaging */, - 3E6DCA53D8A6EFEAF417F6AAEEFC49BC /* notifications */, - 12BD3D5C4F42E9627134A728E54057C1 /* perf */, - 66D78A72417B2FBD13EE56752C600343 /* Pod */, - E3B46C0B2CE23AE5771F0446FF421273 /* storage */, - AEB4A9456E0FB922B0D97757CC4ECC18 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - 822B8CE2D1F60ABE7DC3F68712B84334 /* Protocols */ = { - isa = PBXGroup; - children = ( - F87018D1B97909D7DAA4B43070C022DA /* UMAppLifecycleListener.h */, - A6203155C4E6DA70F162074DCF722F18 /* UMAppLifecycleService.h */, - E2EFB0767F55964F6071BCD000080507 /* UMEventEmitter.h */, - F551C9D0D2CCA17BD67D51D7524B163A /* UMEventEmitterService.h */, - 0D70DFBDE9CCE7847F3234A7F513A23B /* UMInternalModule.h */, - A46F7C3E0CCCA105790FAC868232EACB /* UMJavaScriptContextProvider.h */, - 8EF43007D9007C90C3CC6D29EEC0085C /* UMKernelService.h */, - 32B1A0AD172D5FEB77FDA5EE3A58EAE8 /* UMLogHandler.h */, - 5DBB3644572377E6227E8F0A5674372B /* UMModuleRegistryConsumer.h */, - 6843CF592A1AC8B5AE7185223515AA94 /* UMUIManager.h */, - FBC448E6C2F565885B42DEFD6F04AF9A /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - 82B420424C9845148E4829B859D2B458 /* Source */ = { - isa = PBXGroup; - children = ( - AA6F415D169EDE93AAE4DD617998CB7F /* KSCrash */, - ); - name = Source; - path = Source; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - 82C2B406036645A46BE6A9D77383B894 /* Pod */ = { + 82272FBE4B5A9724808C85D8580BABB9 /* Pod */ = { isa = PBXGroup; children = ( - 3AB6431C2CD5B8840B4490303B9F938C /* React-jsinspector.podspec */, + C6695BB149402D06E65E98DEC64F461B /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 82FB100B20B8D30EDE14ED412F2610D3 /* Core */ = { - isa = PBXGroup; - children = ( + 824167380D731F7F86532A1225B61449 /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + 9AF896D2A8AE7DD318C3A4BECA39455B /* RNGestureHandler.h */, + B11F7935C19D82510F1DD4929B409E74 /* RNGestureHandler.m */, + 2E5DB6C4A6AB67A7659D6F8FE926080C /* RNGestureHandlerButton.h */, + 92FCE4E36340938E13A3903617D683D4 /* RNGestureHandlerButton.m */, + 6B90567EAD479807447C9599841BCD15 /* RNGestureHandlerDirection.h */, + DD8D6B2B1C7ECC18DCBDF847EF2DE14A /* RNGestureHandlerEvents.h */, + 49BEE40C24683E301CB66E6A4DACF492 /* RNGestureHandlerEvents.m */, + D05769483CE1B7B36032C215CEB2BAC6 /* RNGestureHandlerManager.h */, + B949BFCB44FB8932EE0CDD0A9FF82037 /* RNGestureHandlerManager.m */, + FDB76E91FBBFA9A87AE303697B4A74D8 /* RNGestureHandlerModule.h */, + 841B25552AF59007AF5F708CA47B8DAA /* RNGestureHandlerModule.m */, + 8F2013CC1164B735BEFB4E7347C9C63D /* RNGestureHandlerRegistry.h */, + 93E48DF270EF504627AEDF6064847E41 /* RNGestureHandlerRegistry.m */, + 6F7D656889924B825AEBF62161AB1260 /* RNGestureHandlerState.h */, + 932B1B968EEB78A085F20790FE48C450 /* RNRootViewGestureRecognizer.h */, + 34F248533ADED25A996005E3B2882F8D /* RNRootViewGestureRecognizer.m */, + 3E7AE840957DEE13D51D6088CC867A02 /* Handlers */, + D65020462E80F6EE4E59BB5F627FB3A6 /* Pod */, + F0DB252A12C5687CEEF4DBE350B92171 /* Support Files */, ); - name = Core; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - 838B4B9B185A0941B903ADE17F9DFD43 /* database */ = { + 8259767F02022C527F29A4F19567B0B8 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - FE408F62848CBE57A7C1319F29C2F4FF /* RNFirebaseDatabase.h */, - B133C726515ADE89D9D4DD3EDED65E7F /* RNFirebaseDatabase.m */, - 0492EC25173E684A7BF9642E60FCB955 /* RNFirebaseDatabaseReference.h */, - A5E1FD618F9040A05B2D0E333A9011B1 /* RNFirebaseDatabaseReference.m */, + 5612BE2E38E617C3707D6075C49383BA /* RCTSettingsManager.h */, ); - name = database; - path = RNFirebase/database; + name = RCTSettingsHeaders; sourceTree = ""; }; - 84A3A37E198DE4453A02B69C74440147 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - 3CF06B917E566C842CE410ABC8810873 /* RCTSettingsManager.m */, - 62D15A3272A6DC0785A240F2BD74849D /* Pod */, - 659BEF6B87732C30818F7EC4C78FB9F1 /* Support Files */, + 8339C597DF1A0825B36CA0BE61964389 /* RNFirebase */ = { + isa = PBXGroup; + children = ( + E40ED80CCBC57151A56EF37063BF8FB9 /* RNFirebase.h */, + F796ACB971B3220AAEE056E1A82AE383 /* RNFirebase.m */, + 9B63F1DF151406D1A57F8203BA479227 /* RNFirebaseEvents.h */, + C754BBA0BD135F393528435AE42DB236 /* RNFirebaseUtil.h */, + BFEE1E3A52721A80824DB0F6618499B3 /* RNFirebaseUtil.m */, + 88D9DBFBD4962D1F63418281EC54909B /* admob */, + 8E8CA8F0FC982BB149835994BC7F7619 /* analytics */, + 2B6607975CF25B79D39C70A068AC3C45 /* auth */, + CAEAA0D45CC461F7CD5E985371E1038D /* config */, + A546297F934D5C5FCFB9C5F8DF5B79BF /* converters */, + C19244DA2F8AE7DB164FA03481E29DC6 /* database */, + F209B8420A1247F9C0CB2FE8CB865194 /* fabric */, + 644260B13E5E0D69EC6B9E9BC63A2E4D /* firestore */, + DA65D4615D17BA8DCA40469E9B216875 /* functions */, + 0F978264AB6889E8491D3FD8DF7D010D /* instanceid */, + F7A356F7EF70B76FC4D4E0E4714CFE27 /* links */, + 57C691A1891B683E6EF9663D16526743 /* messaging */, + 9CF85FCD94DE84965D442F14BB62DC32 /* notifications */, + 5DEB1C62C3743C50B0ACD3EBFF1759B4 /* perf */, + CE850036EE7C9BF06457FC466991757E /* Pod */, + 998F4CE055DD01BCCE56FAF64CFC7CA7 /* storage */, + 83630DD6F052944C6711EDD4B6EAEBEC /* Support Files */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = ""; }; - 852A4CCC3A3E60D103968387B14F6CFA /* Pod */ = { + 83630DD6F052944C6711EDD4B6EAEBEC /* Support Files */ = { isa = PBXGroup; children = ( - 5A4CD84A03A2A4B38D5FB2BECB39F19C /* React-RCTVibration.podspec */, + 2E7FE58AA958A69566EF7D174F252E2E /* RNFirebase.xcconfig */, + 64D364413691C778F21582D89FD37B82 /* RNFirebase-dummy.m */, + C0266F070F4D0280775CB549C2A12478 /* RNFirebase-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; - 864732326F1B6B0C9EBA0E7DF235DBAF /* Pod */ = { + 83F326B0EF9B301778EA8188A30B9C8C /* Support Files */ = { isa = PBXGroup; children = ( - 0305F3DD1F9B74004C93B4DC8704400F /* React-jsiexecutor.podspec */, + 8E2E934DDF76140368BC00776843D7CE /* react-native-background-timer.xcconfig */, + D78D5C5E5A979D2E922CF3F4CE4B551B /* react-native-background-timer-dummy.m */, + 6C76CB9130520E8E90ADF36C14E02B88 /* react-native-background-timer-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; 8776D2C51A83E427D2C48EB1069F5894 /* encode */ = { @@ -9488,16 +9687,6 @@ name = encode; sourceTree = ""; }; - 87CC25F89C3BD051E93DF2907E4579C7 /* Services */ = { - isa = PBXGroup; - children = ( - B75B0058C060FA91AF0E94596092C78A /* UMLogManager.h */, - 36F120B6FEAD23DCD094D28B350A36F8 /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; 87D4566BBFFD271EEEA3C99A94209C9D /* Support Files */ = { isa = PBXGroup; children = ( @@ -9509,15 +9698,37 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 888A3A946034D261FC23CF3EBB6392CD /* Support Files */ = { + 88D9DBFBD4962D1F63418281EC54909B /* admob */ = { isa = PBXGroup; children = ( - A09D592BE9E641455E699E88691C3504 /* react-native-jitsi-meet.xcconfig */, - EB77070CED9511E922A63DEC446AE7A0 /* react-native-jitsi-meet-dummy.m */, - BA4B6CB91C243A6CDBFD94256845C235 /* react-native-jitsi-meet-prefix.pch */, + ECC239C169CACED821B555E60271A9DD /* BannerComponent.h */, + DEA73D9116E3E6FB1B522A8D311F63D9 /* BannerComponent.m */, + B02638646000CABCD9543E768EE8DACA /* NativeExpressComponent.h */, + 5E911CE59696A0FEF04160CA319A14DF /* NativeExpressComponent.m */, + CD1B942711BBA4F0550060AD78DDBC4E /* RNFirebaseAdMob.h */, + 3566ADAF3895C6EBB680739C28C8B8FB /* RNFirebaseAdMob.m */, + 94D418974B20DEA3AA2A59EC79E0ECB7 /* RNFirebaseAdMobBannerManager.h */, + C1D7740CCBB91598F7C6D66B10A284B6 /* RNFirebaseAdMobBannerManager.m */, + BEF1D3B3942B279447F10DBEEDF14102 /* RNFirebaseAdMobInterstitial.h */, + 8FC22E08AC1A0A720C13FDDF26EA4286 /* RNFirebaseAdMobInterstitial.m */, + 086961721FA7185894FA0D3B18A38BA7 /* RNFirebaseAdMobNativeExpressManager.h */, + FE733A9927A3D711C0F6C9E619E43711 /* RNFirebaseAdMobNativeExpressManager.m */, + 7395B5C5E4D425DC7DB88ACCFDB5A03A /* RNFirebaseAdMobRewardedVideo.h */, + 67607857655CDAF9DACE793EEC13786F /* RNFirebaseAdMobRewardedVideo.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 89691D7B11A794F119BF8340CCCE163E /* Singleline */ = { + isa = PBXGroup; + children = ( + 3A70CAF608A1E6D153DB84FB781F0D98 /* RCTSinglelineTextInputView.m */, + 4E50C73349AC0625D2B22337DAFB4196 /* RCTSinglelineTextInputViewManager.m */, + 470C412F2DCBECEB360A5CBFE76EE6FE /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; sourceTree = ""; }; 89B60566C49622E6C5DC81A8E140000A /* FirebaseInstanceID */ = { @@ -9593,18 +9804,15 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 8A1FAD0AEB6EDB87DC1614CA7A43A268 /* firestore */ = { + 8A22FFB238A96E7E1526869C32BD2F07 /* Support Files */ = { isa = PBXGroup; children = ( - F040D15C66ED75B1A6BC63E377BA4854 /* RNFirebaseFirestore.h */, - AAA9492001A0DEF050E0647B30E9939C /* RNFirebaseFirestore.m */, - 049EAC666464FDC8A25C8974CD848DB2 /* RNFirebaseFirestoreCollectionReference.h */, - A1C62BD6EAAB322135CD95AAC564F8D6 /* RNFirebaseFirestoreCollectionReference.m */, - B1E30D6BE7C5A8BD3F00011FFD64F58C /* RNFirebaseFirestoreDocumentReference.h */, - D3ABDC2173957C92A18048630708D7A3 /* RNFirebaseFirestoreDocumentReference.m */, + B91734D380A03F1D9351ACC9D1C82700 /* react-native-slider.xcconfig */, + 46E7C6CE6CFACCFE8DEE602C55D05D96 /* react-native-slider-dummy.m */, + 049A683B5A422FAB5B9E63522BD0324C /* react-native-slider-prefix.pch */, ); - name = firestore; - path = RNFirebase/firestore; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; 8A77F195308B777358F6B9081258A3F5 /* Support Files */ = { @@ -9616,12 +9824,24 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 8A800B2443F3EA277639E78482FF38FF /* Pod */ = { + 8AAA417DF34B9138E8D712B845A9616E /* Support Files */ = { isa = PBXGroup; children = ( - F4C95F3C07F91153AF32E43BD8DBEA78 /* React-RCTImage.podspec */, + C5BC0C904AFEEEB35C99FCC32B2A1B5A /* UMFaceDetectorInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + 8AABF0F4D162C274D6837AF8EBAEE54D /* Support Files */ = { + isa = PBXGroup; + children = ( + DC9B55A67EB94A81F103AD786D371F01 /* Yoga.xcconfig */, + 8D3724BBA27E2B32D08937468113E078 /* Yoga-dummy.m */, + E5FCE8EB0C7E10B5F7A6E9C5A9C7AFFD /* Yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; 8AD7A448705D47A37B99ED6DFB4BA67F /* Frameworks */ = { @@ -9633,6 +9853,26 @@ name = Frameworks; sourceTree = ""; }; + 8B3EBA26E96CE9026D7EEDB1F36D7F8F /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + 8C92070AE5CB870A36179CB1D2FE5E3C /* UMCameraInterface.h */, + 1A87703181B365F3C977C5A0EA6D5BC2 /* Pod */, + F4F1376989A9CADAECE06A7F347B1E16 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 8B634D843C5369F02C7CB8358EA90B69 /* Support Files */ = { + isa = PBXGroup; + children = ( + 07BD51791FF14F83F4B4155C0721655A /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; 8BD73C731960B082C86AB1D8D4E7BC8B /* Pods */ = { isa = PBXGroup; children = ( @@ -9663,27 +9903,6 @@ name = Pods; sourceTree = ""; }; - 8C13180841AC4874D455EDEC9FD3CF81 /* Pod */ = { - isa = PBXGroup; - children = ( - D1F716E969B51477BF426F0480CA6BD6 /* LICENSE */, - CB1AB267EBD817374BA0E43AF235A102 /* react-native-appearance.podspec */, - 745D19792110F70CAE9BAB6DA63DBDF5 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 8C7C8A3328F1B85389EC0BC1D8E10D9F /* Support Files */ = { - isa = PBXGroup; - children = ( - 4B35A24C2CDA563C390E77B4DAED2636 /* FBReactNativeSpec.xcconfig */, - CDE8B74C79105455947B5787E7090B74 /* FBReactNativeSpec-dummy.m */, - 26DA4631E172DA678A2B02F04B5E4485 /* FBReactNativeSpec-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; 8D102C988F316C3C0DD3A61A6C65CA1A /* Support Files */ = { isa = PBXGroup; children = ( @@ -9693,254 +9912,123 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 8E8A0A4E6757406CC75CEC8255821064 /* Support Files */ = { + 8E5CC96AF68E970486CC6227DBA54397 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 06E89AE5A60D35CD6E9119CECA641AC3 /* React-RCTVibration.xcconfig */, - DA7D5301810BE26C48FD38C4EF968066 /* React-RCTVibration-dummy.m */, - 472463756EB7E55D9FB7E35B64F35087 /* React-RCTVibration-prefix.pch */, + 68B17402AB245EAC828F58E2D62F5150 /* RCTBlobCollector.h */, + 69C0FA574F6E2FC7F6A2131FAC2F557D /* RCTBlobCollector.mm */, + 9895BDFACC41F63BF601939BFFAF2A89 /* RCTBlobManager.mm */, + 81A275692A0794199629EE2C8E4B3B06 /* RCTFileReaderModule.m */, + BEEB79B9BDDC6F5A18C8C4E44EBBC50D /* Pod */, + 7AC926193AFAE8DF70FEF6151E06820E /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 8F1775316F98F20BBE3EDE19E052CC79 /* Support Files */ = { + 8E8CA8F0FC982BB149835994BC7F7619 /* analytics */ = { isa = PBXGroup; children = ( - ED77A1547567C8ABCEBCA42CA62907C4 /* RNLocalize.xcconfig */, - A7C897451DF1654F62EE8C3AF1CF85EC /* RNLocalize-dummy.m */, - 7FCDD50A737A9B1EB610CC355943DA84 /* RNLocalize-prefix.pch */, + D423632AE9D7BA4119B5968AD8B01671 /* RNFirebaseAnalytics.h */, + 0CE44279443FF42C9A8AF1215FBB93DA /* RNFirebaseAnalytics.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = analytics; + path = RNFirebase/analytics; sourceTree = ""; }; - 8FA493F516B56A6594EA94406531FE68 /* Support Files */ = { + 8FA9335986D47217FD23292D8A919E87 /* Pod */ = { isa = PBXGroup; children = ( - 7B5FD04302A048CD337ADEAC861C20CF /* React-Core.xcconfig */, - 23AC3694E47D45C230C083D876D6938D /* React-Core-dummy.m */, - 7E1B03428F68FC120BE4AADAAF25AAF8 /* React-Core-prefix.pch */, + 24EEFECA3BEC42F87EFF618D0CFB87E9 /* LICENSE */, + B256ABE5BD8594F142B72F80613C8345 /* README.md */, + 5718F99C8AD0A45A01A5991E511B1AB0 /* RNScreens.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = Pod; sourceTree = ""; }; - 8FEA1216F1154F3DE1AB10B22229ECEF /* Support Files */ = { - isa = PBXGroup; - children = ( - 48908DCE320586A152F9FEE14A2F50FA /* React.xcconfig */, + 90878DEA6362363F30D369BCCE851B36 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 6D8F16770B61D203BA7586DD93BF5AE7 /* RCTConvert+RNNotifications.h */, + CB47F9AB8D3CE08A4CD5CF196A3C9169 /* RCTConvert+RNNotifications.m */, + A19C0BC6B3844E51415B2FE73860B7DC /* RNBridgeModule.h */, + DEA0FFCA817B9BB029A31235C95FDD47 /* RNBridgeModule.m */, + 374D14998EABADA514170B2D08C33562 /* RNCommandsHandler.h */, + 3CD6EF3208D40BD1B03BA2765441EED3 /* RNCommandsHandler.m */, + 762A2EE810E1F78EF4BCD75D95B0BF0B /* RNEventEmitter.h */, + 38B613B0CE79C3422B37098392C882EE /* RNEventEmitter.m */, + BB84A0D146A46EDD53FC654CB6D42300 /* RNNotificationCenter.h */, + 50585DBB5F13DC4B200D7493C8DF1FBD /* RNNotificationCenter.m */, + 5209737C33E43597A9E139095CB509B8 /* RNNotificationCenterListener.h */, + 1B9055B4CCCFD33CFC7E4239C6EF3F35 /* RNNotificationCenterListener.m */, + 395B0B7B4343E727775CC6872C7EFE73 /* RNNotificationEventHandler.h */, + C9EFC60CD18319463354968F16F86223 /* RNNotificationEventHandler.m */, + C38BD63E38308306F01271471A51A51A /* RNNotificationParser.h */, + F3A600554A29214EB7C2216B00E15992 /* RNNotificationParser.m */, + B253FCDCCFA703EF327E1DE179D9B9BC /* RNNotifications.h */, + 554E77FD3F864F3461B30DFEF0A63BDA /* RNNotifications.m */, + 6572D7BCB0C0D9916F510DF77972EE7D /* RNNotificationsStore.h */, + C8035F5067C028D95B24C6EE0D688FE3 /* RNNotificationsStore.m */, + B5F4CD5F24417B0900BAEB078D8E6C71 /* RNNotificationUtils.h */, + 3A136898A2D9F095BEB68F0A23F575C8 /* RNNotificationUtils.m */, + CA61F667A05E9DB8EF4F3266762EDAEE /* RNPushKit.h */, + D69982EDF3E3189BA62CEB786BA571A0 /* RNPushKit.m */, + 7FF33784A3FBD65650BC14499CA52D7B /* RNPushKitEventHandler.h */, + A643CE34F02117FDF88B2A6F37950E94 /* RNPushKitEventHandler.m */, + 00C5785681FEE30171D4791232D6B033 /* RNPushKitEventListener.h */, + 2593832A42DD4CCCB3733C186605E387 /* RNPushKitEventListener.m */, + 68687CBD224F93745A2D421189504950 /* Pod */, + 55747659727D105E17D20D60E6089B75 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; 911851AEB4CDAC5A0971712FB8011504 /* Support Files */ = { isa = PBXGroup; - children = ( - 472A2C7686DB7556D578DB79D152CB46 /* Folly.xcconfig */, - 550868F8B354C387FEC258FEE790F14E /* Folly-dummy.m */, - 358C560AEBE72102FDA3E6D8080F2BC7 /* Folly-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Folly"; - sourceTree = ""; - }; - 9180627561303A9CE353139B9AFCF787 /* Resources */ = { - isa = PBXGroup; - children = ( - B7A13141908DE767B297C9086595F4C3 /* AntDesign.ttf */, - BACB70B829C4502E3CCC3082E3A2975B /* Entypo.ttf */, - CBFE937BAC141F089D8956160DAC55D9 /* EvilIcons.ttf */, - 80CC052214189F4974B1724F2FB84697 /* Feather.ttf */, - 407A40CB7B070AF556EF70FA42D89DA4 /* FontAwesome.ttf */, - 89D49BD0652C258529FB173223E9F4DF /* FontAwesome5_Brands.ttf */, - BAA536D18CAB3ED18C4A135963C39BF9 /* FontAwesome5_Regular.ttf */, - 37250130B42B141C97CC9A39287C12F5 /* FontAwesome5_Solid.ttf */, - FCBC9BCCB6846FC5612A6F57C26EDCBE /* Fontisto.ttf */, - 0F872C499647EE5E0A3FF68004F104E3 /* Foundation.ttf */, - A1283403C399497F78AB328C84903C45 /* Ionicons.ttf */, - AED6F1A331667E6805CADF8B5DB04959 /* MaterialCommunityIcons.ttf */, - 2C8F488FD07006DF1BADA179D2EA842B /* MaterialIcons.ttf */, - DC95121B8E97A56644707E17B6C994FD /* Octicons.ttf */, - B7D83F856386B7B6534A771F768413EC /* SimpleLineIcons.ttf */, - 6128E2E0C6FF37F4CE812105EB3347ED /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - 91CB4992DE3C3197F9CC019021584CBE /* Surface */ = { - isa = PBXGroup; - children = ( - 7478DF8D8A7391F013C061E011395DFB /* RCTSurface.h */, - 663DF61785EDF50F0E462C1F5979D2C9 /* RCTSurface.mm */, - DBC7BF41CC18F7090E36246E2F669FEB /* RCTSurfaceDelegate.h */, - E31C47AC2166B0489709141138915398 /* RCTSurfaceRootShadowView.h */, - C440DBBB9C35AEBC539AE135353CD3A5 /* RCTSurfaceRootShadowView.m */, - CA03E7E0BA0C0AA46258CFC87D6916C0 /* RCTSurfaceRootShadowViewDelegate.h */, - E377689DCBC687230A70D1E8A21886A9 /* RCTSurfaceRootView.h */, - 208049EDC98F6FA872497D64D295A3C5 /* RCTSurfaceRootView.mm */, - 6B50C53F771CF8130CFC0904AE4BA26E /* RCTSurfaceStage.h */, - 5820002AC47A904ECFE57A31695A2041 /* RCTSurfaceStage.m */, - 66F6E12D536ADB1C538E8561F3349296 /* RCTSurfaceView.h */, - 3CC01F4BBB89B317FB9A46064D289D90 /* RCTSurfaceView.mm */, - 89207DC46009BB0E33720E86E5E4FA19 /* RCTSurfaceView+Internal.h */, - CBAA1CA4B931015D313EA6734DD9ED57 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - 921886BEFBC848029C874A393E24AC43 /* Pod */ = { - isa = PBXGroup; - children = ( - 0F5687DABA366F02FAC8DA5394E6C9E3 /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9283AA81C7FC075B93F791C8435F43E8 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - C988A7F954367174D7AEF4D4F36F296F /* CoreModulesPlugins.h */, - FC0C60238FADEDA52CCEB0E83BC1B189 /* RCTExceptionsManager.h */, - F527931D0C875097618FB77F5DED35FD /* RCTImageEditingManager.h */, - 225F759A534ECFDD2F60AA88A99267B9 /* RCTImageLoader.h */, - CD17068DC41BB064E102FE1E20078E09 /* RCTImageStoreManager.h */, - 5080C9B613BAD83C61CF4535D42E0F1B /* RCTPlatform.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - 937D38486105DB12F9C5E34D5D6F92F5 /* Development Pods */ = { - isa = PBXGroup; - children = ( - EAAC5EED27C7977384001990FB16202A /* BugsnagReactNative */, - 99EE31B84967BDA59F10625D60CF8570 /* EXAppLoaderProvider */, - CE45BB1E7A682802FDC62D4FAB3C71F9 /* EXAV */, - B04D4F5F593B7B8F682CCB4641A75F6A /* EXConstants */, - E6D9C6903E6F9129DBD9482674A27E7F /* EXFileSystem */, - EB42568E4B8A5362E55AE8DB7090015E /* EXHaptics */, - DD12D27716411AD03B418D3617BFB553 /* EXPermissions */, - A315F1CE173B9BD7122CE0E22B37C0A2 /* EXWebBrowser */, - 322ED2BB8A0A36DB4DC848F87C46EB07 /* FBLazyVector */, - AD81F7D890AF9F21C41E45A9E04A9AFD /* FBReactNativeSpec */, - B9A1C50F490F300F1E8121ED9AE6C090 /* KeyCommands */, - 40B626A781621BAEC18BA7EE491F20D0 /* RCTRequired */, - 01C16780162D9A44B9760CB0377C1918 /* RCTTypeSafety */, - 22AF53CEFF6B80059B6515E882631D28 /* React */, - 13D3CA8C87AF09207BD961420E45BB94 /* React-Core */, - 39015B95486C037E12673E77750DCD50 /* React-CoreModules */, - 1B2855615AAE06B353B3120E21B20C5F /* React-cxxreact */, - D1A943C2B5E7A3C9BA0F8392D886CA16 /* React-jsi */, - EE95262D8F85FB81BDD18B733E51353C /* React-jsiexecutor */, - 69BC81389CDC4911063145733AF64FF3 /* React-jsinspector */, - CE9E04D16CC538AF8DC4E909B878C45D /* react-native-appearance */, - D410CA72CA68A15E896C7AB7C1FAD10A /* react-native-background-timer */, - 3EB9363E175D460A4D095878FCC150BB /* react-native-cameraroll */, - 0288CCD7DD804BC13AF52AD74F72AF8A /* react-native-document-picker */, - 7EA35AD78FB6DDA008257F95FDF8DD28 /* react-native-jitsi-meet */, - E8EC8781FF35043A3FA94989BA738B31 /* react-native-keyboard-input */, - 2E3FE00FF7300335DB53EFC24BA411AC /* react-native-keyboard-tracking-view */, - A94726355293652C82F9E6FA64A17EB6 /* react-native-notifications */, - 77D500A026E0C8462559E76C9BCBC4E1 /* react-native-orientation-locker */, - E7830F494AD1072678BE12B212F71B45 /* react-native-slider */, - F816DEE7493EA7D497BE227B32221203 /* react-native-video */, - 53424CA96BFC315F097CFBC0AFDBED76 /* react-native-webview */, - 95960B40EE18243E24863D550D1A4F95 /* React-RCTActionSheet */, - 2BA9BEA4880B8A41D10D4EB57B7487EC /* React-RCTAnimation */, - 0018A73EA6882581813B45F7482B9F8D /* React-RCTBlob */, - B890217A44B0164CCB0F7716B1AAA120 /* React-RCTImage */, - CC2CA0D4B89DAFFA98F66D748A68B844 /* React-RCTLinking */, - 50E1DDF837F8D50DE5EB2D58B92FD20A /* React-RCTNetwork */, - 84A3A37E198DE4453A02B69C74440147 /* React-RCTSettings */, - 4AEAC3DA0A32E3F642D3E425F766DF34 /* React-RCTText */, - C79BA7DCBC001E8028B3AE6C51C8E6D1 /* React-RCTVibration */, - 3DD178F5CC41FD3E11BFADAB9FFB57E4 /* ReactCommon */, - AD6F08191AD2CFE5E0ECDD3C2BD49268 /* ReactNativeART */, - 26F4418A35595CDF5B5A0C05B7719E08 /* rn-extensions-share */, - 36D41EF87FADBBD601B42AE1569B3428 /* rn-fetch-blob */, - 24B9E037D7B94F66FEEE2CACF60B02F4 /* RNAudio */, - 4D16C1E7ED78DC24D0F8C2AFD9BEC61D /* RNBootSplash */, - E51B999DD719F3248B2A69454A481CBA /* RNDeviceInfo */, - 4157BE611029362FA76CD327FA4694EC /* RNFastImage */, - 81B5C39DA836219082AB32EF68F95534 /* RNFirebase */, - 094CEB5D7D47697F82F0393D6E23FED1 /* RNGestureHandler */, - 18C11420732EDE9C9810029CC37CFEF6 /* RNImageCropPicker */, - 9D6DA2B53126E91CFCC19AC67AB9632D /* RNLocalize */, - 51B7D06CF0F79D4327A9CF786E2C595F /* RNReanimated */, - 6B61566CD8D4930EDD61DF4EEE6BAB07 /* RNRootView */, - EEA7A374432AAF3653281E5EFF07ECCB /* RNScreens */, - 18A6146BEA941DB014BF9BCCEECB5DE4 /* RNUserDefaults */, - 472F9D61C490551B00D0F0442F650E86 /* RNVectorIcons */, - 2362E34C1FA5F92491DFE823A888668E /* UMBarCodeScannerInterface */, - 67121A263CAA936C9665C5654E4651C2 /* UMCameraInterface */, - 7C200EA6AD19E86DD93ECB927D21D35E /* UMConstantsInterface */, - BBB8F80F689B282C1CCBEFC3E5D307C7 /* UMCore */, - 5F57D6C67D99D9305AEFB311A2F9C413 /* UMFaceDetectorInterface */, - 62B46BE1CFFB02B3E9F90389CE542960 /* UMFileSystemInterface */, - B7F3DED37DA0E988E50EBB027764FDA6 /* UMFontInterface */, - 5A1DA251DDD0CD293A86563887CDEBBA /* UMImageLoaderInterface */, - 4F6D92EB5F1D173B21A30425430CB6E6 /* UMPermissionsInterface */, - D5A7ECF5DA8AB83A0F68B414D2076C4A /* UMReactNativeAdapter */, - 4C506470E791F506FF16E9B58E391767 /* UMSensorsInterface */, - 9D0B014F90665CA7D123E2A86C9612F8 /* UMTaskManagerInterface */, - 6CD43C0AAA81A9A9C7E29ACC08BD149A /* Yoga */, + children = ( + 472A2C7686DB7556D578DB79D152CB46 /* Folly.xcconfig */, + 550868F8B354C387FEC258FEE790F14E /* Folly-dummy.m */, + 358C560AEBE72102FDA3E6D8080F2BC7 /* Folly-prefix.pch */, ); - name = "Development Pods"; + name = "Support Files"; + path = "../Target Support Files/Folly"; sourceTree = ""; }; - 94A98801D5C5A86CCC64BCF2166F6C17 /* Text */ = { + 9167D0B09ABBAF341E56707BB6B14495 /* Pod */ = { isa = PBXGroup; children = ( - 9BC9378C8A75CCAF94FD9BF2CE8094D5 /* NSTextStorage+FontScaling.m */, - B4089E243FC5108FA17DA05120B28683 /* RCTTextShadowView.m */, - C4E31B2811EBB9D3F7FA88612E04E7E0 /* RCTTextView.m */, - AE7D92C54A488BDB7AD0E3F283BD9DF6 /* RCTTextViewManager.m */, + E436C7834CBD27A6F24269FB84D641E4 /* React-RCTActionSheet.podspec */, ); - name = Text; - path = Text; + name = Pod; sourceTree = ""; }; - 94CD99E1EAC3545479FE99B77C8C9FFB /* Pod */ = { + 93BCAF93DE5A44BB50FA5BC0E8EE2637 /* Services */ = { isa = PBXGroup; children = ( - 9DF3E509D27AF477866A5F62C8B18436 /* LICENSE */, - DAFB243BCB37304C5B7E2D45D18C43D8 /* README.md */, - C1E478B3B59138AD51C695C0C82AD616 /* RNVectorIcons.podspec */, + 88B9807BEED08F60C9534922B5809986 /* UMLogManager.h */, + 807A0E4A7D921BAAE970FFB2AE0DBF2D /* UMLogManager.m */, ); - name = Pod; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - 95960B40EE18243E24863D550D1A4F95 /* React-RCTActionSheet */ = { + 94994ED0ADA6206A22DE0B0B8847CB4E /* Pod */ = { isa = PBXGroup; children = ( - 82FFD66E5104CA67602113F72CC240CA /* RCTActionSheetManager.m */, - 1BE631D3BB1184364EDAA287C9F349F9 /* Pod */, - 5201C6966B77EA1095B5B60F7EB941A8 /* Support Files */, + BC564A37BA02020C6E8115CDE7883AD4 /* UMFileSystemInterface.podspec */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; sourceTree = ""; }; - 9606CB9C5E6531D811C7FB65B59ACD86 /* Transitioning */ = { + 956319FB343C2E548AF9E76C17329D08 /* Pod */ = { isa = PBXGroup; children = ( - 4C213AFCCE5FC50C963F2D24321B93A8 /* RCTConvert+REATransition.h */, - 23B400CFD688C97DCF1554B7B1925F92 /* RCTConvert+REATransition.m */, - 5BFC68F0413B4C9A826D7B5B96793F07 /* REAAllTransitions.h */, - 56F3674E7074CD3084F8551CF04BA9AC /* REAAllTransitions.m */, - 716C23355318130EE0D94B9F031ECA23 /* REATransition.h */, - E5D2543E5CBEAF117CF42B0CB4FFB740 /* REATransition.m */, - 6BDBB8B42194CD77021D65EA335BD782 /* REATransitionAnimation.h */, - 897F6C2F1375F5301C3829E3A604FFCF /* REATransitionAnimation.m */, - 13996B9F012212A5316ECE131DA1F4AD /* REATransitionManager.h */, - B6AF956858E605701EF28EA10F45FD59 /* REATransitionManager.m */, - 86C296EBF7A8AD078BB9B224A1567B85 /* REATransitionValues.h */, - 969BA394CB97E685B03D51DDB15FCDA4 /* REATransitionValues.m */, + 28A379CA901BCAEB8D4E0712F817979D /* LICENCE */, + 89B51D9DC6352AA5D37729B72D1EAF05 /* react-native-cameraroll.podspec */, + 013A69400B9028E3D0F8ABE2803749D6 /* README.md */, ); - name = Transitioning; - path = ios/Transitioning; + name = Pod; sourceTree = ""; }; 976C6604E458FD5238A5E4EBACF9B802 /* Network */ = { @@ -9969,10 +10057,47 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 97FED8FB21423CF2BF1B8009390D59D4 /* Pod */ = { + 986B4C6DB4CFA5F5626E3E5B3955E88B /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + DF27A0F5D9C24DC0FF20189052D4DEB7 /* RCTAnimatedImage.m */, + 3705716BBE7DEB63B20D332F6F24EB4D /* RCTGIFImageDecoder.m */, + 87E9D60A4716E741764A6CB9588AEB79 /* RCTImageBlurUtils.m */, + 7B5DE73ECA9102A21C8964540F74B4B2 /* RCTImageCache.m */, + 3C871C2A094B2FECE3482ED6E1DBCD71 /* RCTImageShadowView.m */, + 3B3D0AE95BDBF73212D684D408AB5043 /* RCTImageUtils.m */, + 70906589313A0FED299955B12363520D /* RCTImageView.m */, + B6DCD67B31DB82CAA1663A66E9AF79B8 /* RCTImageViewManager.m */, + 92FD30F76BD772A62E65C8492AADA354 /* RCTLocalAssetImageLoader.m */, + FD04A093E13378AF06F9E09766FDC00E /* RCTResizeMode.m */, + 4F4EF3DD9969C1ED8121616584467072 /* RCTUIImageViewAnimated.m */, + 640B166BDC544391DBD97024C97C1D47 /* Pod */, + 17C928C2BC3434F0AB914A53FD5F754E /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + 986F09409728A71E347DC9DDD5F72A83 /* UMSensorsInterface */ = { + isa = PBXGroup; + children = ( + 9BB0FF9C1A8F6510226935C605C4712F /* UMAccelerometerInterface.h */, + 869A40360F52246AB0109FDC1432CD77 /* UMBarometerInterface.h */, + E4172608A414F119DAA175846E42D3C9 /* UMDeviceMotionInterface.h */, + A16D6C3ABF492E1355C81AF2853CC1A4 /* UMGyroscopeInterface.h */, + 0F41462905F88C5D7E83A7C19E974D80 /* UMMagnetometerInterface.h */, + 56A3D00C6AD7888025FF10F011B1F1F1 /* UMMagnetometerUncalibratedInterface.h */, + 4DDC41BEE5EF7446BC97F12695DC1A81 /* Pod */, + F8B76A83F9E61B51E038D3DAAD4A5818 /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; + 98B6D25FD03C786887B4E15B467F47A0 /* Pod */ = { isa = PBXGroup; children = ( - 4744D1F43EF5365C6B9988F2729B896A /* React.podspec */, + EB7BD19A4D12554BDFA6BC41989261CB /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -9988,82 +10113,96 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 99EE31B84967BDA59F10625D60CF8570 /* EXAppLoaderProvider */ = { + 9924F206CD6206B3E5A268EFB71F2C09 /* EXFileSystem */ = { isa = PBXGroup; children = ( - DDAEE2A02C6BDADA31CE8D2741AED52B /* EXAppLoaderProvider.h */, - 79CBD3723711AE79AC36F658E2A1988E /* EXAppLoaderProvider.m */, - B32D93842202965B4B3396D8203DD586 /* Interfaces */, - DDA6E9594AA6AD140630AC91D82E8145 /* Pod */, - 20241934D63E97EB67D9C7A5B0A4D58E /* Support Files */, + 889F498307EA1081D82E434001B02BEA /* EXDownloadDelegate.h */, + C6376ACF4055834AD76BC0924194FC51 /* EXDownloadDelegate.m */, + 5684A02A45139927CC52D6AEB9CB9035 /* EXFilePermissionModule.h */, + 4A0F37EA39308EE6D96BC5808D6BB2C6 /* EXFilePermissionModule.m */, + C6955AEE3EDE65A8289B0CB4CEEC5DF7 /* EXFileSystem.h */, + 8FE88BC6B1B4A461996F5D3F33837578 /* EXFileSystem.m */, + 9970C4B095AC2950A423F80839056606 /* EXFileSystemAssetLibraryHandler.h */, + 50B424FCDE1357C73BE0A177F2AEA2BC /* EXFileSystemAssetLibraryHandler.m */, + A5B99E26AFADDE91F4C280A8C370152A /* EXFileSystemLocalFileHandler.h */, + 4A9B4024E4482F42172F4B0A22E38664 /* EXFileSystemLocalFileHandler.m */, + 694A524840EF8BC4BC3CC0D7A88A8B6E /* Pod */, + 0A1DB6103941B3B3F92B748B4071A27D /* Support Files */, ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - 9AFE5D75F8DCAB8727BA36088961E769 /* Support Files */ = { + 998F4CE055DD01BCCE56FAF64CFC7CA7 /* storage */ = { isa = PBXGroup; children = ( - 8D632F7FEE702D28967F0D0C60DF3140 /* UMPermissionsInterface.xcconfig */, + 9E450C88F4ACC0F32210ECDC76D87ED1 /* RNFirebaseStorage.h */, + B0E3A3BFB2134704CFE6CFCAF4B62A41 /* RNFirebaseStorage.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - 9BB7C068EB3E3AC467263F08001AFE20 /* Support Files */ = { + 9AE4E661C23C595FCD574D9E8E1624A3 /* Support Files */ = { isa = PBXGroup; children = ( - C016B656853BC9D15D256FCBB8ACD0BB /* GoogleDataTransport.xcconfig */, - B33E269DBFF2BE345F8195FBD7BCFB67 /* GoogleDataTransport-dummy.m */, + C49A6D45889861923633D0598A51764C /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - 9CC64319710E3E00A2A895C650F24199 /* UMNativeModulesProxy */ = { + 9B4B339ADABFF6CBF5F622EF5ECD91DA /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 8CFC715693F19E44F33F66ADFBEB6415 /* UMNativeModulesProxy.h */, - 22042ACA6514EC558543411151311E54 /* UMNativeModulesProxy.m */, + 83E380B95E21AFEEBF77A120F248E7CE /* RCTReconnectingWebSocket.h */, + 0A03D1A05B65B61B693BF222E5CAB339 /* RCTReconnectingWebSocket.m */, + B4ACFDCF5494F481184D5A3B38A60024 /* RCTSRWebSocket.h */, + A47241CE73C4FED1B25623444C57EDDF /* RCTSRWebSocket.m */, + 82ECFEAD2FB0364BAC21E54B58A3A9A8 /* RCTWebSocketExecutor.h */, + E22B4DB70E30702375F8DA6893B64F7F /* RCTWebSocketExecutor.m */, + 199B7FA4EFDE4249BFC480799FEF2CA4 /* RCTWebSocketModule.h */, + 945FC3606AD98059EF1200700EC60D25 /* RCTWebSocketModule.m */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = RCTWebSocket; sourceTree = ""; }; - 9D0B014F90665CA7D123E2A86C9612F8 /* UMTaskManagerInterface */ = { + 9B96D5FB37E5FD3E49E0976D478C0B57 /* KSCrash */ = { isa = PBXGroup; children = ( - 1DE81EC841E4268EA77FF9FE8A746669 /* UMTaskConsumerInterface.h */, - 3770A7F06B2DC59FA8A4201686CC4FA7 /* UMTaskInterface.h */, - CBF32A557325131AC55EC112C15A3432 /* UMTaskLaunchReason.h */, - AD318A3A435B909CA84C2566589BA420 /* UMTaskManagerInterface.h */, - 3F4E1673D2E26BD54498782ED06BE11A /* UMTaskServiceInterface.h */, - 5C0B998AC5076DCB3812AF37D0F8AAEA /* Pod */, - B3425CD268E6765814478159986B0B67 /* Support Files */, + 2E15E9FA4264BEC2E31242227599D9D7 /* Recording */, + 20646E28623429D3A257F4EAC59A72E8 /* Reporting */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - 9D6DA2B53126E91CFCC19AC67AB9632D /* RNLocalize */ = { + 9BB58BF7B016AAD79A76E2465296CB42 /* Pod */ = { isa = PBXGroup; children = ( - DC4E164A3994CE19EB733D241DE93CCD /* RNLocalize.h */, - 7629C221B1BBC71159AE39E937940741 /* RNLocalize.m */, - EDAFB4CBEADCA72B3EC0B4B45A5310A1 /* Pod */, - 8F1775316F98F20BBE3EDE19E052CC79 /* Support Files */, + 5893015E458EAD2ED40E594412F3F775 /* UMFontInterface.podspec */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = Pod; sourceTree = ""; }; - 9DA58514AAB0D20A4B33FCF116CF7D99 /* Support Files */ = { + 9BB7C068EB3E3AC467263F08001AFE20 /* Support Files */ = { isa = PBXGroup; children = ( - 01218DADF8441BABFC26F82C320D15AB /* UMConstantsInterface.xcconfig */, + C016B656853BC9D15D256FCBB8ACD0BB /* GoogleDataTransport.xcconfig */, + B33E269DBFF2BE345F8195FBD7BCFB67 /* GoogleDataTransport-dummy.m */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../Target Support Files/GoogleDataTransport"; + sourceTree = ""; + }; + 9CF85FCD94DE84965D442F14BB62DC32 /* notifications */ = { + isa = PBXGroup; + children = ( + FC89837514BFB5DAF3A02142FE2FF30A /* RNFirebaseNotifications.h */, + C5CE032FE16F98F60FB04AFB294C4872 /* RNFirebaseNotifications.m */, + ); + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; 9DD6ABE841F52B2064D36A80D7D5311F /* GoogleDataTransportCCTSupport */ = { @@ -10083,25 +10222,99 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - A07249481F86CBAC444838530F6A3B23 /* Support Files */ = { + 9F2738C51E4C5B2B2C3F7E1F87FA7FAF /* React-jsinspector */ = { isa = PBXGroup; children = ( - 3058CE5E4E73203820980C3571C47FA9 /* EXPermissions.xcconfig */, - 79F82B24DE96786FBBF502CE7923B30F /* EXPermissions-dummy.m */, - 6773CFC3CD5EA288DF36B436EC473D0A /* EXPermissions-prefix.pch */, + A7E92ADA31F792DF7ADCD3DA24416295 /* InspectorInterfaces.cpp */, + EA065A1E76AC4B9E229359E2E6997249 /* InspectorInterfaces.h */, + 661CF1E4823F8EE9F35BC418B992E7E1 /* Pod */, + 1283047626403C5C513389AF32FC718C /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - A0C65556E7BD3AFDF694EC0953E136FC /* Pod */ = { + 9F94049C63B155AC74581A61149F7D68 /* Pod */ = { isa = PBXGroup; children = ( - B1A4D35C3E4D9AA86876621D27EDB846 /* UMCore.podspec */, + FFA902FDA82B5D101D981AA0F4BB1570 /* api.md */, + F725D49F5D5099AEE70D6DC40FCADDF2 /* LICENSE */, + 9AD1B009D59F4DB486CF8F915D4EEA55 /* ReactNativeART.podspec */, + E384F12ABAA7487D7782EFA4732A7CCD /* README.md */, ); name = Pod; sourceTree = ""; }; + A0644BA4FD09CBF9DAF0E2592820B824 /* Modules */ = { + isa = PBXGroup; + children = ( + 79AE735250CAF710BB13678CDD453906 /* RCTAccessibilityManager.h */, + 778735A5E92493559305A10863352B5F /* RCTAccessibilityManager.m */, + 0E01ECF3D95716CC76C2D8D8E6D7B3DB /* RCTAlertManager.h */, + 993B20437B52813555191F9C2E875A4E /* RCTAlertManager.m */, + 916E0498FFADDDFC20485574E2CDD6D3 /* RCTAppState.h */, + DC756D8D350A874AF5246128B5A910BE /* RCTAppState.m */, + 17815C864571987A0F2F6E43990868B4 /* RCTAsyncLocalStorage.h */, + B73C437984846CD10BF9C8FD07020391 /* RCTAsyncLocalStorage.m */, + 2E3034484CFF3719E0A09FDB6C053AC4 /* RCTClipboard.h */, + 0A6529DC992977269D32EC6E31AD7BC1 /* RCTClipboard.m */, + EB519EE03892715ECE983731D559519F /* RCTDeviceInfo.h */, + 3746E701470AD603C00063628AD6BD39 /* RCTDeviceInfo.m */, + 6457F62359D5AF44E194FD0F9CA3D68E /* RCTDevSettings.h */, + 5E6BCDF29D3955943DF8B9519734A73D /* RCTDevSettings.mm */, + A262D3993BCA34A340C58AEE91FD2BFC /* RCTEventEmitter.h */, + 865E39F06A42C6FAC5C5E86CE8717766 /* RCTEventEmitter.m */, + CCEED4CCE6737C7EBF8314C377B09835 /* RCTI18nManager.h */, + F6CD84BF50A0B6A933D0FF22F45F0465 /* RCTI18nManager.m */, + 08036CD9D5C61DBC78EE61751B30F309 /* RCTI18nUtil.h */, + ED641C78B588F31D0AE58DBB99AE6142 /* RCTI18nUtil.m */, + 1F231AD2679B7C9EE706E6BBCDE7D22E /* RCTKeyboardObserver.h */, + 72A255A67FB890E9C38AEEBB2C8C50BA /* RCTKeyboardObserver.m */, + 5B96ABA148C8C2709FC87516DC45228F /* RCTLayoutAnimation.h */, + D2816349F8CD77CBF978F8362602A095 /* RCTLayoutAnimation.m */, + 5BEDCB5D17E18FAF51FB493BBD35A3C0 /* RCTLayoutAnimationGroup.h */, + 6F50D868A6D8C20A7D11B3718ECF40DD /* RCTLayoutAnimationGroup.m */, + 9E9CB065251A7AB1AE576E2211C2E763 /* RCTRedBox.h */, + 0BF1E9074E8FE2966BF6BB750060C419 /* RCTRedBox.m */, + 8107FA806405AE03A6A9EBDF1A1C3599 /* RCTRedBoxExtraDataViewController.h */, + 4814F7E3589300FD164E00A565756AD6 /* RCTRedBoxExtraDataViewController.m */, + D0C65660A495E07C3058EEC513FA0C66 /* RCTSourceCode.h */, + 02B0ECF6D038A17BB0A76F3FFE3BE5EB /* RCTSourceCode.m */, + B15D4BE42508069919D327D1D6247B66 /* RCTStatusBarManager.h */, + 7C87F803809CB9166D92FEB4075DE6DD /* RCTStatusBarManager.m */, + 663B9E0F053B534635FDB576D642174B /* RCTSurfacePresenterStub.h */, + AF3D6B2D719E692B3649250EC186F095 /* RCTSurfacePresenterStub.m */, + FAAAB9B79963906294CEED95863FA077 /* RCTTiming.h */, + 1D2606EA34C5F31C12B0C3E8BAC67D0B /* RCTTiming.m */, + 01E85D58D25E1A8F4B47A3ED7BEFA4F6 /* RCTUIManager.h */, + 6F108073C5E16583055E667DE547B61C /* RCTUIManager.m */, + 917E23C23742F8AB3E9FD3B4B761FB9F /* RCTUIManagerObserverCoordinator.h */, + DB58588FFB3AD14C9A80448F61D7515F /* RCTUIManagerObserverCoordinator.mm */, + 7142B87598A2FAD8025EE5B67ABA1986 /* RCTUIManagerUtils.h */, + 21D6CCA47D1C4248E6A4121A52E968C9 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + A249DAFE4743494069FE8796BB425859 /* Support Files */ = { + isa = PBXGroup; + children = ( + 47031CDDF031ACBD8398A58FFE1F5C17 /* RNFastImage.xcconfig */, + FF5C23759DC629965677C0E16517F4DC /* RNFastImage-dummy.m */, + A9DB10AAD676D54BDC5B0BA990C5C74C /* RNFastImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; + sourceTree = ""; + }; + A29670C1EEBEB28F182E970D10358F56 /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; A2D4494BB40C1934B04A471D2BC227C8 /* webp */ = { isa = PBXGroup; children = ( @@ -10257,361 +10470,239 @@ name = webp; sourceTree = ""; }; - A315F1CE173B9BD7122CE0E22B37C0A2 /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - AEC2517B5577AF2A22FBF2D20FEDCC46 /* EXWebBrowser.h */, - AA8E9C259CC81015A286B0DB81ADB4A3 /* EXWebBrowser.m */, - 3129A0B9FCC8C5FB3CE46EC916967793 /* Pod */, - 3223DCC050EBD1169758D0DC94035A01 /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - A45DC33C70FB05B0CDF1E189E7559BFE /* Products */ = { - isa = PBXGroup; - children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 20D73B80DBEDC9935666EB05B502A6E8 /* libQBImagePickerController.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */, - 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 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 */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - C9708630F9D9C8C32EF0B3C91B9E469D /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - A4F7496CC5C56FA382D58B27DF3E3D57 /* LNInterpolation */ = { + A32D52B14396A99A08C377F07F45D3B6 /* Support Files */ = { isa = PBXGroup; children = ( - 8ABE1F3E3AEB48B6FBDC2DDFC976ACF4 /* Color+Interpolation.h */, - AC6BFAA0C5E0C3BB56F6513C605D6E1E /* Color+Interpolation.m */, - 1DBDEEB7B041D04D9796FE55A9C05BBE /* LNAnimator.h */, - B56C061B5212AB7A9E81B3D23F43A44D /* LNAnimator.m */, - ED799C3A833FF976CE316E5DE44B41D8 /* LNInterpolable.h */, - 5E2B6AD3706960E23A21BA9D9B026055 /* LNInterpolable.m */, - D86B85DFC07E3B163992F6452ED056E8 /* LNInterpolation.h */, - DE1933BF4771FFFE32EEEC5DD49B084A /* NSValue+Interpolation.h */, + 91233D5077C4615EE4975D911982145A /* React-RCTLinking.xcconfig */, + 5487EFDEBE08F253309F245D788F0514 /* React-RCTLinking-dummy.m */, + 30F1E6A76B59630E3B5C684E64F1A61C /* React-RCTLinking-prefix.pch */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - A53DE3DAC77353EF564224328FDBCBD3 /* Support Files */ = { + A343C79649840D10FCB61765CA7BD981 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 39C0AA674BE4190D471D1EC46A006EE8 /* react-native-document-picker.xcconfig */, - 4A8D205EAA3DF8E9251EEC7FDECE8732 /* react-native-document-picker-dummy.m */, - B2585771F09444F0895F31B3152CAA48 /* react-native-document-picker-prefix.pch */, + 80D490F6067594391B77BBDDA317E72D /* UMNativeModulesProxy.h */, + BC8D26FDAA3A3743807DE4F675673AE3 /* UMNativeModulesProxy.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; - A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */, - 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */, + A34410724E041B6BA1007B3D5002EDB7 /* Tools */ = { + isa = PBXGroup; + children = ( + 69F9C5ACECB420400F3061D7B095068C /* BSG_KSArchSpecific.h */, + 39369053D09171D7BA3F40A564596395 /* BSG_KSBacktrace.c */, + 5E148A8AD46E58052ED2D2ADA498EEE3 /* BSG_KSBacktrace.h */, + 4D67CCFDBD0A8587AF20CBFC44540F94 /* BSG_KSBacktrace_Private.h */, + A36B31DDC6BF36C23B2DD57C40D9C567 /* BSG_KSCrashCallCompletion.h */, + B12D8ABB227F9237999EFC479536FF4A /* BSG_KSCrashCallCompletion.m */, + 2B27724826A333FDB5B077AB4C85FBE1 /* BSG_KSDynamicLinker.c */, + EDE0103BEDB08DD9049FB3AA3644A40A /* BSG_KSDynamicLinker.h */, + 10D8FE86334A54267A0944F117EC32EF /* BSG_KSFileUtils.c */, + E8306CD04616B2AE9ED86313F79FACBA /* BSG_KSFileUtils.h */, + 6081C58C563E282A5BEC0262B9287A9E /* BSG_KSJSONCodec.c */, + 11E570372D9B3EF0DA21E72D3FA1D03F /* BSG_KSJSONCodec.h */, + 14128ECA05432211981258AECD55A721 /* BSG_KSJSONCodecObjC.h */, + A420D11BF49824F72E91234613E12031 /* BSG_KSJSONCodecObjC.m */, + 3051558B07ED6E28C55C39714DEFC779 /* BSG_KSLogger.h */, + E21D0B51414DDBED41BAD7B63D53A21E /* BSG_KSLogger.m */, + F4EB053F88B611F207628060A709532F /* BSG_KSMach.c */, + 764CA911BD9503292FE83B55EB9BB8FF /* BSG_KSMach.h */, + C536BD57718575B78DB62CABC81A1277 /* BSG_KSMach_Arm.c */, + CA87F9D481A71CC66F620BEF33CD7625 /* BSG_KSMach_Arm64.c */, + 92FAFDF202C384CEE3BF03AC00043D82 /* BSG_KSMach_x86_32.c */, + 9AE3CFF569E761895AD1DE27867B321E /* BSG_KSMach_x86_64.c */, + C630EA8B1C146DCFB34C7F2C31F5DEFA /* BSG_KSMachApple.h */, + 15BAB140985DFC9F32ED8967ED36A825 /* BSG_KSObjC.c */, + DFE332BBFA9EBF740D1DE60CE7CEFF05 /* BSG_KSObjC.h */, + A17B419C9D8D1BA7FA3AC3634653A103 /* BSG_KSObjCApple.h */, + 635BA6554FFB1530CDB77E46994C2F22 /* BSG_KSSignalInfo.c */, + CD3B9F7721281DC9A75D09D264F25360 /* BSG_KSSignalInfo.h */, + A834FF9AD422C88C1B419D5CEFDDCCD0 /* BSG_KSSingleton.h */, + CB678DC13D310D5F4459BDBDDEF35A46 /* BSG_KSString.c */, + 66C5E1BD69600847A1B33F947722ECF9 /* BSG_KSString.h */, + 3F7241229C438B50D4DCCC6AEFD59D51 /* BSG_KSSysCtl.c */, + 171F3044213232C08FC3D7D6AC89900D /* BSG_KSSysCtl.h */, + A4DF53CC1264A950CE5AC68CC14E1560 /* BSG_RFC3339DateTool.h */, + 55E3EBA9E2084BB088AA32EB8F79630F /* BSG_RFC3339DateTool.m */, + 23B8B3FF66993427CBAC56A542C655C3 /* NSError+BSG_SimpleConstructor.h */, + 287CB52758A01C448AEFE3B81A28CADE /* NSError+BSG_SimpleConstructor.m */, ); - name = "Targets Support Files"; + name = Tools; + path = Tools; sourceTree = ""; }; - A643E0C8B1C81D9865FCDCC8E5E9327D /* Pod */ = { + A42F1F39EC28CE6D6B33D5391948920B /* React */ = { isa = PBXGroup; children = ( - 3AC02873D9422610DB5F06E054004A65 /* EXConstants.podspec */, + 709185A5AC67E20B0BB9AC5549CECFB6 /* Pod */, + E7EDA7BD00EFC92ED14C7C79AB66F33F /* Support Files */, ); - name = Pod; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - A65466AF22A03A768C45F5E10C710390 /* Pod */ = { + A4C725DE0FB7E5759947BA3F79169D7B /* Support Files */ = { isa = PBXGroup; children = ( - 365239D1B9DB69DAC8C7F2C37FD8E0AD /* LICENCE */, - F14C8E8D135B6A2F1462BF1E2B8B2CB0 /* react-native-cameraroll.podspec */, - 85C2F810DDAC6AB0EDDBFC2509AB8969 /* README.md */, + 2F68C060D7E824747CDC2B29175E6A80 /* RNScreens.xcconfig */, + 1355971F5ED604D43C24464B23D2E0A2 /* RNScreens-dummy.m */, + D54DBA93AA2C885672E3FDF167A27787 /* RNScreens-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - A72D5A29DAC565753DE5D62252C19B23 /* Pod */ = { + A546297F934D5C5FCFB9C5F8DF5B79BF /* converters */ = { isa = PBXGroup; children = ( - FAFABC281683FBA7DA1F98A647EDB3C4 /* EXFileSystem.podspec */, + 923A98CB4B829333F4077953AA880226 /* RCTConvert+UIBackgroundFetchResult.h */, + 897A6C14722EEA5FF364F2E0F07C02FE /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = Pod; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; - A8122ADB6F02940FBDD915535FB48582 /* Support Files */ = { + A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { isa = PBXGroup; children = ( - CFCBF330D602E8E5A458555B4D444E73 /* RNVectorIcons.xcconfig */, - 8D1EF7E39CDB9ADE3B7F5F0445365A1F /* RNVectorIcons-dummy.m */, - C8AE3D9124B9EB15E23D6573E367E57B /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; - A94726355293652C82F9E6FA64A17EB6 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 81C5B51E7014177A15BFF9E972CC951A /* RCTConvert+RNNotifications.h */, - E283A197C02B1D1A170E9F452E90E51B /* RCTConvert+RNNotifications.m */, - 85EECCD82C8A497E8D62468A7260FDA2 /* RNBridgeModule.h */, - 67D0B49B14BAAC56A1964D6EFEBAFEE2 /* RNBridgeModule.m */, - 9764E79537B6EFE0D4AE7488876EFA60 /* RNCommandsHandler.h */, - 2104B8C23A492CC02B6E9A259374A039 /* RNCommandsHandler.m */, - A57298DC428C94662BDBC68500643F91 /* RNEventEmitter.h */, - 261D22D100484A59E19499DF1B0DEA5C /* RNEventEmitter.m */, - 766087EF50DBB4DCF9CAD4E38555FD42 /* RNNotificationCenter.h */, - A69B77CF38FB0592800DAAB926F26BCF /* RNNotificationCenter.m */, - CEC5C58801626282B7B517E9151DCD92 /* RNNotificationCenterListener.h */, - 06ECD4866519E509B39FF4090E2C9C41 /* RNNotificationCenterListener.m */, - 2F4C102B81D8A7BF414C6496EC933F2E /* RNNotificationEventHandler.h */, - 91DE53C4047EF5CBF85E16D3333E140B /* RNNotificationEventHandler.m */, - 8F6719ADA43B59D3B4822E81C20CD371 /* RNNotificationParser.h */, - 5F0D8D6369C2064A4C610EDBE99F7690 /* RNNotificationParser.m */, - 783EDF65B20C191BEFCFC41FE0C3F895 /* RNNotifications.h */, - DB9679FCC7A39FFF3AF8B1BE4FF7C457 /* RNNotifications.m */, - 1A177374B29F7DAC869BCF41E1DA5CBD /* RNNotificationsStore.h */, - 43F9A867DE427FE12667E3B2732F311E /* RNNotificationsStore.m */, - 62430ADC842BE7A615225229BF8724CA /* RNNotificationUtils.h */, - 2BB66584DAE73ABD1533A8F4DBDBAC5F /* RNNotificationUtils.m */, - 382DD12C924318781AA8A60028E0A2CA /* RNPushKit.h */, - AD937DF3970AD1236B22AF168378E354 /* RNPushKit.m */, - 403AC9E4E215584A2D0B564D0E27BA8C /* RNPushKitEventHandler.h */, - 3DA79A3ADA53FEDFBD4C46CD89E04C25 /* RNPushKitEventHandler.m */, - 3B0B9D3794B58330676323E66BF8769B /* RNPushKitEventListener.h */, - A05C1AB40A6978655EE7D1A21597957F /* RNPushKitEventListener.m */, - DFA9DBDE41A48B49BB304A4883083B7A /* Pod */, - 61D3F3688835225B54E07DC6CC5A9338 /* Support Files */, + DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */, + 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = "Targets Support Files"; sourceTree = ""; }; - A9DE43E1C8B12BF14BFDB65914F97AB6 /* Support Files */ = { + A672C9F12B317A1FBB1E950BE44B2006 /* Support Files */ = { isa = PBXGroup; children = ( - 474DB7FF9202FF612DB0ECE50AD77E65 /* GoogleUtilities.xcconfig */, - 8EB7A76E1373478AD1844D4833C112B8 /* GoogleUtilities-dummy.m */, - 7D911208FAC51D1BE487A3C73B2B0A3F /* GoogleUtilities-prefix.pch */, + 45C765F1C990C5B20916DEB3EAF2E8E9 /* React-cxxreact.xcconfig */, + 7453488582B0D2756E057B427EBD653D /* React-cxxreact-dummy.m */, + 7FFBC3986D0F1EA250FADE5DD7270A35 /* React-cxxreact-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - A9DFF49188CB7A810E0E1899D772481A /* Support Files */ = { + A6FEC03C86F12A78D7400151E2F9B336 /* react-native-slider */ = { isa = PBXGroup; children = ( - 5F53966696F8F67C32E2F9F18A15E391 /* RCTRequired.xcconfig */, + CC23B0329A9F76B97CD45A0C34B223DF /* RNCSlider.h */, + 59D15163BAA4BC949F7E2166BDD99887 /* RNCSlider.m */, + 7C4A89A5F38EE3C48F7DD6A1F7BAEA86 /* RNCSliderManager.h */, + 22B89E8B7F03CF3AC298D30704C10502 /* RNCSliderManager.m */, + 36C0E1745107A372E53A5F77D37F1957 /* Pod */, + 8A22FFB238A96E7E1526869C32BD2F07 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; - AA6F415D169EDE93AAE4DD617998CB7F /* KSCrash */ = { + A862468E4D841C358D941E163F6C098D /* Default */ = { isa = PBXGroup; children = ( - B8B10D035E45DD492561CD3511AC918C /* Recording */, - BFBF0DE77C4428329D0CC77DBACEC041 /* Reporting */, + 4FA03511063E19F05F4056F42344EBB9 /* Base */, + 5C562902C115D5EDB87121316231717B /* CxxBridge */, + 6FE4A528147AE758565FD221545A55E4 /* CxxModule */, + FD3564D018FAAEA38851A7081A43987C /* CxxUtils */, + A0644BA4FD09CBF9DAF0E2592820B824 /* Modules */, + 1AB1040418D4E3500B764E962A221A7C /* Profiler */, + 68C27C7FD7A70E1CEC24EC5F7705E18C /* UIUtils */, + 4E9F31892FFE76505FA6CAA7C783E38C /* Views */, ); - name = KSCrash; - path = KSCrash; + name = Default; sourceTree = ""; }; - AAEEA23BE1242B6CBA34CE42392D0B8F /* links */ = { + A893D161CE4C7FC5500967862BBFE4F5 /* Pod */ = { isa = PBXGroup; children = ( - 8222E6E89671DE9B232E57F3199A0EBA /* RNFirebaseLinks.h */, - BD33BB56B13458D0C76D6E7F50DD2247 /* RNFirebaseLinks.m */, + D92355593E3B49D9CE0B6F6036E98062 /* RCTRequired.podspec */, ); - name = links; - path = RNFirebase/links; + name = Pod; sourceTree = ""; }; - AD08520F4F3312D4431721B0555A7A23 /* analytics */ = { + A8A63CF2CB40B65FF195415DAF401B7C /* Support Files */ = { isa = PBXGroup; children = ( - BE7A86EE34835C2AAC3104BB3F500552 /* RNFirebaseAnalytics.h */, - A7827BB5D12B6EA3EB7C3B69121E59B3 /* RNFirebaseAnalytics.m */, - ); - name = analytics; - path = RNFirebase/analytics; - sourceTree = ""; - }; - AD6F08191AD2CFE5E0ECDD3C2BD49268 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 2A8215487E2903D340BFBF47AEA0EF16 /* ARTCGFloatArray.h */, - 2BBE193FDEB3045E7C2C8041FAAB6BCE /* ARTContainer.h */, - 1A4D942BA287F50685CC1A52CC189675 /* ARTGroup.h */, - 24FA5A3DD0407A834F248C139742ADB7 /* ARTGroup.m */, - 44D2AEE1A567DCB2CAAF5F24EAE0B7BA /* ARTNode.h */, - 1CF8424614339AAE0B9D5417A5C3464F /* ARTNode.m */, - F1FCF8E02135485E0C23FEFE884CDB48 /* ARTRenderable.h */, - 057103BC1D4CBB368BF4ED05636BBC26 /* ARTRenderable.m */, - B6256FD30234AC09376313337C07EDD5 /* ARTShape.h */, - 8875F1DEF34576C96EFD8153CFB944E2 /* ARTShape.m */, - C1373DAC74BB042609993648986A08F8 /* ARTSurfaceView.h */, - 2F1D8B042A8144C353EDAD10D4E7409E /* ARTSurfaceView.m */, - 1F5523C40E3D425C5338B08EB6FBEE65 /* ARTText.h */, - 94765064943819DB56FCAB98CDC076E1 /* ARTText.m */, - 03A4C7CFD1888902EF175DFBF0A84D81 /* ARTTextFrame.h */, - 3547259B7BCD06701C108F35D34C347E /* RCTConvert+ART.h */, - CDFFF4FECC8986BE16933B24A2A6705F /* RCTConvert+ART.m */, - 3792159BE2DAC09AC0C16AB74E414B2F /* Brushes */, - FDEDDC6B92A4DB1441C1A0458A12B7BB /* Pod */, - 18DCCD421EF1AA81BCA2CAB548857FAF /* Support Files */, - FFABC5BF20009B5CBBC8E72AEA23675C /* ViewManagers */, + 6AA8B96581DBD6338E1DB28BFB424ABE /* UMFontInterface.xcconfig */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - AD81F7D890AF9F21C41E45A9E04A9AFD /* FBReactNativeSpec */ = { + A9DE43E1C8B12BF14BFDB65914F97AB6 /* Support Files */ = { isa = PBXGroup; children = ( - 5AC13BBD2B6DDDED8D1B8741399EAD54 /* FBReactNativeSpec.h */, - 58366BD2BA7804F347EF9FD17EB18D60 /* FBReactNativeSpec-generated.mm */, - F9C055B896D4A9B3E44E0F3FF183DD12 /* Pod */, - 8C7C8A3328F1B85389EC0BC1D8E10D9F /* Support Files */, + 474DB7FF9202FF612DB0ECE50AD77E65 /* GoogleUtilities.xcconfig */, + 8EB7A76E1373478AD1844D4833C112B8 /* GoogleUtilities-dummy.m */, + 7D911208FAC51D1BE487A3C73B2B0A3F /* GoogleUtilities-prefix.pch */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - AE158DFA32AEA6568BE598DB74DECA5D /* VirtualText */ = { + AA4F9B228DD356531036037844088F4D /* Pod */ = { isa = PBXGroup; children = ( - AF84E60852952F964BF0FA1F101767CB /* RCTVirtualTextShadowView.h */, - 76572092726857D1AE6D0A21BE54EC1C /* RCTVirtualTextViewManager.h */, + 75690ECDB02CE2CE7630C26141D36257 /* EXAV.podspec */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = Pod; sourceTree = ""; }; - AEA16954C49C64FAF937C19C9847EEA4 /* Pod */ = { + AB3C5FD4BF069782775E2FB33C2A6372 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - DC138857AEDA2BF16106304502B80832 /* React-RCTLinking.podspec */, + F8523B6728DBA88333757E23E5E13BCE /* RNBackgroundTimer.h */, + 39914856EF6A29A6C2F0D5B1DE42259C /* RNBackgroundTimer.m */, + F63C497BC521CF5EA1DBE5935E0E3614 /* Pod */, + 83F326B0EF9B301778EA8188A30B9C8C /* Support Files */, ); - name = Pod; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - AEB4A9456E0FB922B0D97757CC4ECC18 /* Support Files */ = { + ABC2566CE593935445907D2B5F0B40A1 /* Pod */ = { isa = PBXGroup; children = ( - CDEB6F9AEA99C71466E6C65645B7CC29 /* RNFirebase.xcconfig */, - E55564B49A16C717F3AE7848EF80CEEF /* RNFirebase-dummy.m */, - 2B78DFA800847E6349DD43D660009035 /* RNFirebase-prefix.pch */, + DE92FC4099F9413C30E24F4385965F45 /* RCTTypeSafety.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + name = Pod; sourceTree = ""; }; - AF95F7EAF5D5515A8C8805503FBEF30E /* Support Files */ = { + AD88959A2D1E2B6669ED6ADF51673426 /* Pod */ = { isa = PBXGroup; children = ( - 2B18B92EB4C6BC1EA79F7368F0F2C1A4 /* UMFontInterface.xcconfig */, + CD040C273557F8B259540EC3C6650ECE /* LICENSE */, + 241240DB29A9C77295ACF522FB2C081A /* react-native-webview.podspec */, + 5B449EBF4FCCDBA4E251E892F682BD4D /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = Pod; sourceTree = ""; }; - AFD4719573B3A95C2BC43ABAC5C341F9 /* Pod */ = { + AF3F9621B19C8C2B33528E31A38A290F /* DevSupport */ = { isa = PBXGroup; children = ( - D3749BECB81DA94E2F3AB6A5EF8893F3 /* React-jsi.podspec */, + 7C39E042AF68B539DF732AE394677ED5 /* DevSupport */, + 45E96C23EBEC66CF50595F57D7A40AA6 /* Inspector */, ); - name = Pod; + name = DevSupport; sourceTree = ""; }; - B04D4F5F593B7B8F682CCB4641A75F6A /* EXConstants */ = { + B03EE20DEF8B20D80C6F1C4AD3F8A620 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 6ABB56ACB5DDE3D19E6003FA462CE393 /* EXConstants.h */, - F48B38797ED7980805228D5492EFBC95 /* EXConstants.m */, - 5F07A3BDDE3CA164C9FD326A9150A132 /* EXConstantsService.h */, - 576615A62CCF01EF288B542629ADB6A2 /* EXConstantsService.m */, - A643E0C8B1C81D9865FCDCC8E5E9327D /* Pod */, - B3050F4A4AFF838C84434E3BC25E3495 /* Support Files */, + B57EB7662EF4BC9689BFE45F76E6B5FB /* RCTSurfaceHostingProxyRootView.h */, + 3226B2EDCDCDC805996B2CF568D2619B /* RCTSurfaceHostingProxyRootView.mm */, + A4BDB517C15B3C14E8127A615F35D716 /* RCTSurfaceHostingView.h */, + 683BD0F62B4E7C43F38352CF3A511817 /* RCTSurfaceHostingView.mm */, + 73920868DCA9D64003E58186509D3DE8 /* RCTSurfaceSizeMeasureMode.h */, + D6B20C92C7BB0944A74CFAD9963FE8D2 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; B0908F9A12F60C5E25784090BED1F32D /* Frameworks */ = { @@ -10622,54 +10713,56 @@ name = Frameworks; sourceTree = ""; }; - B185FA8DB6DE8BCC746DCFCD84843D72 /* Pod */ = { + B0BB866DBAAFE3FBFDDFEC623DD5E392 /* Pod */ = { isa = PBXGroup; children = ( - DC4E703D4AF19F9B75BD503261B26FEA /* react-native-slider.podspec */, + 3667912BB0E4063AE7F6A79BEF7EE853 /* LICENSE */, + 60A95D7A6C351111625F9708F97A0CE1 /* README.md */, + 61E93DAC694E327764A19EC01BF1E4C7 /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - B2E4EAA18DA111D623DD9CD4E24E433B /* ios */ = { + B13B232102586C9BBCD8C1E868A83532 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 79C5388E824750884E4EB7E24A809B4D /* RCTTurboModule.h */, - A90834212C898DDA87F365CE3ECF33CE /* RCTTurboModule.mm */, - CF00EAF341CD4A19D2EFFD862B84246A /* RCTTurboModuleManager.h */, - 2CEBC8353E3E834E7413F17CFF340F1B /* RCTTurboModuleManager.mm */, + 1D4B743EB144717A68239203E5483B35 /* RCTSettingsManager.m */, + D15E2567AFC9565FCB6FFD70F66E73A1 /* Pod */, + 35B95A99CF6CBC3EA3BA21BBF63401B1 /* Support Files */, ); - name = ios; - path = ios; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - B3050F4A4AFF838C84434E3BC25E3495 /* Support Files */ = { + B22683D0F4DBDE4F2DC158D42FDC1429 /* Pod */ = { isa = PBXGroup; children = ( - 1A95659DAB37834A199DC8808A20E14C /* EXConstants.xcconfig */, - 82E1F8EB4CEA730117BCBFB07397E65D /* EXConstants-dummy.m */, - 66606FCFF5F5FA60DE687B316C7FACB2 /* EXConstants-prefix.pch */, + 5021DDD5538BE871B992D0E5843333D7 /* KeyCommands.podspec */, + 25D29A1CA5B4AAC43112ABF5B6FECFA5 /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = Pod; sourceTree = ""; }; - B32D93842202965B4B3396D8203DD586 /* Interfaces */ = { + B384BACBA4465D8684A8E7DA9B8F2C43 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 5B3010582BB4BE79701A9A48C3BA91DB /* EXAppLoaderInterface.h */, - C4131C059F65B93F9CB55EF0E7A391D6 /* EXAppRecordInterface.h */, + 09D0D29F8226040107B7428A81702616 /* UMPermissionsInterface.h */, + 9EC989E3BC944B890AB20E840FB0FB74 /* UMUserNotificationCenterProxyInterface.h */, + 333321970107809D96BA6B514F52FEE9 /* Pod */, + 2A2C4F272DF334CCDA5D6BC991FFEF81 /* Support Files */, ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - B3425CD268E6765814478159986B0B67 /* Support Files */ = { + B3BDF533E0A7C698DE70FCFF6176D613 /* Pod */ = { isa = PBXGroup; children = ( - 60F004405BDCCF4A63E5BFA40B429733 /* UMTaskManagerInterface.xcconfig */, + A5F7D2922048E977CCEC9E6FF8F6CAD1 /* LICENSE.md */, + DE21C9FCF6884FFD5A4A37EB846FD9CE /* react-native-document-picker.podspec */, + 87F1A0E4809C3E1D5E8B51C00DA77B27 /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = Pod; sourceTree = ""; }; B43BCE68FA18FCD4C43D95D92739361E /* Support Files */ = { @@ -10681,22 +10774,27 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - B5D4E3F75BE2427EA10E8BE55D9580A4 /* RCTBlobHeaders */ = { + B49D64535E03ADD2A23158ED412F4CE9 /* Support Files */ = { isa = PBXGroup; children = ( - B130DB6C126367A921732DC34C008749 /* RCTBlobManager.h */, - D50ADBEA301ACE724E39EEC59E7D7401 /* RCTFileReaderModule.h */, + 7E23BA7020ED443E0AD49AF24EE2A911 /* React-CoreModules.xcconfig */, + BD3906522CB7A056BE7B533EE7AAECF0 /* React-CoreModules-dummy.m */, + F78B0019ECC77F4C9916CB73223B93FF /* React-CoreModules-prefix.pch */, ); - name = RCTBlobHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - B606A5FC15B0DFE335D7F030200EBF29 /* vendor */ = { + B534FE158316E300D4C46EA3F8D8B86F /* RNBootSplash */ = { isa = PBXGroup; children = ( - D316A1920155D109DF49F616AA96DE07 /* bugsnag-cocoa */, + 2C75A9118CBE7C8E482568B6AC7B4379 /* RNBootSplash.h */, + BAFF9EA80365601C35C5B14B6FBE63ED /* RNBootSplash.m */, + 24D5BA2EBE22CDB1EE0C90146988075B /* Pod */, + F80D0F5EEEECBEA3D0F461427BA2C894 /* Support Files */, ); - name = vendor; - path = cocoa/vendor; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = ""; }; B628191C9B4E6D543C5C0CAEBAAEF732 /* Support Files */ = { @@ -10710,15 +10808,15 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - B6D752623694EB32C6AAE1A24436E106 /* Support Files */ = { + B69A245902D1D8E53EE695B22B5627DA /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 6EC615EF4BA05E27B26ADE753138A38B /* KeyCommands.xcconfig */, - 5A9BCE5AD36B5D64FB7A5386F90E0E25 /* KeyCommands-dummy.m */, - 8F15DC90591319AE0F8169B8E142527E /* KeyCommands-prefix.pch */, + FDB3CEAA4681EF925504917B6789C816 /* UMImageLoaderInterface.h */, + C708CE82145E8F5B9912E66A59CB0266 /* Pod */, + E308FA8CBBCA7C131FE0083394428323 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; B7057D6CE0D647CEDD40A76A52A901E6 /* Frameworks */ = { @@ -10730,134 +10828,41 @@ name = Frameworks; sourceTree = ""; }; - B7F3DED37DA0E988E50EBB027764FDA6 /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 345F976365AFBA8F443AD4D00A4CFDA0 /* UMFontManagerInterface.h */, - 01F351481C4C4AD52E34BBA059E86E94 /* UMFontProcessorInterface.h */, - 6281A3D231005442825FFA9A1E8A8EB7 /* UMFontScalerInterface.h */, - 5F142FF8DF455A8478AA740653779631 /* UMFontScalersManagerInterface.h */, - 73F51729EADA8C3C94FDA5D700569702 /* Pod */, - AF95F7EAF5D5515A8C8805503FBEF30E /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - B85C8098216EB952D5CAF5AE248F42C6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 73C73917746D1C706402084F66480D3C /* React-RCTLinking.xcconfig */, - 2CBE7D5A59B8F1DBBEF688B1E0E63755 /* React-RCTLinking-dummy.m */, - A505B77439BAF04D62596D4734B7D53F /* React-RCTLinking-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = ""; - }; - B890217A44B0164CCB0F7716B1AAA120 /* React-RCTImage */ = { + B75B5E579D4F12B47B7CC00DD581C961 /* Pod */ = { isa = PBXGroup; children = ( - A3A7F451374FFD7CAD3F7A9D27A4E07E /* RCTAnimatedImage.m */, - 0E1B7BD37A18BB8812DCE5135F5A3545 /* RCTGIFImageDecoder.m */, - CF3515D6729AED91017203BEFB76A927 /* RCTImageBlurUtils.m */, - E4A12E5FA43415EB87EF2E4A2B8EB6D2 /* RCTImageCache.m */, - 7DFE80CD1D3847735799215D0038E5B4 /* RCTImageShadowView.m */, - 8F7EFA802B9AF054C0A6636D9631353B /* RCTImageUtils.m */, - 7434BF0CD9A334F8BA077BD5E0DC99A7 /* RCTImageView.m */, - 26647F2F0EE10DC5FA97C8E5AFDD0946 /* RCTImageViewManager.m */, - 762C67DDB2F53C56F04D6FA1783B9ACC /* RCTLocalAssetImageLoader.m */, - B81A4E8E783D48DF300F93EEB5FAC970 /* RCTResizeMode.m */, - F7870E819F397BB6F0206D325F176A30 /* RCTUIImageViewAnimated.m */, - 8A800B2443F3EA277639E78482FF38FF /* Pod */, - 632DB00B21BBAE8AE4875273C3426981 /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - B8B10D035E45DD492561CD3511AC918C /* Recording */ = { - isa = PBXGroup; - children = ( - 4FE4BF39591C744FB13550F980019EDC /* BSG_KSCrash.h */, - 9FA8156A453D95D792A2B3FFF1EB2115 /* BSG_KSCrash.m */, - 4416AC2D34F8B2EF4FE7A40D7585AB24 /* BSG_KSCrashAdvanced.h */, - 1E7BD073E8E234343A349355E2A8D013 /* BSG_KSCrashC.c */, - 010A9585A33A6AEDFD199B7698A58351 /* BSG_KSCrashC.h */, - 6B19257A0685B3D5F7675288A71E087E /* BSG_KSCrashContext.h */, - 739B56805E685EF005F087AB1580E6FB /* BSG_KSCrashDoctor.h */, - A6957D150126F7F8A2E99FAF38C9F03A /* BSG_KSCrashDoctor.m */, - 09BE3D4D922399E13F4DB9DD6E84A795 /* BSG_KSCrashIdentifier.h */, - 1941D4FA114443ABE1991F5E16908ADE /* BSG_KSCrashIdentifier.m */, - 3DE8B595C6FE9F6B00706B8E1B2084FC /* BSG_KSCrashReport.c */, - 279D7FB768925673400F832A252B9F6F /* BSG_KSCrashReport.h */, - A62F549218161C0D41A48E0C6C0903F3 /* BSG_KSCrashReportFields.h */, - FC30379579DDE50B5E4A40FF067AC181 /* BSG_KSCrashReportStore.h */, - 9DCA5053AD6E0FAA24E10ECC578C80C3 /* BSG_KSCrashReportStore.m */, - 56E6BE4C0A0F3C9A8D73C1385FCA7F3E /* BSG_KSCrashReportVersion.h */, - FF2E7C1055D1900AC0D40108F1EC2519 /* BSG_KSCrashState.h */, - D1072D0D3C78AF0A78D488891DA21D4C /* BSG_KSCrashState.m */, - ED17BB475760E5EB1808B1009503CA17 /* BSG_KSCrashType.c */, - 04ECA724DB9F5B53FF34C132300B76F4 /* BSG_KSCrashType.h */, - 74660FF5F13E46FC9DF4685232312B5C /* BSG_KSSystemCapabilities.h */, - 815A097A50483150114140D813782E8A /* BSG_KSSystemInfo.h */, - 938D0FF3A492BC685E470C27C1300F78 /* BSG_KSSystemInfo.m */, - 563A54805F9E15AB3E1073061A1A6257 /* BSG_KSSystemInfoC.h */, - 17D8595D86B3D970F7435F253F649925 /* Sentry */, - 3C4FB016655DA24C67009ADBC0E79EB8 /* Tools */, + 33D1B9B1D3E180C731955B7C3CAA5C1A /* README.md */, + B7191682782B79DBB433353927D0DCF8 /* RNRootView.podspec */, ); - name = Recording; - path = Recording; + name = Pod; sourceTree = ""; }; - B9A1C50F490F300F1E8121ED9AE6C090 /* KeyCommands */ = { + B987258FF064BE4448F1B0F823868E8A /* Pod */ = { isa = PBXGroup; children = ( - 8454051B9054E083A8BBA22AFA4C34CD /* RCTKeyCommandConstants.h */, - B67924DE22F31B255F270F9ED7C76D9B /* RCTKeyCommandConstants.m */, - A5F908369E5111C116B8783DB6EC8F60 /* RCTKeyCommandsManager.h */, - E0AF047A26BCAEC965BF776CCF2C99A1 /* RCTKeyCommandsManager.m */, - 701928D8B1040333734C82F19CA66677 /* Pod */, - B6D752623694EB32C6AAE1A24436E106 /* Support Files */, + 54AEF1093FF817DE71498574A192EAA6 /* LICENSE */, + 1EB25E45A8E61C16D680DAFB1A4FD7C0 /* README.md */, + 8CF82B952363DA3ADAA89A7DFEEAD381 /* RNReanimated.podspec */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = Pod; sourceTree = ""; }; - BABD2774BD5D5D34136CED3D0505D1C8 /* Support Files */ = { + BA268D585A6DE6D5337F4D2920CCE801 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - C605A06228EE75A8AC667EB6CE5A7240 /* RNDeviceInfo.xcconfig */, - DD26B32FF25148C61667F4AA76D7922C /* RNDeviceInfo-dummy.m */, - B88A3E486CEBEDE16DCD7F7A10044EBA /* RNDeviceInfo-prefix.pch */, + F93C9E3B47C0C860974A39F9CE15FC7C /* RCTVibration.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + name = RCTVibrationHeaders; sourceTree = ""; }; - BBB8F80F689B282C1CCBEFC3E5D307C7 /* UMCore */ = { + BAC5EA33C33854E1B953102AC93BFFA4 /* BaseText */ = { isa = PBXGroup; children = ( - B0E8DEC631EDAB019E6D5C2B1F3220F9 /* UMAppDelegateWrapper.h */, - 95568BB26629A00A991E46044F0D42A6 /* UMAppDelegateWrapper.m */, - CAB91B464A9EA80B3D2C485EE625F1FF /* UMDefines.h */, - EE7E580A039E778B60AA7E72B7AA8F26 /* UMExportedModule.h */, - 3CBA29BF4065BC799B3EBE1305390E35 /* UMExportedModule.m */, - 0E6EA0D4D0F0F3E78CA9E164E2F117F5 /* UMSingletonModule.h */, - E279B2EBAD17F0B7B32DA76048F8ABC5 /* UMSingletonModule.m */, - 6705BB7EFD85D083C3CA3150A8938A69 /* UMUtilities.h */, - A102FCDC3902B0B2F58E9639E0CB1031 /* UMUtilities.m */, - BF9E85E86408817BA6A541374913C4DF /* UMViewManager.h */, - FEEDBD95631D1F435453BD192A38C031 /* UMViewManager.m */, - A0C65556E7BD3AFDF694EC0953E136FC /* Pod */, - 822B8CE2D1F60ABE7DC3F68712B84334 /* Protocols */, - 87CC25F89C3BD051E93DF2907E4579C7 /* Services */, - F49B9A4F2D7F2A326573EFEBC66FF543 /* Support Files */, - E6F30ADDEEBCE5B8C87443D189F38921 /* UMModuleRegistry */, - 0A1617CADBC072C287168605F7F273E4 /* UMModuleRegistryProvider */, + 381856C980253139B3428125818491A1 /* RCTBaseTextShadowView.m */, + 493C3D7C67521CA19A82E045A4232B9E /* RCTBaseTextViewManager.m */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = BaseText; + path = BaseText; sourceTree = ""; }; BC3F281D4042AA3A488983F130485E06 /* Support Files */ = { @@ -10887,202 +10892,356 @@ path = GoogleUtilities; sourceTree = ""; }; - BE13A37C3B1A58DE9956A65F7CD5B7E8 /* Support Files */ = { + BE77B6D45E0877B51DFA487D2C9B26B5 /* Support Files */ = { isa = PBXGroup; children = ( - 40535AA392D12A73F01C4509C5AE5135 /* UMFaceDetectorInterface.xcconfig */, + 09070D0B74632AFFF5B70770E9EBEB18 /* react-native-appearance.xcconfig */, + 7ED69810CAF7C92E99EF316EF1F1D6BE /* react-native-appearance-dummy.m */, + 7CF9B04F09A6168A21F276707486B603 /* react-native-appearance-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - BE56B0D729345FA92FB2D3D4A9B4A39E /* Support Files */ = { + BEEB79B9BDDC6F5A18C8C4E44EBBC50D /* Pod */ = { isa = PBXGroup; children = ( - E3E71A093C520CA7ED9048BCED657CFC /* react-native-webview.xcconfig */, - 57CEAE5744147AFDBE5B69D1B05C0320 /* react-native-webview-dummy.m */, - D79675CD72D4C6A8C5E442FA8887B426 /* react-native-webview-prefix.pch */, + 9ECAAC7E5E7900D26F0D5B98A79562C9 /* React-RCTBlob.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = Pod; sourceTree = ""; }; - BFAD6D4744FE7A5CA0400A7A41B200C2 /* Support Files */ = { + C141129C2EDABB3385DB413934383AB2 /* EXConstants */ = { isa = PBXGroup; children = ( - FC31275F9ABD8F55319DCF32B0940A3D /* UMReactNativeAdapter.xcconfig */, - D1DE27793D9272C8C48580DD15DA9735 /* UMReactNativeAdapter-dummy.m */, - 4335E3F445366608B9126A6898AEB23C /* UMReactNativeAdapter-prefix.pch */, + A7F4F3B8CF85FF6088AFBDD2E0B9CF85 /* EXConstants.h */, + 4DA1A8CE0E5F92EC09329DAFFB686E7D /* EXConstants.m */, + 902409A68233CED959F0877C1C63B70B /* EXConstantsService.h */, + 6B96B93533AE26582BA9FE999710B9DC /* EXConstantsService.m */, + CF380164D3F47A3E2C2B8D348D9114CB /* Pod */, + DDDE884563E34B92476F1EA9C56FD899 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - BFBF0DE77C4428329D0CC77DBACEC041 /* Reporting */ = { + C1436D92D23FD6DA8B7E11E1F05DD604 /* UMCore */ = { isa = PBXGroup; children = ( - 2EDA720D86857C66FDDE61029A5F98D8 /* Filters */, + FCDF7E96AF9FC5C61134B0F1733031C0 /* UMAppDelegateWrapper.h */, + CD5CDDC71792D56DF80844D40CC3A503 /* UMAppDelegateWrapper.m */, + 4595505ACB57B745C450588D2EBEE357 /* UMDefines.h */, + A63674238D8FC2FD6C1124AF57DC4BAC /* UMExportedModule.h */, + 06595D20C451CB9C2F9AB7EDDD7A7C95 /* UMExportedModule.m */, + 21B1789B432E0A8183D470E042D37360 /* UMSingletonModule.h */, + 278F6167215D8A0D4E56C3930C73AAB1 /* UMSingletonModule.m */, + B462A58ECA611911C0FCF32DC87B4230 /* UMUtilities.h */, + 6F973FD63C7F1B72112F3D18E7D73ABB /* UMUtilities.m */, + F2743ADE8B8346F229A820A6EE59C6C3 /* UMViewManager.h */, + BD7C631C3703B5512F6E0CA99FA0F460 /* UMViewManager.m */, + DEB5644C1B54492EC711E8B73255C063 /* Pod */, + 5AA35265B5CA9728F5792EFCA3742B1E /* Protocols */, + 93BCAF93DE5A44BB50FA5BC0E8EE2637 /* Services */, + 5BEF79FD74E5AE114A88A6068A617BE9 /* Support Files */, + 36336A19CC852D958C4CB5D586AA7554 /* UMModuleRegistry */, + FE679DDE2AAF10E99628D09BB0C548B5 /* UMModuleRegistryProvider */, ); - name = Reporting; - path = Reporting; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - C34CE77F519ADFF11FD1669180807851 /* Pod */ = { + C19244DA2F8AE7DB164FA03481E29DC6 /* database */ = { isa = PBXGroup; children = ( - A2D92EDA14FB70BD74F8A0926D001AC4 /* UMConstantsInterface.podspec */, + F31A9A59A052D6F7EB940F9D3A6D79CD /* RNFirebaseDatabase.h */, + 375FA80AE5E32155B7FDD0548CFC3EFA /* RNFirebaseDatabase.m */, + 6D8A8165597AAEAD5849EA515FA16255 /* RNFirebaseDatabaseReference.h */, + 759104B0050089B19CC3C65417077CE1 /* RNFirebaseDatabaseReference.m */, ); - name = Pod; + name = database; + path = RNFirebase/database; sourceTree = ""; }; - C36539E990D704ED9CFD89FF78042F2B /* Support Files */ = { + C2E802E80CD449B549ADBF0BD073A45F /* Nodes */ = { isa = PBXGroup; children = ( - 2AFFB27207A0900BF2C038D349B11237 /* react-native-keyboard-input.xcconfig */, - 3DB5B29BE601891C479387CC8004CED0 /* react-native-keyboard-input-dummy.m */, - 5E9D85D29B56F03302A77FB682329411 /* react-native-keyboard-input-prefix.pch */, + B12B68247A234FE78763DFE6502E44F4 /* RCTAdditionAnimatedNode.m */, + DF6D5385DA62C217BB2584B0B4FBFB6D /* RCTAnimatedNode.m */, + 9D2250641AABAAB4E71491EE6724821C /* RCTDiffClampAnimatedNode.m */, + A339E7BB39F879D32110D7332480B700 /* RCTDivisionAnimatedNode.m */, + AF17EF16E047477EDFCBEC50DDE29751 /* RCTInterpolationAnimatedNode.m */, + B4DF9F94C2A65E6E1204DB8D24D00840 /* RCTModuloAnimatedNode.m */, + 904837736D2EA97FF81880EF770E0569 /* RCTMultiplicationAnimatedNode.m */, + E2EF82F5CFDFF78C6F58575C21FA511E /* RCTPropsAnimatedNode.m */, + E45D3E7A747D70DB0D4B573D45387E46 /* RCTStyleAnimatedNode.m */, + 4CC27B843B8222C75BDC8FB535C8E008 /* RCTSubtractionAnimatedNode.m */, + F7D796D2DD86DD6951ACA54F5EA194D3 /* RCTTrackingAnimatedNode.m */, + B35F9586E3BACE323633DC20F8EE17F6 /* RCTTransformAnimatedNode.m */, + C041813BC41F2F49DC9C0918CFD786D9 /* RCTValueAnimatedNode.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + name = Nodes; + path = Nodes; sourceTree = ""; }; - C37A559F8E7C8A57EDD40F9D78C5EEE1 /* Support Files */ = { + C33F2550BE5B2602617C1D8AA9A723C3 /* Support Files */ = { isa = PBXGroup; children = ( - BC423AA734E88E2A9EA82E46CEC34185 /* react-native-appearance.xcconfig */, - 0BF80050453E99EB51AAF86B96B85A69 /* react-native-appearance-dummy.m */, - F39B04CCFA3F148F06D731288BD214C8 /* react-native-appearance-prefix.pch */, + 5A5B58AC596FF1D31119BC9BB74E7A65 /* react-native-keyboard-input.xcconfig */, + 8881B621F12A407767CC2F6FDCC171F9 /* react-native-keyboard-input-dummy.m */, + E7AC99FA8503EAB4FF91CA0287712646 /* react-native-keyboard-input-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - C39A73AE9BE50B6092967315A9411392 /* Pod */ = { + C39554A459A2F2CE674EE14558D958FE /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 3A910A5404BD6BEA34F840291E25F0A5 /* LICENSE */, - CBC761826796BEEA6FF281D2615FF1B8 /* react-native-jitsi-meet.podspec */, - F08DC70B9F75291C86550501FF30B4F6 /* README.md */, + CE4CE417EB7BCE41F7D73D710299335F /* RCTConvert+Text.h */, + E81242441E9F22364F9B01F7005A8B54 /* RCTTextAttributes.h */, + 43B81BFD13C51E703ADF3467AF47BF75 /* RCTTextTransform.h */, + EAB512351C613587A2EC0C0D60E79F57 /* BaseText */, + 00EE4807FC770C5023A44F1E49357C00 /* RawText */, + 1F1D2421669C7288D6A492641DB97406 /* Text */, + 21BA86A999AEE7558DFCD0866E7AE415 /* TextInput */, + F187C7ED4938A8BB32DFAAB748050947 /* VirtualText */, ); - name = Pod; + name = RCTTextHeaders; sourceTree = ""; }; - C4192A30F42F65B9CA31A3F75145F44E /* Pod */ = { + C4AEC3EDA3A21F521401FF32E28A5E14 /* Support Files */ = { isa = PBXGroup; children = ( - 77404CECA6ADB870A32FF8CE54134D15 /* React-Core.podspec */, + 4527CA9D0BE34892B889E0EB539D1E04 /* react-native-keyboard-tracking-view.xcconfig */, + 23879EEFF8CA9AF370F72C443F440029 /* react-native-keyboard-tracking-view-dummy.m */, + 62F23DFADFD7C1BD95A7F91B0D101DC8 /* react-native-keyboard-tracking-view-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; - C67AE4ABB8F0B5A64023C9470CD5DA3D /* DevSupport */ = { + C708CE82145E8F5B9912E66A59CB0266 /* Pod */ = { isa = PBXGroup; children = ( - 9C5238590F5F1B8A4BACB6E8429073F1 /* RCTDevLoadingView.h */, - 737AC3F710407600C85F60444DB9E625 /* RCTDevLoadingView.m */, - 27930C8F727B16DC3C632B02F0F45198 /* RCTDevMenu.h */, - F2EC5EE4A9961AF30801FA23083E893F /* RCTDevMenu.m */, - 20E78353CA089C0AA42E7A32E86FC6F0 /* RCTInspectorDevServerHelper.h */, - A2D3ADBBA671BB5300DC2F47A7AF9B4F /* RCTInspectorDevServerHelper.mm */, - 86BFA127CB6E41E804BE65C9570EBBFB /* RCTPackagerClient.h */, - B2BF55B7DF5F7DC442EA9112846E3F85 /* RCTPackagerClient.m */, - D8AC4269391716B6940C888AA4DD5451 /* RCTPackagerConnection.h */, - 6D4C3338BEAB4A17E8FE3F52BE87DCF3 /* RCTPackagerConnection.mm */, + A8FFE2B0F50B210D155CE956DF753EF0 /* UMImageLoaderInterface.podspec */, ); - name = DevSupport; - path = React/DevSupport; + name = Pod; sourceTree = ""; }; - C79BA7DCBC001E8028B3AE6C51C8E6D1 /* React-RCTVibration */ = { + C71928742805931ED72422B4D5A1685A /* Support Files */ = { isa = PBXGroup; children = ( - C76EC544F4F5B513784C1FBFD74E18DB /* RCTVibration.m */, - 852A4CCC3A3E60D103968387B14F6CFA /* Pod */, - 8E8A0A4E6757406CC75CEC8255821064 /* Support Files */, + 06F614576935AA84BD0BBDDED3E4D8CF /* RNDeviceInfo.xcconfig */, + B4FA519078044EB4C4E950F1ADBF33A5 /* RNDeviceInfo-dummy.m */, + 75038038FFFF6C1ACEAA73365AD0316D /* RNDeviceInfo-prefix.pch */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - CBAA1CA4B931015D313EA6734DD9ED57 /* SurfaceHostingView */ = { + C749C77ED08CB295E105277FDB48FB05 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 6606E37A9C09CA729C7D2FC244FEC2A4 /* RCTSurfaceHostingProxyRootView.h */, - 9B4BC88601EC21E02217769B9B1ECE29 /* RCTSurfaceHostingProxyRootView.mm */, - 6565D82479C35DC072E05F079F25F281 /* RCTSurfaceHostingView.h */, - F7D2359A2E6F37683E388997567A5424 /* RCTSurfaceHostingView.mm */, - 83D05ED53DF37014DB28AD717BCDAD9F /* RCTSurfaceSizeMeasureMode.h */, - EBC7E845D42BE5AC021FCE397D926B2B /* RCTSurfaceSizeMeasureMode.mm */, + 94B62688B975B12BD4CA0D7839A71AF9 /* UMFaceDetectorManager.h */, + EB54E4D199075C3DCD0B668F7F4A2828 /* UMFaceDetectorManagerProvider.h */, + 5AC4395CCD8088A447C988A56E12D803 /* Pod */, + 8AAA417DF34B9138E8D712B845A9616E /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - CC2CA0D4B89DAFFA98F66D748A68B844 /* React-RCTLinking */ = { + C90AC8917D4345C583881C4B0AB602D5 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - C87A3F26A69C3761DF2F98B5CD940471 /* RCTLinkingManager.m */, - AEA16954C49C64FAF937C19C9847EEA4 /* Pod */, - B85C8098216EB952D5CAF5AE248F42C6 /* Support Files */, + 2631E243EF61902279E4E44BA8274AD3 /* UMViewManagerAdapter.h */, + DACA43103E6BB038DB59FE3C1706956F /* UMViewManagerAdapter.m */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - CD5A20B908A8009A093A55D6090D0E1E /* Pod */ = { + CAA493CC1FF46313924D4667DD07EF19 /* ios */ = { isa = PBXGroup; children = ( - B17AB73A2409F95CC5ADD1D3B029502C /* LICENSE */, - CCB873A8E8181B33642937770A53B29D /* README.md */, - E28D2E3B1729290FA8F9C8260B02D0B0 /* RNFastImage.podspec */, + 4AB262E6172FDB370844D045066A5FA6 /* RCTTurboModule.h */, + 5D1D1E6D24035135D70D5B0FF632CF22 /* RCTTurboModule.mm */, + 8A0DD5A63AEC5703EA492659F41BD75C /* RCTTurboModuleManager.h */, + 856D0994BC5738D396C97A458EF678CB /* RCTTurboModuleManager.mm */, ); - name = Pod; + name = ios; + path = ios; sourceTree = ""; }; - CD8AB6A5B57EDC3B869D2DCA94FB3B80 /* KSCrash */ = { + CAEAA0D45CC461F7CD5E985371E1038D /* config */ = { isa = PBXGroup; children = ( - 82B420424C9845148E4829B859D2B458 /* Source */, + C4F0617EB699F61CEC22F253F934A307 /* RNFirebaseRemoteConfig.h */, + D83C6732A053303219222DAD44578A89 /* RNFirebaseRemoteConfig.m */, ); - name = KSCrash; - path = KSCrash; + name = config; + path = RNFirebase/config; + sourceTree = ""; + }; + CAF687B548C894235C3951AFD40A03C2 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 62D511CAAE93578DB3C9BCF27814DDBB /* BugsnagReactNative */, + DE046E8ADECF535D4C123AFF7549D5C5 /* EXAppLoaderProvider */, + F0A826851B17765D44ADE27A7175C68F /* EXAV */, + C141129C2EDABB3385DB413934383AB2 /* EXConstants */, + 9924F206CD6206B3E5A268EFB71F2C09 /* EXFileSystem */, + 807F30CD019A9B425C6DF02E7386160E /* EXHaptics */, + 421283CB37B144422D71F4B2C0A74A18 /* EXPermissions */, + 715FB4ED6E27F456AC09171100A87B0C /* EXWebBrowser */, + 450B5FCF710FFA64AF6B0426DFD2C915 /* FBLazyVector */, + 19F8FB735B2A2F3F1E7B0FC1C6277004 /* FBReactNativeSpec */, + 5CA1631F0A08BAB0BF17CE2F20E8D1C2 /* KeyCommands */, + FAA9EF60B70C58DF39178CEB3E1E44A4 /* RCTRequired */, + 62A2B1EDD4BD93A6D10C27B2C235DF56 /* RCTTypeSafety */, + A42F1F39EC28CE6D6B33D5391948920B /* React */, + 3C84EBE16DDBC0CCD3A6C80920B40F48 /* React-Core */, + 2D5EFDAAD51FF4E808F66007D18F30B0 /* React-CoreModules */, + 37EFA389C9C279A1FC93172649E85CF7 /* React-cxxreact */, + 589A4425B55B2618EA8B89AA587655DF /* React-jsi */, + DF4DB0198AF0BBB3E2B271B9FC81A0CD /* React-jsiexecutor */, + 9F2738C51E4C5B2B2C3F7E1F87FA7FAF /* React-jsinspector */, + 73B14A62FEB10CF2DBB63C07E51CB718 /* react-native-appearance */, + AB3C5FD4BF069782775E2FB33C2A6372 /* react-native-background-timer */, + D4DC8DFB469C6AA69C5780A489695DC4 /* react-native-cameraroll */, + F1F510A70D1B0EBE73E9415866EE712B /* react-native-document-picker */, + 5F07894D6A20CA111F8C89846A6330CE /* react-native-jitsi-meet */, + F250F8BFEE9A4EFECD089474724A1D74 /* react-native-keyboard-input */, + 6CC35CE8D9C55C0195267D876162C85B /* react-native-keyboard-tracking-view */, + 90878DEA6362363F30D369BCCE851B36 /* react-native-notifications */, + 6045ACBE05A93188E10555402DDAC31E /* react-native-orientation-locker */, + A6FEC03C86F12A78D7400151E2F9B336 /* react-native-slider */, + 118608F192A92FF37C9E917A6CC06F58 /* react-native-video */, + FFD5DAC945FE3281E8C2251A37C1600D /* react-native-webview */, + E2B2F60233F47F8EDC6D749D77E61272 /* React-RCTActionSheet */, + 3B83F9CD18B37D9EB9BC17B14C89B3F1 /* React-RCTAnimation */, + 8E5CC96AF68E970486CC6227DBA54397 /* React-RCTBlob */, + 986B4C6DB4CFA5F5626E3E5B3955E88B /* React-RCTImage */, + EBD95EC698E3BBE6B6E7863A142DC565 /* React-RCTLinking */, + 76629C7951E54BCA4136E3AA31D2CB67 /* React-RCTNetwork */, + B13B232102586C9BBCD8C1E868A83532 /* React-RCTSettings */, + 11064591AAAC84CDB081D331031E4D11 /* React-RCTText */, + 5C74FB555B4FAEA2F47E36601407CEAA /* React-RCTVibration */, + E9929E8DF5DA35D35EC24B6C7F7B13D9 /* ReactCommon */, + 33E6392BFCE96F4C629B93AB36EE7457 /* ReactNativeART */, + 375482B2C02DE2F203E50052B9A938B4 /* rn-extensions-share */, + 7EA2163D67476FA8466B97974DFBA348 /* rn-fetch-blob */, + 3B446FEB8459CFDF3C724712300C4EDF /* RNAudio */, + B534FE158316E300D4C46EA3F8D8B86F /* RNBootSplash */, + 5184AB391334154A4B55BFE1E9E1B47B /* RNDateTimePicker */, + 436210F0061D75846CFF4B450B2793EF /* RNDeviceInfo */, + 3E28CEFBC7B1AC47803BC4DA2D15D3A9 /* RNFastImage */, + 8339C597DF1A0825B36CA0BE61964389 /* RNFirebase */, + 824167380D731F7F86532A1225B61449 /* RNGestureHandler */, + 27578AAA8B10C79C9233311F24A0CD40 /* RNImageCropPicker */, + 00FE6A1B71BE321C0F10424C3EE39E33 /* RNLocalize */, + 5AC06D0E4BD00E50AC27F1A738EDF9D8 /* RNReanimated */, + 6058E9AAA1164A7BD8BB1EB31F980EDE /* RNRootView */, + 2ECCFBBD048FCDEA8C3D1DA50C32BDBD /* RNScreens */, + D8B39A46C0D3B022094C847FE820E4D2 /* RNUserDefaults */, + 460D6A8ED928920BDEB2DD9D2E52F667 /* RNVectorIcons */, + 0E0999CD3453EC9A155BD0EB3213CB25 /* UMBarCodeScannerInterface */, + 8B3EBA26E96CE9026D7EEDB1F36D7F8F /* UMCameraInterface */, + F048F9A065062C84998C2BF93298FE77 /* UMConstantsInterface */, + C1436D92D23FD6DA8B7E11E1F05DD604 /* UMCore */, + C749C77ED08CB295E105277FDB48FB05 /* UMFaceDetectorInterface */, + FDB1401F91492F125DD3A085F8708496 /* UMFileSystemInterface */, + DF28DED824ED07117DD06C364E1E36E7 /* UMFontInterface */, + B69A245902D1D8E53EE695B22B5627DA /* UMImageLoaderInterface */, + B384BACBA4465D8684A8E7DA9B8F2C43 /* UMPermissionsInterface */, + FC2EF1186A6C71B75E41E287686B1849 /* UMReactNativeAdapter */, + 986F09409728A71E347DC9DDD5F72A83 /* UMSensorsInterface */, + 445AE7681F50F4BD3CE35EA9D9947E5B /* UMTaskManagerInterface */, + F754E1D12DC34C07CCB114BF87262215 /* Yoga */, + ); + name = "Development Pods"; sourceTree = ""; }; - CDB4315C0CAC688CCBC048DFDF18461D /* ScrollView */ = { + CD1A5A80FDC27B3BA1BEF7871F547A98 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 4587363767E6DDFE5B6EF79C5B99909B /* RCTScrollableProtocol.h */, - CFD2ECA648F806B989A733CAA2DAF55F /* RCTScrollContentShadowView.h */, - 759D024A83871BAB5A9AB81DD714E418 /* RCTScrollContentShadowView.m */, - 9C45A8743A1C35FDB9F4773F91EB4B27 /* RCTScrollContentView.h */, - BD53C90A5C7792FFB2160DF9511F26B9 /* RCTScrollContentView.m */, - B9AD7F8DE1437AB420CFBBEEC39F8515 /* RCTScrollContentViewManager.h */, - C5B720B7C468A7586AF649B38716B11C /* RCTScrollContentViewManager.m */, - C971A080CAF4045E52DC030F928315FC /* RCTScrollView.h */, - A20A63A7ACF74D0B898F9A3AD7AE4B78 /* RCTScrollView.m */, - 02267B6764982AF7929F445941B9A3DA /* RCTScrollViewManager.h */, - 2842E95CD01C873C9F7728A33D5FF2D6 /* RCTScrollViewManager.m */, + A808EA295EC294FFDBB50BCC2BA53014 /* UMModuleRegistryAdapter.h */, + CEA48CC6AFD3783EBE4BA6344D0FED0F /* UMModuleRegistryAdapter.m */, + 473280B4E2891647463057BAEF574807 /* UMViewManagerAdapterClassesRegistry.h */, + 1888F24E422773DA2257A17C200D38DD /* UMViewManagerAdapterClassesRegistry.m */, ); - name = ScrollView; - path = ScrollView; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + CD9545865447D3EA29F4F23222CDF654 /* Source */ = { + isa = PBXGroup; + children = ( + EDA33AB62C4B7D01D01F0CCB6F181C8C /* BSG_KSCrashReportWriter.h */, + 5C02C1E9ADA14141F2E3B91D5BD72138 /* BSGConnectivity.h */, + 6D7EFB6D3C136BEA9E7C14E8EFE61342 /* BSGConnectivity.m */, + 77EB82852535283CE02345BE4C8E40EC /* BSGOutOfMemoryWatchdog.h */, + 25B29827EECA6282CBC136F619978150 /* BSGOutOfMemoryWatchdog.m */, + B5D939F8C0EE52D1056857C2C9F08046 /* BSGSerialization.h */, + 28B7CE1881C6172919E8F1120A64ADED /* BSGSerialization.m */, + D24E677BBC14DAEEE0447A35209AEAC2 /* Bugsnag.h */, + E9F18B64986B9A7139C2928122A9021C /* Bugsnag.m */, + B84D286DA657CD4D4B191BC3B948AF25 /* BugsnagApiClient.h */, + 9F9EF03FF835434C84C67FD9C73A6718 /* BugsnagApiClient.m */, + 42114893F8A24894E5D2EA2961CD4ACA /* BugsnagBreadcrumb.h */, + E087FF5551C6FBCDDFF393AEC10380F6 /* BugsnagBreadcrumb.m */, + 4BC05BB567B45A8F71209832313EB119 /* BugsnagCollections.h */, + 51BBA580FC43CB1363EEEB18ED6392C1 /* BugsnagCollections.m */, + 6C70C81EAA793BF9FB2740627D363F8F /* BugsnagConfiguration.h */, + BAFABD63F5210B2671007BEAADB230AE /* BugsnagConfiguration.m */, + EC5A83566FFD0C1E52531603AA5E52CC /* BugsnagCrashReport.h */, + 1AB1051659F7CBEC4619E3E4F70D0882 /* BugsnagCrashReport.m */, + A2BACCA9758EE9824DE4BF78A8D197C6 /* BugsnagCrashSentry.h */, + 4675DC5321EAB64DDE25C9B0E3423B43 /* BugsnagCrashSentry.m */, + 047DDDE0E9AD61AC03E3207D9D8A05E4 /* BugsnagErrorReportApiClient.h */, + 5F2F18B89E48A9E676F45E26063BF3F0 /* BugsnagErrorReportApiClient.m */, + D21510FE6CEBEDA197FE10D0038F11DB /* BugsnagFileStore.h */, + 5C944C227ABC1536A052CFB87B130DA9 /* BugsnagFileStore.m */, + B39ADC3605D6438ED02ECC71946C66D9 /* BugsnagHandledState.h */, + BF1E5BA65E4700EE5DFE82680DEE2B0C /* BugsnagHandledState.m */, + 1278F6FD1923201980C67CE796DA9DD3 /* BugsnagKeys.h */, + 5EAE546DC43AB4405DBA7FEE69967526 /* BugsnagKSCrashSysInfoParser.h */, + C62963DF0BC0564FEBF70A3FED8230FD /* BugsnagKSCrashSysInfoParser.m */, + FD805FFB38D985D452CB2E5238C3047B /* BugsnagLogger.h */, + A2413F9B1112C34BBC33D3D94999DC39 /* BugsnagMetaData.h */, + 97D3261AD5F003D68136DE60A838D198 /* BugsnagMetaData.m */, + 870EB3DE4EC6FE75B94939F40FF0CA8E /* BugsnagNotifier.h */, + 421FFB16EAF6AB59C2EFAF20F0428076 /* BugsnagNotifier.m */, + A14E025CFB4A98FC2CF786538CFB4570 /* BugsnagSession.h */, + A189A35247AFD569CA00561337F0E80F /* BugsnagSession.m */, + 2BDE4AD6316F658E3325B860471AC0C8 /* BugsnagSessionFileStore.h */, + 62B9D18CCAF589880A35D98299E23446 /* BugsnagSessionFileStore.m */, + D5D1627846E57EE2D200613D10944D3D /* BugsnagSessionTracker.h */, + 8EB34C9AC11E5CE0BFE1FA1797742279 /* BugsnagSessionTracker.m */, + 2683BCE18B50187450E5F4959A40292A /* BugsnagSessionTrackingApiClient.h */, + B5EA05AAE813CB1C667EFA1F8DB71969 /* BugsnagSessionTrackingApiClient.m */, + E6B7EF2FE69EFA0CAA8C6CABED453CB9 /* BugsnagSessionTrackingPayload.h */, + 4E4261E9DA1E9B9EB1D83DAA337845CC /* BugsnagSessionTrackingPayload.m */, + 79207914DE9E3C44A552147C33D65820 /* BugsnagSink.h */, + 12C04C08B1FFE034059D47B28F8BB03D /* BugsnagSink.m */, + 7DCE9681D48CA655E108B358ACD8AE3C /* BugsnagUser.h */, + 25D5B5E920069C5AB4CCEF59BFD14E5E /* BugsnagUser.m */, + 333E2305122D7A2D6067A97077CB573A /* Private.h */, + D66C0944E6ED3EEEDEDF07B50024E3C3 /* KSCrash */, + ); + name = Source; + path = Source; sourceTree = ""; }; - CE45BB1E7A682802FDC62D4FAB3C71F9 /* EXAV */ = { + CDB148105AC3BFFC6810D5263F4F7A8B /* Singleline */ = { isa = PBXGroup; children = ( - 8ADE82CE2632A8AFCA54F0C72E29F2B6 /* EXAudioSessionManager.h */, - A22616688022F140FF0E0FCBC270FB71 /* EXAudioSessionManager.m */, - 452084A1E355CA8DD53918ADA8648C2F /* EXAV.h */, - 488CC7474782AF422A553CDCC720C142 /* EXAV.m */, - 4E218755DD6D44C7810C4EB9D8151F14 /* EXAVObject.h */, - 1949DF8F8BF713ECF190E90BB7389981 /* EXAVPlayerData.h */, - B0A86A2E2AE05EA89FFA1D7B8DF2941F /* EXAVPlayerData.m */, - FE2DF9FA49C9E31122F764422D6EE293 /* Pod */, - F118B83F3EBC41542BD4BD615166A40B /* Support Files */, - 6C53A9BEE92CCC7435650508575D7C58 /* Video */, + 92403C0C7B1D4F437F93A60AAA768932 /* RCTSinglelineTextInputView.h */, + 2857FD2ED29908954D251250C772C0F3 /* RCTSinglelineTextInputViewManager.h */, + F988BB9CB530CBDB9A1791E9293B40F5 /* RCTUITextField.h */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = Singleline; + path = Singleline; sourceTree = ""; }; CE6D789A1B323CF323AF90BE6F767989 /* Crashlytics */ = { @@ -11102,166 +11261,168 @@ path = Crashlytics; sourceTree = ""; }; - CE8EB9251018E8ACF1D5752DA2862D85 /* Support Files */ = { - isa = PBXGroup; - children = ( - F707EE176FC3B12911567C699484964B /* RNFastImage.xcconfig */, - FBACE0CB8175007159EB79341E5FF2AA /* RNFastImage-dummy.m */, - 705C3902452AAFA23E9CDB1D9A2A760D /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - CE9E04D16CC538AF8DC4E909B878C45D /* react-native-appearance */ = { - isa = PBXGroup; - children = ( - C818C00C3BEFB8DE06843791342A4D17 /* RNCAppearance.h */, - C94B4A04E9B68E29AEAF311EC415684F /* RNCAppearance.m */, - 4418D85E54E41E406522F469AD578B61 /* RNCAppearanceProvider.h */, - CD6297BA59BE1862EBD5B3D37507864C /* RNCAppearanceProvider.m */, - 66E7435E92022103111ECB2B3C815C98 /* RNCAppearanceProviderManager.h */, - F003BFF1B69BDEB9D07000F955D7EDD9 /* RNCAppearanceProviderManager.m */, - 8C13180841AC4874D455EDEC9FD3CF81 /* Pod */, - C37A559F8E7C8A57EDD40F9D78C5EEE1 /* Support Files */, - ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - CEA5722C1AA20FDD3F80649264DFA04B /* crashlytics */ = { + CE850036EE7C9BF06457FC466991757E /* Pod */ = { isa = PBXGroup; children = ( - CF703D154827EA4596E3AC3CDA7913F3 /* RNFirebaseCrashlytics.h */, - BA400F1F8D0C18145D8028113C8459A7 /* RNFirebaseCrashlytics.m */, + CD5DB292728224A375EC30DA598D9FD9 /* RNFirebase.podspec */, ); - name = crashlytics; - path = crashlytics; + name = Pod; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 937D38486105DB12F9C5E34D5D6F92F5 /* Development Pods */, + CAF687B548C894235C3951AFD40A03C2 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 8BD73C731960B082C86AB1D8D4E7BC8B /* Pods */, - A45DC33C70FB05B0CDF1E189E7559BFE /* Products */, + 420C48B2DE10CB29EF09E117AF91E28A /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - D04BDEDED7B8223D6FD9161A6DBCDB69 /* Support Files */ = { + CF380164D3F47A3E2C2B8D348D9114CB /* Pod */ = { isa = PBXGroup; children = ( - 23A647E30AA17236BFDEE61D0BA16440 /* react-native-orientation-locker.xcconfig */, - 1F754FFA9D3E65A692D42755E4D2594F /* react-native-orientation-locker-dummy.m */, - 90E85A1BB9680FBDA39BC205A60C7C40 /* react-native-orientation-locker-prefix.pch */, + 509E9A684A56FB74956F3A0E0F5E8F4E /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = Pod; sourceTree = ""; }; - D0CE2FDB4A9A14A5F77BED871930524B /* RawText */ = { + D10626F205436A70A5AE9BD6B03B9D7E /* Drivers */ = { isa = PBXGroup; children = ( - CEAD4F693EAAFA38CAFC8901547F68FB /* RCTRawTextShadowView.m */, - C452D821799C5937174F13BCEFDB7FD2 /* RCTRawTextViewManager.m */, + 92D31724619E3321ABFC9D94C41AC44B /* RCTAnimationDriver.h */, + 082959F2B8E4426107DFD7A58A2F1A2B /* RCTDecayAnimation.h */, + E88611FCC90E298586AB2C1EFDFDF4D7 /* RCTEventAnimation.h */, + 1D597118AAA3AA0D63E0264FFEA27E9F /* RCTFrameAnimation.h */, + 9F5FA36B8C1C1B113ED1B7D313424F09 /* RCTSpringAnimation.h */, ); - name = RawText; - path = RawText; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - D1A943C2B5E7A3C9BA0F8392D886CA16 /* React-jsi */ = { + D10993FF920CF5AD2DF1315152B8C1F4 /* Pod */ = { isa = PBXGroup; children = ( - 1ED0ECEFFA4E9FA5FD7014CE70F695A7 /* JSCRuntime.cpp */, - 72896FA81E04D7B430928F71991B73B5 /* JSCRuntime.h */, - 466AEA0681255505D75FEC68B9A0DAFD /* jsi */, - AFD4719573B3A95C2BC43ABAC5C341F9 /* Pod */, - E5581BF58EBDE80063FF46E67B7998C0 /* Support Files */, + 349F9357A7F29F8E3B1AAB1B185FDA4C /* React-cxxreact.podspec */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = Pod; sourceTree = ""; }; - D2142FA9B79571DAB573ACA5C020D99A /* Pod */ = { + D15E2567AFC9565FCB6FFD70F66E73A1 /* Pod */ = { isa = PBXGroup; children = ( - 70B68E27F56FA11231DF307D85D30760 /* UMSensorsInterface.podspec */, + 89234B508E0DF2C4FCF57A1F9882150A /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - D276AAD0EC8FF68EC48361276AF073E7 /* Singleline */ = { + D19DC70342F0806F8586EFF36584E76B /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 93F80DFB49D610571AD2E04608092506 /* RCTSinglelineTextInputView.m */, - 92E47B749B2D71B796E69BA4AA56D6F9 /* RCTSinglelineTextInputViewManager.m */, - CB3204671E6FA6B4704C29061B8575F1 /* RCTUITextField.m */, + 130C84BC7008CC3EC658498950644BA0 /* RCTBlobManager.h */, + 6C83A45F34C05FDC9F84E01F32F46263 /* RCTFileReaderModule.h */, ); - name = Singleline; - path = Singleline; + name = RCTBlobHeaders; sourceTree = ""; }; - D316A1920155D109DF49F616AA96DE07 /* bugsnag-cocoa */ = { + D1DDF1424B159F0715B52974DC174A37 /* Pod */ = { isa = PBXGroup; children = ( - 568BEB3EB55D8D616055FD979CEFC1E1 /* Source */, + EB65B1F3AFAF72A8F9BF4777A3BBDFEB /* React-Core.podspec */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = Pod; + sourceTree = ""; + }; + D266BBF617FED041725C7DB8C34EC8BC /* Nodes */ = { + isa = PBXGroup; + children = ( + 85EF388BC987D2243E6DBEBBCE0CF1A1 /* REAAlwaysNode.h */, + 24A91666C5E60525D7863CC82F20106F /* REAAlwaysNode.m */, + 451748833D01D28A51396492ABBE2394 /* REABezierNode.h */, + 13B47ADCACBED842C655D8CFCF877CD7 /* REABezierNode.m */, + 35A2E3904649AFBB24EAD823EDFFF947 /* REABlockNode.h */, + A4C03A998601C14C0E950907D6E057CC /* REABlockNode.m */, + 73898F0A4372AA1F40A34F41671305FF /* REACallFuncNode.h */, + BB7B9E277B2F88D029D62E6183406A86 /* REACallFuncNode.m */, + F4C3CCCF5C71EAE01CC0E71815720E66 /* REAClockNodes.h */, + 6E0142FE240F50CFE6EF1663C5229B8A /* REAClockNodes.m */, + 73EBFB2DAD1AD96AFF141E7BF795ECBC /* REAConcatNode.h */, + 51D375A942054AF499969DE6832D5620 /* REAConcatNode.m */, + 562303B6C187D0491F4458296B758CBC /* REACondNode.h */, + 58B465479F0DE2A6C39460B1013A0338 /* REACondNode.m */, + EE30D43E5C4E5D4333AEAD15C715ADBF /* READebugNode.h */, + 7CFDE95A6869C12FF0424853345B9B08 /* READebugNode.m */, + 2BBDED4A9EE538D325FC8C2E9A7BE9A7 /* REAEventNode.h */, + 13AD44A211A5269ACEA88CEC0012E3B1 /* REAEventNode.m */, + FF09ADEA9F7340DB1BB906D7D6C2BA9E /* REAFunctionNode.h */, + 2F28D4D3F3D8943317DB46F355DB2220 /* REAFunctionNode.m */, + AEE5C8311396FF92EE08B3CE1A731314 /* REAJSCallNode.h */, + 29BBF634BD7911C5A0A4EF0B465BCF31 /* REAJSCallNode.m */, + 2944F8FD8DD98A3F6DAC616A45EFFB44 /* REANode.h */, + 88201CBECDD0934923BFE668BC6A11D7 /* REANode.m */, + 43FE55F1B0D9165A56E7FC49111C772D /* REAOperatorNode.h */, + DAE7E2BABC7879C5D9AFE432EF097569 /* REAOperatorNode.m */, + B31E8CACE84DC55C19E5AAE6FA38CC78 /* REAParamNode.h */, + EE427177AD75D01D5E7B5160A6CC7ED2 /* REAParamNode.m */, + 311E903AB266F88A48EFB9B4AC19AA7F /* REAPropsNode.h */, + DF645CB5451C84733660BB79C9FE2153 /* REAPropsNode.m */, + 683FC744AAEA5CC4585354728561C685 /* REASetNode.h */, + 5BA635C89BBD91B13AAF3751ED52A8A5 /* REASetNode.m */, + A4AC1C7524D0753E868EDA712FAD75A7 /* REAStyleNode.h */, + 5124A71B9959609807270C74C521EBDC /* REAStyleNode.m */, + 4AC4157AF12D76A5931613FD14A2FEDB /* REATransformNode.h */, + A5EC695806073286F0F784518C4E054C /* REATransformNode.m */, + 56D3A2B8351A5CC262A5B77FF78ACB21 /* REAValueNode.h */, + 6372E20D74885C506A7039DA9E1E92B5 /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; - D33972DF6DF8BF4E79F9853F2D79E404 /* Support Files */ = { + D38970B99893F0F5EFA1B3937ACFEDB8 /* Support Files */ = { isa = PBXGroup; children = ( - C97A8C4E24533E6F1A769F1393A7BE80 /* RNUserDefaults.xcconfig */, - 5B48AA96FC4E5BE7F53E5AD5D91CC070 /* RNUserDefaults-dummy.m */, - 3DB91A8A5143D4BA8CD6FDE49424977D /* RNUserDefaults-prefix.pch */, + D819E5A0AA43744CCC765B8DF944EA08 /* RNImageCropPicker.xcconfig */, + 91D05310B7FDA459B22F5746EBD8B9F4 /* RNImageCropPicker-dummy.m */, + D63C54C3D7BBC8737124F871982FBC76 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - D3F111FCD34FDB09EB386FF5B4E9CF36 /* Pod */ = { + D3A37211E2B21BE30AF46FD504AE2029 /* Support Files */ = { isa = PBXGroup; children = ( - DAFCF8B66A79D74A49315DF33754EA6A /* LICENSE */, - 6895BDCCD284C6F8CDC5AB0F67F22F5D /* react-native-keyboard-tracking-view.podspec */, - C4542E2BFBDB17F5B6B0211E497425F6 /* README.md */, + FE89443442EC17AB3E5B0812E2DB873C /* react-native-jitsi-meet.xcconfig */, + 2CA9749D964D0660A6EC2BB114A0738D /* react-native-jitsi-meet-dummy.m */, + 865680AE7D0D81226BDE556B6B400A0A /* react-native-jitsi-meet-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - D410CA72CA68A15E896C7AB7C1FAD10A /* react-native-background-timer */ = { + D4D3DB278036B460122D7AD158BD3736 /* Pod */ = { isa = PBXGroup; children = ( - 3D4E7647CF95D02F120840002F70069A /* RNBackgroundTimer.h */, - A334EA6BDDE579C470B715F4EFB8C0D3 /* RNBackgroundTimer.m */, - 023BF090EFC6ED0A02FFED970F72EC94 /* Pod */, - F22C9739380C97929D62D9DAB1B96ABB /* Support Files */, + DA6D2458F2B0B1E631E9BFC913E01468 /* FBLazyVector.podspec */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Pod; sourceTree = ""; }; - D47CFE041834F121F1DD83A6A69E5F84 /* Profiler */ = { + D4DC8DFB469C6AA69C5780A489695DC4 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - 69432DA688A5254C56D23D061845A528 /* RCTFPSGraph.h */, - A6AF620BCCF82537DF7FF4A524F9EF58 /* RCTFPSGraph.m */, - 508806B05D8DF53487BC9A431319F391 /* RCTMacros.h */, - 1CD888B3FE6914181AC2421D76096D5D /* RCTPerfMonitor.m */, - CE800B9F6E783B4ECE7AA67C76B71C7A /* RCTProfile.h */, - 7C312DCD77A3F40600860CD64F411C56 /* RCTProfile.m */, - 246C602719C906644EBC65A6E205C426 /* RCTProfileTrampoline-arm.S */, - 37096E9C79DABA64683E034C9F8E56B6 /* RCTProfileTrampoline-arm64.S */, - 8430F4AC10659A77540FB906DDD5D2D3 /* RCTProfileTrampoline-i386.S */, - 7AE47FC245F21A86FEDDF8F9951FD8E7 /* RCTProfileTrampoline-x86_64.S */, + 268221F035874F9F853B1E7F784BBDF4 /* RNCAssetsLibraryRequestHandler.h */, + B9EA8B9528242AA4B453A477F337EFB2 /* RNCAssetsLibraryRequestHandler.m */, + C35B62E96CB1F6CF84146C86FCAAED2C /* RNCCameraRollManager.h */, + 4DB7B6C14365385426771BAD32DDDBBA /* RNCCameraRollManager.m */, + 956319FB343C2E548AF9E76C17329D08 /* Pod */, + FE39618C468A8902649777FB07283B94 /* Support Files */, ); - name = Profiler; - path = React/Profiler; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; D5418C0ADBC20C221DAC2565748BB25B /* Resources */ = { @@ -11277,85 +11438,23 @@ name = Resources; sourceTree = ""; }; - D5A7ECF5DA8AB83A0F68B414D2076C4A /* UMReactNativeAdapter */ = { - isa = PBXGroup; - children = ( - B8A95AF7A093BF5BAF835D6BBE26EED0 /* UMBridgeModule.h */, - F59CF021D8D5ED88BA9470A472E0D562 /* Pod */, - 5908013FA18FFD96ABA8CC9E763EB26C /* Services */, - BFAD6D4744FE7A5CA0400A7A41B200C2 /* Support Files */, - E1E9272A949DFD5D1B38F01561CE1D17 /* UMModuleRegistryAdapter */, - 9CC64319710E3E00A2A895C650F24199 /* UMNativeModulesProxy */, - 026DDB7E9724CD8FE4667B2EDFAEAE14 /* UMViewManagerAdapter */, - ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; - D5B2A4764793AF404C495E1E90FAC5EC /* Pod */ = { + D65020462E80F6EE4E59BB5F627FB3A6 /* Pod */ = { isa = PBXGroup; children = ( - F73AD33ED9EE84A71874B6ECB3003643 /* LICENSE */, - ECFD6625903AE1A75435834D24DC1E7E /* react-native-webview.podspec */, - 7CE1B630A3A7D71EDAB3C5D0F28185F8 /* README.md */, + 7987143BC8816F168E481440F75DCA6B /* LICENSE */, + 353062A3AFE312B00B834B7FE52636BF /* README.md */, + E9245B5E5E4D86A09D567E87674513A0 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - D5B4E85D4832B9506B68042F9432AB6E /* Nodes */ = { - isa = PBXGroup; - children = ( - DC422496D946DBA929558C84D085ECFB /* REAAlwaysNode.h */, - 3B6F1F6A2DD066BB2C50EEEEE0FBF29E /* REAAlwaysNode.m */, - C7D188E8E3576D03C9340998F82A7DA3 /* REABezierNode.h */, - E130A6685FA21DFD3AB3D51DC6F5B2B1 /* REABezierNode.m */, - 865294460C9058B3F7E1DA3657B9661E /* REABlockNode.h */, - F59A869702F4824BEC6F65C61A4FE369 /* REABlockNode.m */, - 54999C07928BBC15D8D97428F4AFD69F /* REACallFuncNode.h */, - 78939B80F32C146E1BDFBF7CC0808672 /* REACallFuncNode.m */, - B105E501018C902832734A4902AC44DD /* REAClockNodes.h */, - 11A42EFC34B1173E3B36A2387E063B15 /* REAClockNodes.m */, - 1AB7102B3AD1E3C36674EB5C257CD4B8 /* REAConcatNode.h */, - BB7DB1741BE6F459D6568806024C002D /* REAConcatNode.m */, - CCF821CAAAB48EB6071D302666782E1A /* REACondNode.h */, - 2ED1FD1C25B0048301BA62356C06EC38 /* REACondNode.m */, - 120AECB355307C9E4A7138290743C815 /* READebugNode.h */, - 09B7E564C956BEF94727167D7B1605AB /* READebugNode.m */, - 69E5646F1A4718C6288E62CAE555592C /* REAEventNode.h */, - 4DBBEA5A845CABFFEB6D153E1E63F76C /* REAEventNode.m */, - 5CFC92C8A9F553346459013CAFD85519 /* REAFunctionNode.h */, - 770527F9DFBA601C0169B1167B38979E /* REAFunctionNode.m */, - CE8BB176E3CA80CD84F96298F308F42F /* REAJSCallNode.h */, - F4ACCCAADB2EABD98EEBF0E4F0FEBB25 /* REAJSCallNode.m */, - CB636BB0116A61F6A72CA1E38CBEA640 /* REANode.h */, - 2741F997495DA184952AF89A1EFB1DCC /* REANode.m */, - C9249B6997BEA6CABB1A1353DE8D7438 /* REAOperatorNode.h */, - 5434944859BF2284F9080CFFC0B04E3D /* REAOperatorNode.m */, - B82D4F5B3A6291B65BB22E4E38607E75 /* REAParamNode.h */, - D74A5CDBE91B759FDE8617B5F9ED6C43 /* REAParamNode.m */, - BFB83DC17FFE31EB66C8FCB91483AFF2 /* REAPropsNode.h */, - 2C7CE2F99B0B2E3EAE018B5455148BFA /* REAPropsNode.m */, - 2CDD7EE9C1C468DCB4FAA08CD8969B17 /* REASetNode.h */, - 5052AFC572BBDAF774050875123EA3DF /* REASetNode.m */, - FDC64B39BC611FCD8FF775EEC434323A /* REAStyleNode.h */, - 6960DDCA7EA96234CC36AA9D55A9BAE0 /* REAStyleNode.m */, - 55DCDF8ED22058268F7B1AB0F0F4DD74 /* REATransformNode.h */, - D0F578D5380965774B192A36A30A481E /* REATransformNode.m */, - E571ABF64A41CE4CBBE4AAE6202D42F5 /* REAValueNode.h */, - 0D15A3F44298B0A59B0F8482CC241374 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - D68E7A1D69C4CD8EE1204CFBE9E36715 /* Pod */ = { + D66C0944E6ED3EEEDEDF07B50024E3C3 /* KSCrash */ = { isa = PBXGroup; children = ( - 337EF94C75DE610E48B4B5F3A1C90B8E /* LICENSE */, - F124D8E16F5FBD066EFD787A314466A1 /* react-native-orientation-locker.podspec */, - F85B85D22BDF2E4633C11CFB00D5D384 /* README.md */, + F82FB431120A2CA63888CD3573C0F4B3 /* Source */, ); - name = Pod; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; D6B26720AF819709D47D41A20C29FE79 /* boost-for-react-native */ = { @@ -11394,6 +11493,18 @@ name = demux; sourceTree = ""; }; + D8B39A46C0D3B022094C847FE820E4D2 /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + D5A75DD613220BFE27918D968044E48E /* RNUserDefaults.h */, + 213770343AE98C8AAB8DF517E5F3B0D1 /* RNUserDefaults.m */, + DAE200D5BF85FFAD7B5364016DB3C255 /* Pod */, + 2E83E0B2E369E81E0020405ED3254BCA /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = ""; + }; D95A25CE349BA20A7F6E6D9406B2D502 /* Resources */ = { isa = PBXGroup; children = ( @@ -11402,6 +11513,26 @@ name = Resources; sourceTree = ""; }; + DA65D4615D17BA8DCA40469E9B216875 /* functions */ = { + isa = PBXGroup; + children = ( + EFCA9FCA0CFD1A5C5A7F1497C3E224A4 /* RNFirebaseFunctions.h */, + B294544F6F1732E2AB99624E8E1A02C4 /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + DAE200D5BF85FFAD7B5364016DB3C255 /* Pod */ = { + isa = PBXGroup; + children = ( + 054292323642FE11ABA159F06B04F67B /* LICENSE */, + 17B8F9A5CD916AFF017F03D0B58D705C /* README.md */, + 7D8DC56410E5BEF44835C88D61C76EB6 /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; DB280F7CD7B89AAE2941A99FFBF8DD79 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11411,122 +11542,141 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - DCBBBFF3AB0E3ABB142B2ACF86919C58 /* RCTActionSheetHeaders */ = { + DC49EC89736FEFC41C816E3FEA509BA0 /* Pod */ = { isa = PBXGroup; children = ( - 6FA927A7B51C78FFA7D0234360BC62C9 /* RCTActionSheetManager.h */, + 92C34464DF49188A61D8EF357F69218F /* android_date.png */, + 1A5F77B36C55D6D7AE6B8BA3989A518B /* android_time.png */, + 77F3C06757EAA6EE2C0CE7AB7D1B7CE8 /* ios_date.png */, + E2DDEACF30C7A9A12605ED2AD5D59A32 /* ios_time.png */, + 3920A9A3F269D45CD0AA76EC7115D2DC /* LICENSE.md */, + E700975F8853BD85D1AFF86690B68F7E /* README.md */, + 93ABDA1ECF9B8E7156F5DB8FC6B6515D /* RNDateTimePicker.podspec */, ); - name = RCTActionSheetHeaders; + name = Pod; sourceTree = ""; }; - DD12D27716411AD03B418D3617BFB553 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 55BD90B5F0CCF49E1711CAE74B2D14AF /* EXAudioRecordingPermissionRequester.h */, - A32B07E78DE2F7FFC25E1DEB5618BEE9 /* EXAudioRecordingPermissionRequester.m */, - EE6EBD7876871B8B992FF5202D9EDF3C /* EXCalendarRequester.h */, - A64FE1D8156746761136A5D120580B66 /* EXCalendarRequester.m */, - 9666DA1DD28A56848F233DCBE80D80CC /* EXCameraPermissionRequester.h */, - 1C0F5FD5BCBEABAFE449D7A64FD25357 /* EXCameraPermissionRequester.m */, - ADFA269D4E14F4806D268A1E4F13C663 /* EXCameraRollRequester.h */, - 9FB1C1B9F581E8C5A3EB9C5E4297B57D /* EXCameraRollRequester.m */, - B0630E1005C90FB304115B8619ABAF94 /* EXContactsRequester.h */, - C4605C102C6353682ABE1D68A39AC628 /* EXContactsRequester.m */, - 95FDEED204E6DAFFCDBD3DDAB8692101 /* EXLocationRequester.h */, - 36B51644B3B788695222BC7CA74C0FF3 /* EXLocationRequester.m */, - AB10EE33F4E9A1044DA4190BB894073D /* EXPermissions.h */, - 704BBF4B1E55AC7C888C769D7BB7808F /* EXPermissions.m */, - 61A811A9EEE91452903987BEC43ACBA5 /* EXReactNativeUserNotificationCenterProxy.h */, - 68DAA8DDC78D988F0A71A01A1BD4B733 /* EXReactNativeUserNotificationCenterProxy.m */, - 774E139D73822D50DA1B206F134BF63B /* EXRemindersRequester.h */, - F1D19B0EA38EEC5CD5D5251AF43C257D /* EXRemindersRequester.m */, - AE8577EBCE6AD05B8E5BA37B57ABFAB9 /* EXRemoteNotificationRequester.h */, - E09D716C54A21D487ADA1B2703C86E6F /* EXRemoteNotificationRequester.m */, - EF5660E45E7B0A0A5D036908ACCCC0F6 /* EXSystemBrightnessRequester.h */, - 25C54BF46595A1579424DE393B0E7654 /* EXSystemBrightnessRequester.m */, - 0C3661D9EEDCC436C5FDC69683507366 /* EXUserNotificationRequester.h */, - B7455685549EBF9C61766FC609BEAE9D /* EXUserNotificationRequester.m */, - 6B2138F8688BDB83E41D4BDAB3EA337D /* Pod */, - A07249481F86CBAC444838530F6A3B23 /* Support Files */, + DC4F289863EBCB22685CDAFA10AB0688 /* internal */ = { + isa = PBXGroup; + children = ( + C28972CB23BE10EBE6758B47E625461A /* experiments.cpp */, + ADAF44CCCDE16D4247AF317E9245C25D /* experiments.h */, + 9773868810945B365745B26EA5B256F1 /* experiments-inl.h */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + DCB685EE3D32625E74C1BEA1FD8ABA00 /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + 1FCA0A141ADD27ABD3C523D23FB6576A /* Color+Interpolation.h */, + A086E13D995DB17D30B6558FB987A265 /* Color+Interpolation.m */, + F314944C00BE6B09E422BAE76B3F1334 /* LNAnimator.h */, + 343C5F749E16A3765E62F2A74C2F50F0 /* LNAnimator.m */, + 723B88A4CAB00299DDE80C2E7BFE4B8F /* LNInterpolable.h */, + 11D6BBF053D543F7E540ED8C92265DBB /* LNInterpolable.m */, + B39EE0EF27689B02A6811C6D712DE93D /* LNInterpolation.h */, + ED039CC8E2D258B12AACF3BAA94BBDD5 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; + DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */ = { + isa = PBXGroup; + children = ( + 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */, + 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */, + 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */, + FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */, + 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */, + B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */, + A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */, + ); + name = "Pods-RocketChatRN"; + path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - DD26B56257C905DFD7318724FA399189 /* Support Files */ = { + DDDE884563E34B92476F1EA9C56FD899 /* Support Files */ = { isa = PBXGroup; children = ( - 26C7AE1C3D4AE681695DC51DC21BA022 /* React-RCTNetwork.xcconfig */, - 8AC34455410DAD88E1FAA52B7A94250C /* React-RCTNetwork-dummy.m */, - BCE4C954D88480AC78707E9F6C2567A5 /* React-RCTNetwork-prefix.pch */, + 982A8DF71C07BCCAE7B7645DFE00F523 /* EXConstants.xcconfig */, + E267F41959D4E2BCC08E452C2D817B76 /* EXConstants-dummy.m */, + CD27B1F3A3CC35BBCD1942272F0AC340 /* EXConstants-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + DE046E8ADECF535D4C123AFF7549D5C5 /* EXAppLoaderProvider */ = { + isa = PBXGroup; + children = ( + CD57EBE72AB3A63AEA0F4E967081BEB7 /* EXAppLoaderProvider.h */, + 5230BD3E3A0F8047A7D45E0D1CF56CF8 /* EXAppLoaderProvider.m */, + 6DB79FC6826507DC6FFC8D48F763CA1D /* Interfaces */, + 29894B1C683AB87264702A8084C978C3 /* Pod */, + 00E01377C52F52B9C8E7F3B9A67812CE /* Support Files */, + ); + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; - DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */ = { + DE4190BAA6DEE3A98E1E9D86D6728FA6 /* Pod */ = { isa = PBXGroup; children = ( - 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */, - 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */, - 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */, - FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */, - 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */, - B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */, - A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */, + 01D908E1D8B10CC726356C6CBA99FC2D /* LICENSE */, + A3EF2145F241278055A25A777D4BA8CF /* README.md */, + 1CC4FF1D730AA515C33188B504D1C67F /* RNVectorIcons.podspec */, ); - name = "Pods-RocketChatRN"; - path = "Target Support Files/Pods-RocketChatRN"; + name = Pod; sourceTree = ""; }; - DDA6E9594AA6AD140630AC91D82E8145 /* Pod */ = { + DEB5644C1B54492EC711E8B73255C063 /* Pod */ = { isa = PBXGroup; children = ( - 6337D5A76C8D1C649F1678497D08873C /* EXAppLoaderProvider.podspec */, + 12E77AA9AFFB6520D1CFEB0C71E7C2E4 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - DFA9DBDE41A48B49BB304A4883083B7A /* Pod */ = { + DF28DED824ED07117DD06C364E1E36E7 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 3ACBB8117465EA9D389E9031BC5B6D1B /* advancedIos.md */, - 7E4D18AE30D9C07F8C3C6618009284D5 /* installation.md */, - 48E95B5B112651B97BBF86375D7661F8 /* LICENSE */, - C07DFED78793E331303FA2FC0AED13C8 /* localNotifications.md */, - 55228413705B0926FD466A9E31B1FBA7 /* notificationsEvents.md */, - 9748B31D5EBA30A32034D4C249DA03F7 /* react-native-notifications.podspec */, - 58847364CEB96C62831ECA9421BEC4A2 /* README.md */, - 8CAD567CE7CFC07F2D6CCC206D1DBF78 /* subscription.md */, + B6231CB8E675EB759DC294F021B4EE14 /* UMFontManagerInterface.h */, + 64856C5699DC3C8775286922F9E37B4D /* UMFontProcessorInterface.h */, + B172A83C57FE580C944BD123D577345E /* UMFontScalerInterface.h */, + C376824BD4234BE12A57FBF73B41AEFC /* UMFontScalersManagerInterface.h */, + 9BB58BF7B016AAD79A76E2465296CB42 /* Pod */, + A8A63CF2CB40B65FF195415DAF401B7C /* Support Files */, ); - name = Pod; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - E03C1A0C2DF993ACB7D465AE9942E93F /* TextInput */ = { + DF3F80C167AC9A97192A91E4176FFC20 /* Support Files */ = { isa = PBXGroup; children = ( - AC066CC6AED1E3EFE73E3ECEF0CD0FE9 /* RCTBackedTextInputDelegateAdapter.m */, - 79603E8BD45199E5B972AA82262057C2 /* RCTBaseTextInputShadowView.m */, - 0BADCB78F0AB6C960985E2CAE7F97A45 /* RCTBaseTextInputView.m */, - 96E10B41DE736BCA81104A5FE048B26F /* RCTBaseTextInputViewManager.m */, - 9001CBF5857D2FF167B7FE7933AAF405 /* RCTInputAccessoryShadowView.m */, - B73D2D91D5C3DBC787ED2C808AADE575 /* RCTInputAccessoryView.m */, - 8A6AA08426C784ACDFEEF3D7B4B46AEE /* RCTInputAccessoryViewContent.m */, - 31BFC6EBB39323E173C6EA5C1015C34F /* RCTInputAccessoryViewManager.m */, - 2F29E8E59D50A97051BEB66575D89971 /* RCTTextSelection.m */, - E42E7356DDC1517E8C90F2F0BA653F31 /* Multiline */, - D276AAD0EC8FF68EC48361276AF073E7 /* Singleline */, + 474448FEF0F945EE3EE8C4EDBCAC90BC /* RNDateTimePicker.xcconfig */, + EB9E09F7DBB216798A751F44ABEF3648 /* RNDateTimePicker-dummy.m */, + 8AABD05450802148E6D4E459183DA08F /* RNDateTimePicker-prefix.pch */, ); - name = TextInput; - path = TextInput; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - E0A447869E2268B7B72F7BB38E244B52 /* Pod */ = { + DF4DB0198AF0BBB3E2B271B9FC81A0CD /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - B24767EE7F54E31A3F1A4A485AC2D71C /* Yoga.podspec */, + 1850CFFC39379B889F6CC5008E75C942 /* JSIExecutor.cpp */, + BA25C03D8346FC39A3B36B4BCB61E952 /* JSIExecutor.h */, + FA9F30C56E3D91E8E7A46E590973ED6C /* JSINativeModules.cpp */, + 24B479A5347E6CE6A9645129EA6A7159 /* JSINativeModules.h */, + 3C06E6106F9820180300C909B8F51B5D /* Pod */, + 24D5554B760ACD07C9B2186588B9A66B /* Support Files */, ); - name = Pod; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; E0D54EEA34BCC38CB041C7EA534F04FC /* SDWebImage */ = { @@ -11539,16 +11689,24 @@ path = SDWebImage; sourceTree = ""; }; - E1E9272A949DFD5D1B38F01561CE1D17 /* UMModuleRegistryAdapter */ = { + E2B2F60233F47F8EDC6D749D77E61272 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - B0B29AE24352D01ECDCBBBCFF13452B0 /* UMModuleRegistryAdapter.h */, - 36344FDA0FB0189C167C6F4D4AF27D3C /* UMModuleRegistryAdapter.m */, - 6F5D2290CE065E4E037009E5FA9E5E33 /* UMViewManagerAdapterClassesRegistry.h */, - E5839957369ABECF6A487AE84792C683 /* UMViewManagerAdapterClassesRegistry.m */, + 6E0710505B28D48508BF15A39FC2F659 /* RCTActionSheetManager.m */, + 9167D0B09ABBAF341E56707BB6B14495 /* Pod */, + 64FFF11AF8DCBC4D472D9DA2A15211B4 /* Support Files */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + E308FA8CBBCA7C131FE0083394428323 /* Support Files */ = { + isa = PBXGroup; + children = ( + D72B88AAF546BDEE9C43758D79D2D6D4 /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; E310CC949E29DA121F164F804E4B5C33 /* Core */ = { @@ -11683,50 +11841,38 @@ name = Frameworks; sourceTree = ""; }; - E3B46C0B2CE23AE5771F0446FF421273 /* storage */ = { + E3BCD663FDBC63775611F8DD3E615BD2 /* Support Files */ = { isa = PBXGroup; children = ( - BFF99B5FFB2C980265F41EF33ABA7608 /* RNFirebaseStorage.h */, - 511E82E11DF5FE3BA6ED82F4F7B83F13 /* RNFirebaseStorage.m */, + 906AE7707BBFDCDC9C23789A1BCC7234 /* RNReanimated.xcconfig */, + E86413D607A01813B804BA192024B029 /* RNReanimated-dummy.m */, + 32206580ED5589AB53C06578EA3E6DCC /* RNReanimated-prefix.pch */, ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - E42E7356DDC1517E8C90F2F0BA653F31 /* Multiline */ = { - isa = PBXGroup; - children = ( - 284717196E0B5452D66F98ED0D8E6102 /* RCTMultilineTextInputView.m */, - 5DA5F6B8D2A6F58EA44832A16CF89DC2 /* RCTMultilineTextInputViewManager.m */, - B4BD306F91E2E0596E6FE2C1137EA731 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - E51B999DD719F3248B2A69454A481CBA /* RNDeviceInfo */ = { + E60E2A3155025C2CA6A1D749A142BDB3 /* Pod */ = { isa = PBXGroup; children = ( - 3FF17E61ED47D85220336B275F63BDBF /* DeviceUID.h */, - E517E6B50DD86058B24162FBFB740286 /* DeviceUID.m */, - DEC6C4E071F546974D115DD77D7827D5 /* RNDeviceInfo.h */, - BE1BD8915D456FE4ADB60B7E71C18D53 /* RNDeviceInfo.m */, - 5B88181B9B141AC864DAAC0DE13453FC /* Pod */, - BABD2774BD5D5D34136CED3D0505D1C8 /* Support Files */, + 1C6F71948B518036363AC19461CCF7BE /* React-CoreModules.podspec */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Pod; sourceTree = ""; }; - E5581BF58EBDE80063FF46E67B7998C0 /* Support Files */ = { + E62D1097C2E995B4BC26D1D08480182F /* Video */ = { isa = PBXGroup; children = ( - 47F9153723C28D449693AC21F0268045 /* React-jsi.xcconfig */, - 4B93487886DF9C2E02FE9B0C2D47007D /* React-jsi-dummy.m */, - 2BFEA15E756937AAC9614C1AA89DFFCC /* React-jsi-prefix.pch */, + C29689FB804AE7B71F149CD28F78EA8A /* EXVideoManager.h */, + D49F0EFB39B19BD09517946BA3251E7E /* EXVideoManager.m */, + DAA3196A7558E62E1BA00CC84EA2BF40 /* EXVideoPlayerViewController.h */, + 2D39B25C972AFEF60588CA5EBDE4DE61 /* EXVideoPlayerViewController.m */, + F08787B17693E4ABEC946BDF2D39BDF5 /* EXVideoPlayerViewControllerDelegate.h */, + 57DD7A68CAE989C83B0012BE162E2A24 /* EXVideoView.h */, + 82D098BAF796AD84A72CEC69862AABB8 /* EXVideoView.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = Video; + path = EXAV/Video; sourceTree = ""; }; E6B3B3FF664018E95F20792453167FBB /* Environment */ = { @@ -11738,412 +11884,289 @@ name = Environment; sourceTree = ""; }; - E6D9C6903E6F9129DBD9482674A27E7F /* EXFileSystem */ = { + E6C45F36C1871699561E2D2B810AD315 /* ViewManagers */ = { isa = PBXGroup; children = ( - 0E5F185B26ADE4DECC44F2934DF3EC20 /* EXDownloadDelegate.h */, - 0B35015902DA39F691EDE01D75E786F4 /* EXDownloadDelegate.m */, - 02625289E4AD50D27CB80B7A01176C6C /* EXFilePermissionModule.h */, - 377DE6DBAF253D2660305D2AFBDC8638 /* EXFilePermissionModule.m */, - A76CA5719F2A374889232785A7B9C502 /* EXFileSystem.h */, - 5AA25AADD38A447AFF7DD16EEBCBBBC4 /* EXFileSystem.m */, - EF0992920E7447EA95B405AC270D74C6 /* EXFileSystemAssetLibraryHandler.h */, - 4AD5C9E679C460FE63C5500480006BDD /* EXFileSystemAssetLibraryHandler.m */, - 04FE3D64D1C7022838F5216CAA22416C /* EXFileSystemLocalFileHandler.h */, - 3D2B3D1687FD3940720DB6745F9B30B8 /* EXFileSystemLocalFileHandler.m */, - A72D5A29DAC565753DE5D62252C19B23 /* Pod */, - 6E3530BE022BF5654730A337F14CB2DD /* Support Files */, + 27956594B5865746D9D106DAA231157A /* ARTGroupManager.h */, + D3A3B488557565118EC138E8B533944B /* ARTGroupManager.m */, + 05451E914B53EF1655AC2ED22B068CF0 /* ARTNodeManager.h */, + FB396762A9674F1C5B2410378C25E4BA /* ARTNodeManager.m */, + A836F772DFE49877A0D58D0D351AD4D7 /* ARTRenderableManager.h */, + 6CDEB1AD748B5E1EE21DDD075ED523A1 /* ARTRenderableManager.m */, + 29E29CE1DC026A19D4C6A0AFDB460E31 /* ARTShapeManager.h */, + F800BD2C4A4F294A3BDAC5EB53F37B43 /* ARTShapeManager.m */, + 2C72A3D5F6D88608C76DFDFFABB74EF8 /* ARTSurfaceViewManager.h */, + 0E31F1983D3D558FEAA109894B20BA5A /* ARTSurfaceViewManager.m */, + 0AF7D6F19831A2EAC34848A9705C9715 /* ARTTextManager.h */, + 63A705AE48A30AD67EFDE388273D1B3C /* ARTTextManager.m */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = ViewManagers; + path = ios/ViewManagers; sourceTree = ""; }; - E6F30ADDEEBCE5B8C87443D189F38921 /* UMModuleRegistry */ = { + E79A4DF913F15F0B0C0C88FD52F8F80A /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - F373132C0248800341B87D8F630767EA /* UMModuleRegistry.h */, - 45E519A214A297719957A7D0B3AB0223 /* UMModuleRegistry.m */, - 3A6C89FD953CD3B03014E0BF694985D5 /* UMModuleRegistryDelegate.h */, + 45051CFF111C12067E5274086D1AD8C4 /* CoreModulesPlugins.h */, + 0A75E4C172CDB1EE77C504C1284D4CA1 /* RCTExceptionsManager.h */, + 882E15C3C47E299053A64CAC0A68372B /* RCTImageEditingManager.h */, + E855C116680FF9FB16990497C8F510F1 /* RCTImageLoader.h */, + FC35E952ED4A537722292F258BB37F68 /* RCTImageStoreManager.h */, + 8C74F3901CA317FFB3564E42E3A0BA50 /* RCTPlatform.h */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = CoreModulesHeaders; sourceTree = ""; }; - E77BE94020C5D62DE4F3D9BF3DDEEE7E /* CxxModule */ = { + E7EDA7BD00EFC92ED14C7C79AB66F33F /* Support Files */ = { isa = PBXGroup; children = ( - AB11E3266A85870D63A4E4B6F90FB5C7 /* DispatchMessageQueueThread.h */, - 1F5E4A417391626A3FA13B93ADE301F2 /* RCTCxxMethod.h */, - 650E82306DF8D0E3742EA9D069FA4D83 /* RCTCxxMethod.mm */, - 73FF2C24AB914342BD5ABED89A168E56 /* RCTCxxModule.h */, - E5690B9A979C0053589923673622FC85 /* RCTCxxModule.mm */, - 87F8861298426662518AF8C56468A819 /* RCTCxxUtils.h */, - 5A46B6FCA029E139372B7F5CA1B9500F /* RCTCxxUtils.mm */, - 7B1A13E2CC09905F29BBFA671653BED3 /* RCTNativeModule.h */, - 67286200A7DBE3F2CAA8A84ABC0D6EB4 /* RCTNativeModule.mm */, + 7D5E4B14E4C0207640F68130035D7A01 /* React.xcconfig */, ); - name = CxxModule; - path = React/CxxModule; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - E7830F494AD1072678BE12B212F71B45 /* react-native-slider */ = { + E895E9D6F74044A2D72A6F7E43860075 /* Pod */ = { isa = PBXGroup; children = ( - 1DE39ADE26B9FF8F24E22330086E7C5C /* RNCSlider.h */, - 8AFB46E7671EBDFB0DFC298E7CDCF138 /* RNCSlider.m */, - 07268468A808DFF75FBC6A255EC9F0BE /* RNCSliderManager.h */, - 9AE52A79948B4A9478F74A6D1DB81519 /* RNCSliderManager.m */, - B185FA8DB6DE8BCC746DCFCD84843D72 /* Pod */, - 595C2876AD4B1768D7D96FC361774A8C /* Support Files */, + CB254A7CB1178C037AFCD27A4DED22A8 /* LICENSE */, + 24C136296458C68467209769F81C270E /* react-native-keyboard-tracking-view.podspec */, + 97C1A3D5C787291879E922A315558269 /* README.md */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = Pod; sourceTree = ""; }; - E7CB671DF683F7F86D44CE09C5A821F2 /* Base */ = { - isa = PBXGroup; - children = ( - 75EC17E421E4E64FC4C136693256D120 /* RCTAssert.h */, - B3B673AEC32B252F2F50C7942DB2FE42 /* RCTAssert.m */, - E2025E969F4A355BB168971258C3B173 /* RCTBridge.h */, - 0F71403F7DD62BF20974AF873CFC1BE8 /* RCTBridge.m */, - 7051907ADC28F1E2A6EF29AB364DA687 /* RCTBridge+Private.h */, - C5B73909EDBA5D6EB8720F3B8429919C /* RCTBridgeDelegate.h */, - DD0BA5BC24EE4E864BF6C5CD481FBD25 /* RCTBridgeMethod.h */, - BE468F015FF53F8769ED896BB558FD7B /* RCTBridgeModule.h */, - 47E94895128ACED1A886414A90DD13FE /* RCTBundleURLProvider.h */, - A7FCD016F4192B5A83FA4A67EACD8A6C /* RCTBundleURLProvider.m */, - 0716E3962E07D8D9583DBBCE3AA19481 /* RCTComponentEvent.h */, - 1CB11379A91985A0B1F4A4DA062C7663 /* RCTComponentEvent.m */, - DBFAE2B35892C4CA9F0F5837E647EAA2 /* RCTConvert.h */, - CEF2F61F0887BCCF3E2FD36E867A0775 /* RCTConvert.m */, - 562BDAB9E04AD4A9972D18E880FD0EC3 /* RCTCxxConvert.h */, - 1447CAD6AA2050CCCEEB864044085161 /* RCTCxxConvert.m */, - 3D47292FD54FE320D84C47954485F5DB /* RCTDefines.h */, - 7625F33A5FD9A5D4D791A97A180C4F0D /* RCTDisplayLink.h */, - 608BCDEC8A03F21297F1CCCB6710D724 /* RCTDisplayLink.m */, - 2787A002958CFED930565A4A9B63AA62 /* RCTErrorCustomizer.h */, - 49E5990C5787074894C301AE6D55D25E /* RCTErrorInfo.h */, - 62B9207884E00FC148DFFEA416C93D4E /* RCTErrorInfo.m */, - 30F8E2AF283C247B7769E2D109654EB1 /* RCTEventDispatcher.h */, - 4B1B6E28504EB928A07EF2DABD68A15E /* RCTEventDispatcher.m */, - EAEFFF75A9C605A1EF339A10262B0292 /* RCTFrameUpdate.h */, - 9F64200FA3494FE3782C02FB024CF97B /* RCTFrameUpdate.m */, - 24B920E9A76DD9B7564DF2EFF9798DAD /* RCTImageSource.h */, - F8C773ED252D06DCA1DB6E14F56336BC /* RCTImageSource.m */, - EE654960CA0CD4B1C81541EE3A4A96B2 /* RCTInvalidating.h */, - 1A90490482B5CF1E36BAD7CE03D6C4C1 /* RCTJavaScriptExecutor.h */, - 401149FFF984995BED9A32C13BBBCF4D /* RCTJavaScriptLoader.h */, - 67D9ABBDD70F27066672B9AECC8B3B32 /* RCTJavaScriptLoader.mm */, - 0E445C509F373BD6C5EF893C17883771 /* RCTJSStackFrame.h */, - 9B3390B9042CE527A10BD2C7A83A437A /* RCTJSStackFrame.m */, - 92A95E050A09DA25B232FED340228122 /* RCTKeyCommands.h */, - DE8AE63B22BF8DD7DB512A22E1636B26 /* RCTKeyCommands.m */, - 43D782A30DE4BCBDFBDFE3337B86E535 /* RCTLog.h */, - 69BD33148C66110CEE2BA1995A01DBFB /* RCTLog.mm */, - DD6DB2BBA5DDAF37D2719515FCBFF477 /* RCTManagedPointer.h */, - 9D419F5B1AC34A0A03C47A465D62BFCD /* RCTManagedPointer.mm */, - CAC7AA082B486DD6FDB546E455B8A59A /* RCTModuleData.h */, - 40017C53E9A62863BF8AE82C1BA2100E /* RCTModuleData.mm */, - 9B3C5D8902F9EF6C1905757B8E9DF4B0 /* RCTModuleMethod.h */, - C61ACCDC904EE04CB043E9D210F30D6C /* RCTModuleMethod.mm */, - 7047C729FB0A115C5B0ED9EDFE53E4CF /* RCTMultipartDataTask.h */, - E1404831699A6A4E3B894479C40BE59A /* RCTMultipartDataTask.m */, - B7A25E959BABA4038F809BF763AE50E2 /* RCTMultipartStreamReader.h */, - 810303E8C157F8E7F0FC40012F491F1B /* RCTMultipartStreamReader.m */, - D5D4B0EA1C69FE98A7BB477DC3FCA5C6 /* RCTNullability.h */, - 502D1B01E457F17A5614B1ED35D8C026 /* RCTParserUtils.h */, - 10EED0B031833026C6C3F61672D8502B /* RCTParserUtils.m */, - 78A20DCB385D4F056E25D80D3132C378 /* RCTPerformanceLogger.h */, - A88468B5807972047998E8D9F12C2614 /* RCTPerformanceLogger.m */, - 4A2A4992DE533D775915D65FDAD027DB /* RCTReloadCommand.h */, - C0315431FD2FF9B79F2094D7B169CEBB /* RCTReloadCommand.m */, - 7EF0EDAC0274F23072A0184687BD5B65 /* RCTRootContentView.h */, - CFAA1EBBA031711C1B456D1E7A583749 /* RCTRootContentView.m */, - 669D982572D28923DCC11393AF50589B /* RCTRootView.h */, - F75073C7525C65A17556396A1DF8B197 /* RCTRootView.m */, - C35CF730248B35186190623AD1B0D8E4 /* RCTRootViewDelegate.h */, - 74C7ADF392788CC6CF09E6BD782E3048 /* RCTRootViewInternal.h */, - 6B6483A25CD832C95A33A7E589D46901 /* RCTTouchEvent.h */, - D82A5B8DFC67169F0D5BF0D713536299 /* RCTTouchEvent.m */, - CD21021F904E49F652898107CB6B8612 /* RCTTouchHandler.h */, - 0ECF8CE8E45587754DD6CA2C7A374214 /* RCTTouchHandler.m */, - 5090B0A0C6A46EF3068CDE1C911ECF1D /* RCTURLRequestDelegate.h */, - B4CBA58A86EFC487C36D1C9833C5D6E6 /* RCTURLRequestHandler.h */, - FD2AAC0C63D42978EC8471798BD64DC7 /* RCTUtils.h */, - 27AF34E856786072C0490DA7EAFEE0E7 /* RCTUtils.m */, - 80761E468ACFCB117E60F31425C695BE /* RCTVersion.h */, - 16492D71EE665ADFAA66E1A15E7116C7 /* RCTVersion.m */, - 3B43E7DA09925228BA708459EEA8E370 /* RCTWeakProxy.h */, - 9E3DF1DC5956E3E46F66377D39F7AB1F /* RCTWeakProxy.m */, - 91CB4992DE3C3197F9CC019021584CBE /* Surface */, + E9929E8DF5DA35D35EC24B6C7F7B13D9 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + 52BF1DCAC81CBC11E518816E431F945C /* jscallinvoker */, + 47BE8EACC41F288EF200D9F6B6EE3A50 /* Support Files */, + 65045770EAD7CCAF8352A6B400E3CA7F /* turbomodule */, ); - name = Base; - path = React/Base; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; - E8EC8781FF35043A3FA94989BA738B31 /* react-native-keyboard-input */ = { + EAB512351C613587A2EC0C0D60E79F57 /* BaseText */ = { isa = PBXGroup; children = ( - A4F7496CC5C56FA382D58B27DF3E3D57 /* LNInterpolation */, - 2B7006B9010E0B1F8184DB1D977E6C67 /* Pod */, - 724844D04250B49878EA7B0DC4DEE7C9 /* RCTCustomInputController */, - C36539E990D704ED9CFD89FF78042F2B /* Support Files */, + 4B120458315902FA759D8D59CB2C5B22 /* RCTBaseTextShadowView.h */, + 98AFA6E59257431A9AA02DDFC5621569 /* RCTBaseTextViewManager.h */, ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; - EA6CF9F721055BBC6569D53AC6E59B6B /* Pod */ = { + EB081BEEA4416F7B40D25D54AC643B11 /* Support Files */ = { isa = PBXGroup; children = ( - AEA7EE245DA9C3117A185778BCC39944 /* LICENSE */, - 0473533C419D5E3C0DF45DE92668F3ED /* react-native-video.podspec */, - 810123BB5B0262E2D71735D1D83C2592 /* README.md */, + A750113D5C95734016B6F89633D28693 /* React-RCTNetwork.xcconfig */, + 8DB341FAB1543F13B9E7D22FBCFB2CA9 /* React-RCTNetwork-dummy.m */, + A555E1DEE8F57BEB61A46B7794BEB7AB /* React-RCTNetwork-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - EAAC5EED27C7977384001990FB16202A /* BugsnagReactNative */ = { + EB22DEDBC24506D9AD1AC5C08F7DBF3F /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( - 025EA157DF8DAF5E7622AB672CF7DA28 /* BugsnagReactNative.h */, - 05BC9C4DE68D5443A3FDA830FD0CA2D5 /* BugsnagReactNative.m */, - 82FB100B20B8D30EDE14ED412F2610D3 /* Core */, - 3E44A08297C6A34B2FE6B2952053A21C /* Pod */, - FD440D6E2590EFC1BDB7BB1FBD63A067 /* Support Files */, - B606A5FC15B0DFE335D7F030200EBF29 /* vendor */, + E322546DD7755AADEEFBB1AD7961C999 /* Frameworks */, + 8A77F195308B777358F6B9081258A3F5 /* Support Files */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; sourceTree = ""; }; - EAE573E77B997B1836725FA8F609169B /* turbomodule */ = { + EBD95EC698E3BBE6B6E7863A142DC565 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - F70388C21AE67B04108EB3E07111CFAE /* core */, + 5E86E683042BF472105F52DBCF26CB84 /* RCTLinkingManager.m */, + 5F75B08B044CFAA6B52A18BDF1162CAC /* Pod */, + A32D52B14396A99A08C377F07F45D3B6 /* Support Files */, ); - name = turbomodule; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - EB22DEDBC24506D9AD1AC5C08F7DBF3F /* GoogleAppMeasurement */ = { + EEC23530390F9B7A6B500857299912A0 /* Support Files */ = { isa = PBXGroup; children = ( - E322546DD7755AADEEFBB1AD7961C999 /* Frameworks */, - 8A77F195308B777358F6B9081258A3F5 /* Support Files */, + 3DCB6BEB26EC6265B782EFD7D3B218A6 /* SDWebImageWebPCoder.xcconfig */, + 3FA94B333E9C2CF8D949D9141535634B /* SDWebImageWebPCoder-dummy.m */, + FB46E91D8C8617213964623D0EA7A5A7 /* SDWebImageWebPCoder-prefix.pch */, ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; + name = "Support Files"; + path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - EB42568E4B8A5362E55AE8DB7090015E /* EXHaptics */ = { + EFAF8065AB31B7CC35A23E6AF1ECDF3C /* Support Files */ = { isa = PBXGroup; children = ( - 171B8AC9BBCC6BA3BD06559401F683A3 /* EXHapticsModule.h */, - 5D4BF49C398BD09FEF20E09E3D91D2BB /* EXHapticsModule.m */, - 3A620F88965FC6DBAE6FBB1586FF5CED /* Pod */, - 1522BCA9286814F6257FC12C8AE4B61B /* Support Files */, + 5C8E21CF56ECF5D26E3CEFC6CE23D0B7 /* RCTTypeSafety.xcconfig */, + 20F511A3AE582E93EEC40EF2BDF8F751 /* RCTTypeSafety-dummy.m */, + 8CBC206F357BD657DE665283FF64197E /* RCTTypeSafety-prefix.pch */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - EB86E6DF37FF57CC426067554244A7BC /* BaseText */ = { + F048F9A065062C84998C2BF93298FE77 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 78026C44CB4771A074295CBD48676832 /* RCTBaseTextShadowView.m */, - FBB19F6852DACB904A58DB29E5E9A872 /* RCTBaseTextViewManager.m */, + 1273B2075324AA5A35ADD3EEFA93A812 /* UMConstantsInterface.h */, + 1A9D27323BB8BB75F3E1611E4F19AF74 /* Pod */, + 8B634D843C5369F02C7CB8358EA90B69 /* Support Files */, ); - name = BaseText; - path = BaseText; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - EDAFB4CBEADCA72B3EC0B4B45A5310A1 /* Pod */ = { + F0A826851B17765D44ADE27A7175C68F /* EXAV */ = { isa = PBXGroup; children = ( - AF319C55165A9A5192C41E8B49184D1F /* LICENSE */, - 9B5C0F937EE740986C0C775A6B374DCC /* README.md */, - 6BE791B190A55F5493216ADDF930FF6B /* RNLocalize.podspec */, + 7DDE9624A5F6DFBCD3AC7DBD6A9CC78B /* EXAudioSessionManager.h */, + C7CF83338819AE52A1BD15DB7641F1F4 /* EXAudioSessionManager.m */, + 8C7F41A208FFDABCB85C479F7BA211CE /* EXAV.h */, + 5CCA785FA99DC148F611B5C6C3AB31C7 /* EXAV.m */, + B7BB986419F0F27DD2299861535F0233 /* EXAVObject.h */, + 287DB838541FFB8DFDDA05910E775D9E /* EXAVPlayerData.h */, + 06CB3D40713972846A122E52966832F4 /* EXAVPlayerData.m */, + AA4F9B228DD356531036037844088F4D /* Pod */, + 0222E9DE073DB5C31121429F6DB9C69D /* Support Files */, + E62D1097C2E995B4BC26D1D08480182F /* Video */, ); - name = Pod; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - EE64E559A5D3BA0CE47F184F8F97F340 /* platform */ = { + F0DB252A12C5687CEEF4DBE350B92171 /* Support Files */ = { isa = PBXGroup; children = ( - B2E4EAA18DA111D623DD9CD4E24E433B /* ios */, + B59D6B83B401C1016A27DA8E04B77A90 /* RNGestureHandler.xcconfig */, + A7500D05C606E958DBFF988E5E4149A7 /* RNGestureHandler-dummy.m */, + D24FDE4ACF6F90FECB2D846EE02C309C /* RNGestureHandler-prefix.pch */, ); - name = platform; - path = turbomodule/core/platform; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - EE95262D8F85FB81BDD18B733E51353C /* React-jsiexecutor */ = { + F12761497C4EA5A2B050B4D3323BD666 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - E16AEBE6E688D2B3CF4286F3156B13C9 /* JSIExecutor.cpp */, - 53EE3027DA4A79F1B5A8C6FA0F9E1C0D /* JSIExecutor.h */, - 1680E842DE3EDAC364EC755FF7E627A6 /* JSINativeModules.cpp */, - B6DED11B420439E796257AAB9F9A0C96 /* JSINativeModules.h */, - 864732326F1B6B0C9EBA0E7DF235DBAF /* Pod */, - 624C8A18775084C49961A12A6A0E8F7A /* Support Files */, + 4782FAF03CF4CE401670DF000CE88D06 /* RCTAnimatedImage.h */, + 2EA0BEB0FED817F41CA1741A42E176FC /* RCTGIFImageDecoder.h */, + 2ABD1F3B8151FC79CAA4438F329509DA /* RCTImageBlurUtils.h */, + C1E103292D392F551478DB505253F1E6 /* RCTImageCache.h */, + B3E65BD7F64BBDAAAE6D801F5B393FE3 /* RCTImageDataDecoder.h */, + 868372E35A16798A8ABCDEBFE2E10337 /* RCTImageLoaderProtocol.h */, + 8E71363BC0A5016D99246A78029C7F3B /* RCTImageShadowView.h */, + 091ECAD49A159C22516EAE80A0659275 /* RCTImageURLLoader.h */, + B4CC7A68857E49954F1F3F103C9D61FB /* RCTImageUtils.h */, + D63FA28AF80536ADEEC30404BB221297 /* RCTImageView.h */, + 1940DD790D06E2D31255DB265DFA08AA /* RCTImageViewManager.h */, + 9AA70BAAB2359858A62D84D3C51E3327 /* RCTLocalAssetImageLoader.h */, + E2A96D1F154AEA87D016369A0C3870EF /* RCTResizeMode.h */, + C9ECD84BF7ECC17E8A196720EF82C5CB /* RCTUIImageViewAnimated.h */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = RCTImageHeaders; sourceTree = ""; }; - EEA7A374432AAF3653281E5EFF07ECCB /* RNScreens */ = { + F187C7ED4938A8BB32DFAAB748050947 /* VirtualText */ = { isa = PBXGroup; children = ( - 54F5B4531D9DA7A15F614344CC893A8A /* RNSScreen.h */, - 1D7EC17A8FA42C5353C9099F3229B948 /* RNSScreen.m */, - C341A65784DBF4BDBA30D4145B447BBD /* RNSScreenContainer.h */, - 0B7533902582F0897D80E9DB3E7F3415 /* RNSScreenContainer.m */, - 52EAE7424CD33D5F6735C3F02B932E71 /* RNSScreenStack.h */, - 25F6E99D2AAABA2C11653AF33876167B /* RNSScreenStack.m */, - 12B1EEBB9725647C1825930EC50BF172 /* RNSScreenStackHeaderConfig.h */, - EF5B7AA7F51A622ACDC3670AB5D0F5C2 /* RNSScreenStackHeaderConfig.m */, - 80251DEFA66ED7392A442F90B41988A6 /* Pod */, - 3E716092872B7C84BF2DB037CA57D38B /* Support Files */, + 52E7C9629AAE327315C865F91106C2DA /* RCTVirtualTextShadowView.h */, + 2A6D119C241935EEAA66F92C1D65BDBE /* RCTVirtualTextViewManager.h */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - EEC23530390F9B7A6B500857299912A0 /* Support Files */ = { + F1F510A70D1B0EBE73E9415866EE712B /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 3DCB6BEB26EC6265B782EFD7D3B218A6 /* SDWebImageWebPCoder.xcconfig */, - 3FA94B333E9C2CF8D949D9141535634B /* SDWebImageWebPCoder-dummy.m */, - FB46E91D8C8617213964623D0EA7A5A7 /* SDWebImageWebPCoder-prefix.pch */, + D828234ADE0B8938489DA54D83F3ED6D /* RNDocumentPicker.h */, + 535B2BF88CC1DEBFD8DD565F4DD44AC6 /* RNDocumentPicker.m */, + B3BDF533E0A7C698DE70FCFF6176D613 /* Pod */, + F86B43DC99DF6F90EB58CA0BE8B85E38 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/SDWebImageWebPCoder"; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; - EF627D7FFCA7C05878DA5BCF752AE974 /* Pod */ = { + F209B8420A1247F9C0CB2FE8CB865194 /* fabric */ = { isa = PBXGroup; children = ( - F3103EC0D7D0158AED02D8DBC05DE21C /* LICENSE */, - 24C611BEB3B7B32D72497FCA7274017A /* README.md */, - 3CDBDA098586CD6DDC196C4FEA5F1AFE /* RNImageCropPicker.podspec */, + 129B9631BDC5266932C196368D1635C7 /* crashlytics */, ); - name = Pod; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; - F118B83F3EBC41542BD4BD615166A40B /* Support Files */ = { + F250F8BFEE9A4EFECD089474724A1D74 /* react-native-keyboard-input */ = { isa = PBXGroup; children = ( - FA8B070C1ECC698B707DCABE7EAA10BE /* EXAV.xcconfig */, - 0D0BD146BA1D4D5795E01309BA0E2F9F /* EXAV-dummy.m */, - 1E45D05D28DE40EF4859BF54C4F93D00 /* EXAV-prefix.pch */, + DCB685EE3D32625E74C1BEA1FD8ABA00 /* LNInterpolation */, + 486B0FF3DF4E7F5C500CDB8E7DDC3801 /* Pod */, + 202304C596A298E5C9ADCE2B152D1206 /* RCTCustomInputController */, + C33F2550BE5B2602617C1D8AA9A723C3 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; - F22C9739380C97929D62D9DAB1B96ABB /* Support Files */ = { + F35A547701F0CAD071284863A9AEB4FB /* Support Files */ = { isa = PBXGroup; children = ( - B3ECE4F39FA7A516671A9C4C8D25B768 /* react-native-background-timer.xcconfig */, - 7FD76BCC981D42AB45C3F80A61CCB792 /* react-native-background-timer-dummy.m */, - 454A24BF9D84F5614FA392E65EEC9B5E /* react-native-background-timer-prefix.pch */, + 4017FFD49CA4520E73F3FE89DEA8A4F5 /* UMReactNativeAdapter.xcconfig */, + 18B5C0F19A0E3BEE3AA456024193C320 /* UMReactNativeAdapter-dummy.m */, + FBC510737DC1D292E4CB39A3D0C1F362 /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - F28F5B57C3544A7B50EC0698FEB4C1D9 /* jscallinvoker */ = { + F4F1376989A9CADAECE06A7F347B1E16 /* Support Files */ = { isa = PBXGroup; children = ( - DA1DDB000DB0E90F1460D9FE02E79F2D /* BridgeJSCallInvoker.cpp */, - 462C414933AF6C2576CD73FFED606E26 /* BridgeJSCallInvoker.h */, - EC50CC407681F46170243E6859EF0D0A /* JSCallInvoker.h */, + 35740ABD1AD7634DE1517E7555C91E16 /* UMCameraInterface.xcconfig */, ); - name = jscallinvoker; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - F45EDF45B92DF80B0BC914E6BD1413BA /* Nodes */ = { + F52AAFCB4EC12A55239B51CAF8F6101A /* Resources */ = { isa = PBXGroup; children = ( - BA6B665263F7CE4C16FA9945BD9A2140 /* RCTAdditionAnimatedNode.m */, - 2292A52D69EDF56C96E1FA5920D3BF5E /* RCTAnimatedNode.m */, - 3DC37D0171C53CA4B92AABDF707681C5 /* RCTDiffClampAnimatedNode.m */, - 267537452A82A3A232FD2A21CDA62841 /* RCTDivisionAnimatedNode.m */, - E1758E76354C650C68C1A3A2BF254CC4 /* RCTInterpolationAnimatedNode.m */, - 0B625BEC14900C73F42A045E4443F97F /* RCTModuloAnimatedNode.m */, - 5AAE8E41BAC9759B900C505DCB9BB778 /* RCTMultiplicationAnimatedNode.m */, - 56AAD55CB572513C35A8352F6F7AAAF7 /* RCTPropsAnimatedNode.m */, - 63E65247E228529409F5ACD959F8CD3D /* RCTStyleAnimatedNode.m */, - A15B289B18010BBCC0686DBCA0E1ED7A /* RCTSubtractionAnimatedNode.m */, - 9AE27E1A7549751B82486A8AF88C0690 /* RCTTrackingAnimatedNode.m */, - 5520622C1ADCE8D1361729383303E25E /* RCTTransformAnimatedNode.m */, - 69FEA0CE2B56460764B2EE0353C91875 /* RCTValueAnimatedNode.m */, + EAEBCA1777114BA426D64BF402AA2F02 /* AntDesign.ttf */, + 5D4B2E472DDD8816EF87C2E30E341302 /* Entypo.ttf */, + E4AF16FB139EFED7BDCA28B665998BB8 /* EvilIcons.ttf */, + 61ADBFFEA7F7BFE0E7EAAF879F636B7F /* Feather.ttf */, + 5C7ECCAA8D0FA348B0372B97A803A62B /* FontAwesome.ttf */, + 180B3F3B2CCBC0A1899AC150C2304993 /* FontAwesome5_Brands.ttf */, + C6F40FF5D2C82C7E13D5FC39DC5137C2 /* FontAwesome5_Regular.ttf */, + 3997462FFD2458AAF37FF8CD1B3B225A /* FontAwesome5_Solid.ttf */, + 60434634BBF3E1EF47A15A3B8E389A88 /* Fontisto.ttf */, + 7415F8886B539E195804535A4DA44C5E /* Foundation.ttf */, + E792C8F838061EE4BF767B5DFFB90B42 /* Ionicons.ttf */, + D921AFF1F8A599A86A3A40A488CE2337 /* MaterialCommunityIcons.ttf */, + 4483007FD4288BC7AD810D7D6C04FFA7 /* MaterialIcons.ttf */, + 495AD1AD21804241299E8C8C7E32C056 /* Octicons.ttf */, + 12B978AEF9C4D9F952777FEF0C025372 /* SimpleLineIcons.ttf */, + A7F00E10BE540D6ACCE339CEB7423ACD /* Zocial.ttf */, ); - name = Nodes; - path = Nodes; + name = Resources; sourceTree = ""; }; - F49B9A4F2D7F2A326573EFEBC66FF543 /* Support Files */ = { + F52E6BE73A247295F08576A3B494CCC3 /* Support Files */ = { isa = PBXGroup; children = ( - FB3C1378A1DAFA82E29C776DD2A7383F /* UMCore.xcconfig */, - 35E0E90EF0C183F2A43724E79B0F6C73 /* UMCore-dummy.m */, - A6B476B726B2B9CE15F2AE505681BA81 /* UMCore-prefix.pch */, + E137D2529ED147EE5C2FCDC86DB77EE7 /* RNAudio.xcconfig */, + 42714A57FA6B18B268EB2AEEBC8705DF /* RNAudio-dummy.m */, + B8823080C585EF6300941D3576E37FE3 /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - F51AFC94FDE360160AD16BAACB020124 /* Modules */ = { - isa = PBXGroup; - children = ( - 8AC3BBDDD55B3E89ADDA819159C595AC /* RCTAccessibilityManager.h */, - FBAD23040CBE4E2142011993B8F42450 /* RCTAccessibilityManager.m */, - 70BEF5B778B120C589B54B4C37B8C399 /* RCTAlertManager.h */, - CC3AF8391E634CDFC59029683EA45CF1 /* RCTAlertManager.m */, - 66B5B2B752B7A47FD8AF43C90B4DBCEB /* RCTAppState.h */, - 7F24E032AE04F05AEABCB1C7032A3AC5 /* RCTAppState.m */, - ABDD5FEEB0B4B846F2C916A95DE04DA8 /* RCTAsyncLocalStorage.h */, - B23D1FDBE32812A863E70A8CF24AC2D0 /* RCTAsyncLocalStorage.m */, - 95AB5F946C38ABC254DDEF1C159E750D /* RCTClipboard.h */, - 4CA1809E4DA735980D2F6351E4ADE2B4 /* RCTClipboard.m */, - 57FEA960087566F7421F1A598F2DFAB8 /* RCTDeviceInfo.h */, - 6BF300D9CD2D0C5E7616748D5304F44A /* RCTDeviceInfo.m */, - 1A490425FF97F332574003BE1815FAA3 /* RCTDevSettings.h */, - D4C432956D554714D14481DB43648082 /* RCTDevSettings.mm */, - AC85ECD7F57613A90860782F2DB13F63 /* RCTEventEmitter.h */, - A40F457419656C4E46D7621EEA616612 /* RCTEventEmitter.m */, - 019660E9880963692A9DD654445F12B8 /* RCTI18nManager.h */, - 2EAEB65122A1B7B66564B09118E9DB18 /* RCTI18nManager.m */, - 0E298623C8113EDD2F7DA73268BF8949 /* RCTI18nUtil.h */, - 993162D3B3E7C342C7579E508EBE5E60 /* RCTI18nUtil.m */, - 73B0B778F6130ACAE9A36E5A73B619E4 /* RCTKeyboardObserver.h */, - 4EA0198259715C8F432E0DB66B05BF01 /* RCTKeyboardObserver.m */, - CCB1E15AD8D78EF24ACCC95FB9A47FD9 /* RCTLayoutAnimation.h */, - B6EB6243C862B0E0EA3E9B4D8F9B7D6A /* RCTLayoutAnimation.m */, - 0FBB2A83EAB98E842AC78F6490F3FF33 /* RCTLayoutAnimationGroup.h */, - 1D34B0518D763888260CBCA4D27CAB07 /* RCTLayoutAnimationGroup.m */, - CD3FB84EC82B5E199929CF5D662B536E /* RCTRedBox.h */, - C3CCC815E2C8A3A492444CBAC37DED28 /* RCTRedBox.m */, - C95355B5869EF3BB98A00DB90F64789C /* RCTRedBoxExtraDataViewController.h */, - 643F413EB870ED5A3D3141A7E83DB9ED /* RCTRedBoxExtraDataViewController.m */, - 6F4D65C3BBDFF51BA6D647FD98259983 /* RCTSourceCode.h */, - 6B93C760245F47DF56037BCEB268CEA9 /* RCTSourceCode.m */, - F198F62274B8A8386C2B7310E2489C62 /* RCTStatusBarManager.h */, - 83EED80239CB71BDC2490C075F9655E7 /* RCTStatusBarManager.m */, - 64897C6F9812F8293BE1045CFA69D513 /* RCTSurfacePresenterStub.h */, - 2ABA499B725F3E5AD5108B73B0CDCCFC /* RCTSurfacePresenterStub.m */, - 6F2AFB15C5F9466F28C193F687283981 /* RCTTiming.h */, - D58BB2603E4CF6DE61074C51E8C43C91 /* RCTTiming.m */, - B3E13B87B985373791F26244EB6E8CDE /* RCTUIManager.h */, - 9553BA3B1B3CE3276F6A54B62DD54A13 /* RCTUIManager.m */, - 0ABC5A7FB631317834AC67F5AA871C9F /* RCTUIManagerObserverCoordinator.h */, - 7BAD59F6023F272A3C31D15D2A6B22AD /* RCTUIManagerObserverCoordinator.mm */, - F31A8E3C39E02FA88FFE80304BBF16D8 /* RCTUIManagerUtils.h */, - 9C87DC43F611D89073645963F4265D56 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; F56EB9A9D175DFFD33A8FE50190C91C7 /* FirebaseCore */ = { @@ -12193,169 +12216,212 @@ path = FirebaseCore; sourceTree = ""; }; - F59CF021D8D5ED88BA9470A472E0D562 /* Pod */ = { + F5E9EEDCE034226595CDD7FDF149C7C5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 58B64C4BE5E0B729543B8C2C893884E0 /* FirebaseCoreDiagnosticsInterop.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; + sourceTree = ""; + }; + F63C497BC521CF5EA1DBE5935E0E3614 /* Pod */ = { isa = PBXGroup; children = ( - A824BEF6F7BB1FDBBEDAA90504BC9B8F /* UMReactNativeAdapter.podspec */, + 4ACEFB59661EDD54D2A3AA25B6BF3785 /* LICENSE */, + 9A3BDCADB27F68C81DA09504AC9418C3 /* react-native-background-timer.podspec */, + C6ACF82A85BF36C642AF80D618F557B6 /* README.md */, ); name = Pod; sourceTree = ""; }; - F5E9EEDCE034226595CDD7FDF149C7C5 /* Support Files */ = { + F754E1D12DC34C07CCB114BF87262215 /* Yoga */ = { + isa = PBXGroup; + children = ( + 6403CC8E224FBBBC23AA1751A737A21E /* Bitfield.h */, + 6621DB48196F8D256EA0730409A00AB6 /* CompactValue.h */, + 3682BC07B13C3913D99CE605DE58217E /* log.cpp */, + FCA7CD5401BCF2E898218597DDE17297 /* log.h */, + 3813B67C685166172881570BC70A8844 /* Utils.cpp */, + 8A2F0DCF4B8A954074992DE814A87BB4 /* Utils.h */, + BE0653F9DC15DA4DA653DE8DDFA168B0 /* YGConfig.cpp */, + C0E2F257439C5A00D178513CF192B8AF /* YGConfig.h */, + 9DA098A930AE5D4F5DEE014046FEEC53 /* YGEnums.cpp */, + 972B10C3A154FDD38D8A6DFE46183C3B /* YGEnums.h */, + 75C8435C09230E8E776E52E0F584FF19 /* YGFloatOptional.h */, + BB76FFA7572482BEDE2A0B8D85910228 /* YGLayout.cpp */, + 2136384B7D6B8627E2971FE805B09E72 /* YGLayout.h */, + 8C03628797BA32EB5BD2256EFB7E4844 /* YGMacros.h */, + 1F9363B3349F3D205297C76DAC16F50D /* YGNode.cpp */, + 87179650DF0B52EB02B734E5424A0BE7 /* YGNode.h */, + 27318DBA74DEF0DE342E0CC7ED8BFAF5 /* YGNodePrint.cpp */, + F2F2F0731A51B790FD2904FAA4CFAB0A /* YGNodePrint.h */, + FA57561F875C59D89C4DB4D4B49D8B94 /* YGStyle.cpp */, + 2E05F2C6F33CAF5336B8740CBCA2A516 /* YGStyle.h */, + 11637996F6BACCC679A5D7D7556DFBE7 /* YGValue.cpp */, + 3C98681341CD087B588A35468223DFE7 /* YGValue.h */, + E7FCFB9C0C6048613A3DFE761F463840 /* Yoga.cpp */, + A999FA07037D8C28CFA99B631B6C334B /* Yoga.h */, + AC61EEFF4BBF136045AB54FC22452E13 /* Yoga-internal.h */, + 4793B76C36EC1A75B8DAFBE0A259EB6A /* event */, + DC4F289863EBCB22685CDAFA10AB0688 /* internal */, + 5B8EE0ADD8B7C7105D513EF5238A9751 /* Pod */, + 8AABF0F4D162C274D6837AF8EBAEE54D /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + F7A356F7EF70B76FC4D4E0E4714CFE27 /* links */ = { isa = PBXGroup; children = ( - 58B64C4BE5E0B729543B8C2C893884E0 /* FirebaseCoreDiagnosticsInterop.xcconfig */, + 885AD8A471224C419BD2F62DE884E74E /* RNFirebaseLinks.h */, + F06D3ADEB9AF413332ECD1AEFE347834 /* RNFirebaseLinks.m */, + ); + name = links; + path = RNFirebase/links; + sourceTree = ""; + }; + F80D0F5EEEECBEA3D0F461427BA2C894 /* Support Files */ = { + isa = PBXGroup; + children = ( + B37C4AC903FF4D9F541F94B2BFF6486F /* RNBootSplash.xcconfig */, + 8434E779EA668D91BE2B71D64051100F /* RNBootSplash-dummy.m */, + B59A61CF21DFF7E302E510ABC1872757 /* RNBootSplash-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - F70388C21AE67B04108EB3E07111CFAE /* core */ = { + F82FB431120A2CA63888CD3573C0F4B3 /* Source */ = { isa = PBXGroup; children = ( - 833F94A63A4ECF6AA0AD7F77C60C601F /* LongLivedObject.cpp */, - 7B6172DB9B95B5227C370146058A6019 /* LongLivedObject.h */, - 9A119910390FC49412D70E9A3D650784 /* TurboCxxModule.cpp */, - E7BAA56EA5DB28E6B266B2E3056ADF68 /* TurboCxxModule.h */, - 77193DAAF377528B186328C5EF992C1E /* TurboModule.cpp */, - C8948BEB83B8D42DE2ADD6A9874191D3 /* TurboModule.h */, - B30F34C15CBCEED206C7DD4B2223BF73 /* TurboModuleBinding.cpp */, - 2C880A8B743FD86CE7D4EF41780C187F /* TurboModuleBinding.h */, - 951E27838DC1211BC70B9F551B06A1D8 /* TurboModuleUtils.cpp */, - DA39FE0CCCE93A98D42217B3966CC407 /* TurboModuleUtils.h */, - EE64E559A5D3BA0CE47F184F8F97F340 /* platform */, + 9B96D5FB37E5FD3E49E0976D478C0B57 /* KSCrash */, ); - name = core; + name = Source; + path = Source; sourceTree = ""; }; - F816DEE7493EA7D497BE227B32221203 /* react-native-video */ = { + F86B43DC99DF6F90EB58CA0BE8B85E38 /* Support Files */ = { isa = PBXGroup; children = ( - EA6CF9F721055BBC6569D53AC6E59B6B /* Pod */, - 21C71875E0D9DE84AD2D958DF97EF0A7 /* Support Files */, - 68D82C2A205901A710077589263A2A9C /* Video */, + 18A0B7F3E92DA701681D15C3E5BE230A /* react-native-document-picker.xcconfig */, + C14A647A1C1939A7B825382AF4774BAE /* react-native-document-picker-dummy.m */, + 0FCC789D18CD3F2D2461A981CA0E6D7D /* react-native-document-picker-prefix.pch */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - F8F319D0B09352C226887A9022796F2D /* Views */ = { - isa = PBXGroup; - children = ( - 1D3C7FB57675D35DBC4F65FD222AC607 /* RCTActivityIndicatorView.h */, - 6ADEB2A2DF415846ED9E61505E0063FC /* RCTActivityIndicatorView.m */, - DF49A48715301F1EF9B5A1AEE979811D /* RCTActivityIndicatorViewManager.h */, - 5B187F37104621217E6D17605624F651 /* RCTActivityIndicatorViewManager.m */, - 1194A785C0CF1FA86D666502DEED9369 /* RCTAnimationType.h */, - AD5CAA6CFF500535C51D7902A5DF6F0B /* RCTAutoInsetsProtocol.h */, - 9258960B2AA189285E786AD05D7DEF14 /* RCTBorderDrawing.h */, - 4837A24AA3E70F6369C525153DD2AF5C /* RCTBorderDrawing.m */, - 3350EB711F5CAA6C40CFBB421C7AEAA8 /* RCTBorderStyle.h */, - 98B496360C78CE6A33BB3CE3A0C754DD /* RCTComponent.h */, - 7FDEB952A3B03752A63D907C714E9B38 /* RCTComponentData.h */, - BAE3A2A69292D5BACA45543CE0ADE605 /* RCTComponentData.m */, - FF62D8BD8F81C87F7678E2258FF7298B /* RCTConvert+CoreLocation.h */, - DF67ECD1E12F2125D0A1C7764C5106F5 /* RCTConvert+CoreLocation.m */, - A6B69B160A8D28D1E51F3C39C56D29A5 /* RCTConvert+Transform.h */, - 5C66626C896826D1FE5176ED98C59AED /* RCTConvert+Transform.m */, - FA497F74BAF4E9533A468D33B347590E /* RCTDatePicker.h */, - 4E52A629DAA85178F7C73397C644B603 /* RCTDatePicker.m */, - 5BEB86911BC3F664FDD33F357B198D0D /* RCTDatePickerManager.h */, - 3577B94AB5AB78F3C9C7361639950547 /* RCTDatePickerManager.m */, - B09EDCD56064F10BD42C2947403239C6 /* RCTFont.h */, - 61053461CADBB4522DC1CA7AB61F5697 /* RCTFont.mm */, - B8C1F97891BA424DFD614C38509BE9A0 /* RCTLayout.h */, - E992C56CAE9D75C7B56C64F706B32F6B /* RCTLayout.m */, - 5535B64C0D95F931CD88E7F2EE0AEE52 /* RCTMaskedView.h */, - 3E0E7B2ED357A5649AF19017879B03B2 /* RCTMaskedView.m */, - CF399719F6A03B0285664406D447BC33 /* RCTMaskedViewManager.h */, - 218B0452EA6C74BA96D19E1FFA93A405 /* RCTMaskedViewManager.m */, - 839512779028DBA6CB110199D87FF7F1 /* RCTModalHostView.h */, - 9882FA4CD8A6F3A5DBFD4F20B8765553 /* RCTModalHostView.m */, - E8A72DBB2243416EC64E69FF0CCF66CF /* RCTModalHostViewController.h */, - 96E9464270DFA0748E8883DDD19267F4 /* RCTModalHostViewController.m */, - 86DCBFCCD3269E27258B2BCBA21A5732 /* RCTModalHostViewManager.h */, - 31CFD8582724B97B03F5597B888745CD /* RCTModalHostViewManager.m */, - 0771C6336639E1AD2E0DFD8D845FCE98 /* RCTModalManager.h */, - 029E49944B031B0ACD51A3E63B91B74B /* RCTModalManager.m */, - 88007515B11CC2503E9F5A6033E51A95 /* RCTPicker.h */, - 7FA1960BD73DD5987082EC271C755E13 /* RCTPicker.m */, - 20D054CD0100E3DCC1CC4EEC875C517A /* RCTPickerManager.h */, - E5B709DB109B425C4143DDD6811F3447 /* RCTPickerManager.m */, - 47B93061541761A8A35B0ABA87A777E9 /* RCTPointerEvents.h */, - 73125AB98C6A7276197AE7AFE921B8ED /* RCTProgressViewManager.h */, - FC6CC8EDE9555F91C5730A2814094B09 /* RCTProgressViewManager.m */, - AAAFD311E240041154E118EFC719CE99 /* RCTRefreshControl.h */, - 1D7FA54348708E26FC9BDCE3A9791E17 /* RCTRefreshControl.m */, - 35C63BC132ED5A2355DDCB7744E84E91 /* RCTRefreshControlManager.h */, - E80CA7F21EA9447D0ED7262E489282CE /* RCTRefreshControlManager.m */, - 41556BEFDA4EDD60FA9C866BB39D762A /* RCTRootShadowView.h */, - 4EC5DC4DDAE29F872C71BCE57EC07589 /* RCTRootShadowView.m */, - 482FDDDF2BCF7E9C2AFA24213D7B99FA /* RCTSegmentedControl.h */, - 146E8432115267B246B7B17308A7D916 /* RCTSegmentedControl.m */, - 5493D1C1E055A9856F1F178A6AFA311C /* RCTSegmentedControlManager.h */, - 4922C303E8BE18448BC0BF66971099C9 /* RCTSegmentedControlManager.m */, - 6D6D70295C27DC7479939B2A1AAD1218 /* RCTShadowView.h */, - 57809A890A2325234AEB3EFF03A9CCFB /* RCTShadowView.m */, - 4D3997100DD9909182F55934D68E8E3E /* RCTShadowView+Internal.h */, - FAE12C9944B3B8FD59632A8CA1376DBB /* RCTShadowView+Internal.m */, - 0449A871CB5530320BB50C89A08440A1 /* RCTShadowView+Layout.h */, - 878CD185F38C6B52D66E8DDE2543041F /* RCTShadowView+Layout.m */, - 0A5286426CD2BBB19908ED46BB5202F3 /* RCTSlider.h */, - 17217E3E3687E8FF14776B035C346D4C /* RCTSlider.m */, - 14634337625129A3A939C1F0E42B21F3 /* RCTSliderManager.h */, - 6096C9CB69F347ECB78FE4608E360A6F /* RCTSliderManager.m */, - 78A62D0B309FC7F10342D5940344FA8A /* RCTSwitch.h */, - BBC51CFFA0B2E94B2C8C10220649A29A /* RCTSwitch.m */, - 6C2C0676B2D8BB0A88190CB1DAB36C00 /* RCTSwitchManager.h */, - 406EBCA52D15FC2B69B3007D0C7CE814 /* RCTSwitchManager.m */, - 49ADD84A27CF5B35366F5D7A1CAA1A09 /* RCTTextDecorationLineType.h */, - 18A6599B5E7845BCD69061F3A303D97A /* RCTView.h */, - 6EB2673DE746F1EFC09C0A83DF8B95C0 /* RCTView.m */, - BD39679022A95761E80CDA2AEB1AF33C /* RCTViewManager.h */, - 0E74D19C9120F09C0EBFF1FD1ABEBA28 /* RCTViewManager.m */, - E27E4AE7E5438025B3033C5A3EA246D9 /* RCTWrapperViewController.h */, - 217C453C85A6762C2B9C48CAAD0FE938 /* RCTWrapperViewController.m */, - 40868694D529A4908A117955291055E1 /* UIView+Private.h */, - 3D91ADB02B9B30E471534B4A7862374A /* UIView+React.h */, - BA5417214E9F5665E1E7F684407D13B3 /* UIView+React.m */, - 51B1C4EC03D39BCC47BBF69FB7DF98D0 /* SafeAreaView */, - CDB4315C0CAC688CCBC048DFDF18461D /* ScrollView */, + F8847027E2A7ABBA1CAC2EFCDB2D2D7C /* Support Files */ = { + isa = PBXGroup; + children = ( + 9FD3B24148510FB345B7C0D354BD4114 /* RCTRequired.xcconfig */, ); - name = Views; - path = React/Views; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + sourceTree = ""; + }; + F8B76A83F9E61B51E038D3DAAD4A5818 /* Support Files */ = { + isa = PBXGroup; + children = ( + 40BF05914E9030305D89F2DDB61B4961 /* UMSensorsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - F9C055B896D4A9B3E44E0F3FF183DD12 /* Pod */ = { + F973F9409273BC835DF5BAD69B2916C3 /* Pod */ = { isa = PBXGroup; children = ( - E857B538113025D06AB2D73DDB6F6764 /* FBReactNativeSpec.podspec */, + 304ECF002E7C26F5ADE2A610625EF9DC /* LICENSE */, + 50B5514B41C308E96ACAB695CA5695F6 /* react-native-video.podspec */, + 7FDF6244B703C67CA6F0AEDBD4A41029 /* README.md */, ); name = Pod; sourceTree = ""; }; - FA0297EEB79B7FB2ACAE4B986C54097B /* RCTNetworkHeaders */ = { + FA12B7132F7F975661623918126D8AC3 /* Multiline */ = { isa = PBXGroup; children = ( - 8571F91C4C8159FA2D998497D8E002FA /* RCTDataRequestHandler.h */, - A12BFA8D1BE1E56C16F5FC903E3B9196 /* RCTFileRequestHandler.h */, - 90B36D5D73A1DC243EC79CF1A07DDC91 /* RCTHTTPRequestHandler.h */, - 99A1EB196B3717EEAA36328830AFB6BF /* RCTNetInfo.h */, - 67E05BBDE8FD5CF74A6ED70C866D0D20 /* RCTNetworking.h */, - 6C7422BCC5CF5CA60B228FBBB3082486 /* RCTNetworkTask.h */, + AD325F453B46A7923257F9A6D95F78A5 /* RCTMultilineTextInputView.m */, + F562F79FEA0DC18F659C702B32DC93D2 /* RCTMultilineTextInputViewManager.m */, + 1CCC865E70FF1ABB44F457E8644D0F39 /* RCTUITextView.m */, ); - name = RCTNetworkHeaders; + name = Multiline; + path = Multiline; sourceTree = ""; }; - FB8DEA0E1AF570BB6DFC2BB2296A4279 /* internal */ = { + FA23DC6A4C097156C153FA8CD7542FF1 /* Brushes */ = { isa = PBXGroup; children = ( - 03002407081BA5F21DD29F403C78E310 /* experiments.cpp */, - 467E54AA992F0A23756B154B35B0E0F8 /* experiments.h */, - 3D0BA88D0F5A567DD68ED5A77BA6E3D4 /* experiments-inl.h */, + 1ABB83E16F1E5752B75D3435B92D0587 /* ARTBrush.h */, + 8CB547496BC9E715473597A4D9074BAA /* ARTBrush.m */, + 0B66034AB472803832C9006499BBB4D7 /* ARTLinearGradient.h */, + 00ED015520B1A5CEB93B568312D4B0E0 /* ARTLinearGradient.m */, + E839F9DED2353CC9F1B833EE05AB3586 /* ARTPattern.h */, + F7BE67CCE7C5F3CFBD5641CA2C994463 /* ARTPattern.m */, + 89F993C3028B25F0742262F16CDB4341 /* ARTRadialGradient.h */, + 3EBDF0D4DC0E55C1373F1DDF69FDE4F9 /* ARTRadialGradient.m */, + C13B9D5ECAC5E9AC528775C6FD081E33 /* ARTSolidColor.h */, + D1580BEFDD0199AB13AACB16E6426479 /* ARTSolidColor.m */, ); - name = internal; - path = yoga/internal; + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; + FAA9EF60B70C58DF39178CEB3E1E44A4 /* RCTRequired */ = { + isa = PBXGroup; + children = ( + 359AD85DF4C8CB12E980F9A490343656 /* RCTRequired.h */, + A893D161CE4C7FC5500967862BBFE4F5 /* Pod */, + F8847027E2A7ABBA1CAC2EFCDB2D2D7C /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + FB2C1C38B29C10D08DFBAD75726B5FF7 /* Text */ = { + isa = PBXGroup; + children = ( + ABA4C6F1823A46505C589663FF569D2C /* NSTextStorage+FontScaling.m */, + 51B9F8ACCD896C009E3495C16685D24E /* RCTTextShadowView.m */, + 4D1C8AEFF05FA25403176458FDF83847 /* RCTTextView.m */, + DBEF071D65684E062330ADB59D9D05C5 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + FB4DE46B8E35D2727F267F58F96B871B /* Pod */ = { + isa = PBXGroup; + children = ( + 40BEED63FAF5488B2ABED0AE9C68C144 /* LICENSE */, + 3480342820CE8E07B4E5DBE9E6E950D2 /* react-native-jitsi-meet.podspec */, + CE4FF328EDC56BBDEE5E4AAEB18DC47D /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + FBDA06D58AB29B3488243C69B97F8520 /* Pod */ = { + isa = PBXGroup; + children = ( + D4D4BEFF8782DF73A1A3A1C4BDA61881 /* LICENSE */, + 3FE7303AF02F58DB6BF6D41B4A08548D /* react-native-appearance.podspec */, + 87D95E98CFA8AD57B15F0564D10FB71F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + FBF288CD093BEDC9DEF46A1D4DDAB401 /* Support Files */ = { + isa = PBXGroup; + children = ( + 03F11CF333F81CB8CBCB9D7C6A425155 /* react-native-orientation-locker.xcconfig */, + 241A9FEBAEC2AD84DB50FD1D77941E7B /* react-native-orientation-locker-dummy.m */, + FA8F671C90D26D40391A7844DD114C7C /* react-native-orientation-locker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; FBF9D009B9F65C490F43B10E20D35390 /* Support Files */ = { @@ -12365,19 +12431,54 @@ 84DEA6A2926AC579012A614F51820936 /* glog-dummy.m */, 2037B71C0E6E322B709F9308458EA14B /* glog-prefix.pch */, ); - name = "Support Files"; - path = "../Target Support Files/glog"; + name = "Support Files"; + path = "../Target Support Files/glog"; + sourceTree = ""; + }; + FC2EF1186A6C71B75E41E287686B1849 /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 3FA8E0CC67E1BA5567A4154B6A83AD53 /* UMBridgeModule.h */, + 6BFDEC8CF48BCF3BBE35E13756D46F27 /* Pod */, + 2EF9227F68F5B99AB22324E81307A34A /* Services */, + F35A547701F0CAD071284863A9AEB4FB /* Support Files */, + CD1A5A80FDC27B3BA1BEF7871F547A98 /* UMModuleRegistryAdapter */, + A343C79649840D10FCB61765CA7BD981 /* UMNativeModulesProxy */, + C90AC8917D4345C583881C4B0AB602D5 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + FD2ABB1C3AD32EB6CDD1E38A18560079 /* Support Files */ = { + isa = PBXGroup; + children = ( + E2B42E3ABAEFC26524EE67261B0E6AD6 /* FBLazyVector.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + sourceTree = ""; + }; + FD3564D018FAAEA38851A7081A43987C /* CxxUtils */ = { + isa = PBXGroup; + children = ( + A55D3CCBDDD7927545D0702888EF3D58 /* RCTFollyConvert.h */, + B856A3B2E8491B2FA37AD3F509AF9383 /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - FD440D6E2590EFC1BDB7BB1FBD63A067 /* Support Files */ = { + FDB1401F91492F125DD3A085F8708496 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - B93032BDA0337DF6E7074A0FF7560925 /* BugsnagReactNative.xcconfig */, - DD5608687BECEED09E461BFE33083ECD /* BugsnagReactNative-dummy.m */, - 9FC6929D6A8FA2DF00CD4A4EB424330F /* BugsnagReactNative-prefix.pch */, + 1696B78BB6DEFB2287C1F5CC1327796F /* UMFilePermissionModuleInterface.h */, + EA8A9690C0624A65362E2EA86CCD4282 /* UMFileSystemInterface.h */, + 94994ED0ADA6206A22DE0B0B8847CB4E /* Pod */, + 9AE4E661C23C595FCD574D9E8E1624A3 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; FDE72FFE7D2794A6ADEAC4F86C2AB457 /* QBImagePickerController */ = { @@ -12408,34 +12509,36 @@ path = QBImagePickerController; sourceTree = ""; }; - FDEDDC6B92A4DB1441C1A0458A12B7BB /* Pod */ = { + FE12BC87CB7E17D2CBBE8B22FCE77339 /* Support Files */ = { isa = PBXGroup; children = ( - 18036A0DD7146828A82C97DF9FB2F436 /* api.md */, - D374630410F412F15FF3534AC4F9F886 /* LICENSE */, - 371F8D1E1E29F7B456C8D34ED426D9D5 /* ReactNativeART.podspec */, - 1B5F66A7469A492A003869067B8A8CAE /* README.md */, + 7032494EE9DCCE7D8E2EC9F4109FFC32 /* EXHaptics.xcconfig */, + FA05208432EBAB01ADE3051E0DDC468F /* EXHaptics-dummy.m */, + 6CBC07204784C24EC12D85E38CBCD553 /* EXHaptics-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - FE2DF9FA49C9E31122F764422D6EE293 /* Pod */ = { + FE39618C468A8902649777FB07283B94 /* Support Files */ = { isa = PBXGroup; children = ( - 8E332ADE58C48E48A9829B67ED1DB3CB /* EXAV.podspec */, + 4DCDF3A402BAF65DD8D8E38015B8FAAF /* react-native-cameraroll.xcconfig */, + 0C361AA60E60452354E55267A33BD6AC /* react-native-cameraroll-dummy.m */, + E0875856403ADA7B0ED49EAAADD70B5C /* react-native-cameraroll-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - FE893BDAB7DB4AE09C10682009AEA1B4 /* Support Files */ = { + FE679DDE2AAF10E99628D09BB0C548B5 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 39FC70B631FFFCB5D1ED2AADC923F3AC /* React-cxxreact.xcconfig */, - 6533F391047C6B9CC29AE500958528BD /* React-cxxreact-dummy.m */, - 9200DEAE2A7570ABF704D5B7095EEA2D /* React-cxxreact-prefix.pch */, + 14401E8417F07EEDB7B93DC7BEB6249C /* UMModuleRegistryProvider.h */, + B1BCC00D2D8DAF70A113D49EDDA48641 /* UMModuleRegistryProvider.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; FF0C5CF07A36217F63F00F78A8A89782 /* Support Files */ = { @@ -12447,43 +12550,29 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - FF4C1C2D93C03C83FB242DEBF3431750 /* Pod */ = { - isa = PBXGroup; - children = ( - CA3CCCC8938D3E9B98450F4AADD7A8FA /* React-cxxreact.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FFABC5BF20009B5CBBC8E72AEA23675C /* ViewManagers */ = { + FFD5DAC945FE3281E8C2251A37C1600D /* react-native-webview */ = { isa = PBXGroup; children = ( - 1662483176957A52BFB23EF9FCB4AE55 /* ARTGroupManager.h */, - 65603D0A600B757BE92A2AC67C32E095 /* ARTGroupManager.m */, - A50B8D7D7C326CDD59688588C09C4385 /* ARTNodeManager.h */, - 34102A33C3D29F5DC288E1C743B3A0A4 /* ARTNodeManager.m */, - 36DBBB1EB7784B467FC297447532C802 /* ARTRenderableManager.h */, - 0D8880D941A7943D0B5C4F8D3E73E65D /* ARTRenderableManager.m */, - 38AA03CF288E21D24E383AC7A6AAC210 /* ARTShapeManager.h */, - CE2E9E05A04E41002D438E2EAE393C3C /* ARTShapeManager.m */, - 209405F6035B3B85D8066BB4F1B81D3A /* ARTSurfaceViewManager.h */, - 4AC758F6F1630844C1EF6C2D2EC34843 /* ARTSurfaceViewManager.m */, - 780592FAFA2472D74CCC949A8DB2BCB6 /* ARTTextManager.h */, - C8457C531B8C1CE59B714AD8443813E5 /* ARTTextManager.m */, + 069E16C7D5116FD35DA825A786AB6CCE /* RNCWebView.h */, + 3CD392D0C4BC960917D4C2C53314C3B5 /* RNCWebView.m */, + F6EB774F8AC2C0CA3AE69CF2AC4A0159 /* RNCWebViewManager.h */, + A06E08A9F628D65737B6BC645F009039 /* RNCWebViewManager.m */, + D56562BD166A333AA792BE860DEB9479 /* RNCWKProcessPoolManager.h */, + 53BB0547E6A0633B1676ED1D03C87314 /* RNCWKProcessPoolManager.m */, + AD88959A2D1E2B6669ED6ADF51673426 /* Pod */, + 65F540AC66CE29D8B89CBBA774761EC4 /* Support Files */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - FFC5D527C7121A0220AFDEE7E005EEB3 /* Support Files */ = { + FFD6E9701E52A945D54C07F97B4A6281 /* Support Files */ = { isa = PBXGroup; children = ( - 2B2104564763E95CBABB7E689023F689 /* React-RCTAnimation.xcconfig */, - 49F5191ADF7A52BAFC1F0C03EC3F9D30 /* React-RCTAnimation-dummy.m */, - 5FAC833575C67C7AD1A1527A720ED625 /* React-RCTAnimation-prefix.pch */, + 875CED08558AC67D42F00C1878FB41D3 /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; /* End PBXGroup section */ @@ -12518,18 +12607,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0358B96DFFA55F9677722F34E7C9A081 /* Headers */ = { + 07EA496922703B388FA6473ED46A4F8D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 07EA496922703B388FA6473ED46A4F8D /* Headers */ = { + 0A130A814D8BA0DD7E431A32B221A7D1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12934,13 +13023,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 52D0CE05385C87AADA12BED5A009B82B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 55624BD664CDB4621E586E0A9C655C65 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13445,6 +13527,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 98E15DA11668922B11AB880036B80E72 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */, + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9963F724988F55F0861B9DBA357EDA66 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13717,6 +13808,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C7A52ECFCA93B7CCEF7F4335C7BD3610 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; C7DF84F3E2687A9E7E269AFB7736C5FE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14737,90 +14835,91 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = EAE71BB1E5653DB871E4334CDBD79EA4 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 3A16A273C5DA5820A2CAA82DE38345E6 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 52D0CE05385C87AADA12BED5A009B82B /* Headers */, - 40CFAC3B99EABC5E19FC632B7328BB9D /* Sources */, - BB630D5D5DE1ECF476F04294C8412611 /* Frameworks */, + C7A52ECFCA93B7CCEF7F4335C7BD3610 /* Headers */, + DABBE26D3BDA05A355B78B5407A7C089 /* Sources */, + 34004964F901171623AC159759EC50CE /* Frameworks */, ); buildRules = ( ); dependencies = ( - 378F762A1E70A3E4D2181DBA34FF5C15 /* PBXTargetDependency */, - CE91BEB2A3ED26D99DFF66312B8C4E87 /* PBXTargetDependency */, - 8C887EEDC3A60FB55EF4A9D6B0A1CDDE /* PBXTargetDependency */, - C90C4BA52D0D9F0BDE9C0D682D9BE327 /* PBXTargetDependency */, - A72BAAA7BFAFC94F88B97F1685F0D349 /* PBXTargetDependency */, - 247D0E2B3F0001A9D2500B4E18273629 /* PBXTargetDependency */, - DAD9D8EBFD56093583DE02F069711685 /* PBXTargetDependency */, - 8D0B6C837CE28F4B3B480D7608DFB250 /* PBXTargetDependency */, - 9D097A4DAFE1809BAAC353B48D34A5A5 /* PBXTargetDependency */, - F2DF544FCD15F2712B920E5500DEE6DC /* PBXTargetDependency */, - 992E34C178FC169B674F8FDD9ED89AFA /* PBXTargetDependency */, - 01D81CB0B551D9669AA9B94E672A1166 /* PBXTargetDependency */, - 1E3CDB0AEF11F5CFEEE7F43F5E9B694E /* PBXTargetDependency */, - 05931C55B48EAF9DCE7FA6000D92943E /* PBXTargetDependency */, - A48317FE3D2718E4F6315EAC18D50585 /* PBXTargetDependency */, - 9681C10DC4C3092630FA3A27513E9AB5 /* PBXTargetDependency */, - 52C11ACC66ECB691AE6EAE6836490A5E /* PBXTargetDependency */, - 5EFF2E8F8D660C16ECA52C5C585C2E5D /* PBXTargetDependency */, - 80BACC28AF81A1AE7BE1DA36C74DB0AC /* PBXTargetDependency */, - 5750BAEFEBA73F6E9E64E9563C990C3A /* PBXTargetDependency */, - D0C7292263B05779F8AC1B55F76E1A7D /* PBXTargetDependency */, - 7A940770550FABBF3D03DE828FE5BA84 /* PBXTargetDependency */, - 7306B05BD9457125BB67852689E5D71B /* PBXTargetDependency */, - 3B1537C88407BF7D2A42B29B41535E6D /* PBXTargetDependency */, - 86A27175790B03627FA15FFC6720D86E /* PBXTargetDependency */, - 396F7B33520E720CD048C0E51ABB5DAD /* PBXTargetDependency */, - 3F337C3429F5C2C01DD1ABBEA1932DA8 /* PBXTargetDependency */, - 2D9A7D07CF85BC8A2E3C6E77A2199BE0 /* PBXTargetDependency */, - DC0EF6C5BE767C1A814624BE291D1693 /* PBXTargetDependency */, - F8E1988B07A7F28EEF222255858B6B99 /* PBXTargetDependency */, - E595DD7E725469F6A0AF3F5731BBBF81 /* PBXTargetDependency */, - 085469D9A6981F48904E6F0A3CD0CF92 /* PBXTargetDependency */, - 8D83E0819E6CD92BCB66505D4AC611EB /* PBXTargetDependency */, - CA797E2637E5BBEC17BEF69CE98CD75F /* PBXTargetDependency */, - 3EDAFAE8F32D3AB8C03BAF69F9621B64 /* PBXTargetDependency */, - 544DB45E7BC925918FE4CC0FAD323D7E /* PBXTargetDependency */, - D0669C606DBE68E96667EAE1ACEF7CEB /* PBXTargetDependency */, - C8D059FA9FA81EA3EC7ADB8E718B18AD /* PBXTargetDependency */, - 6826E55B6B819BC3FC8C111B9B74920E /* PBXTargetDependency */, - D27985FA1CE1F38250BB8C39C584BFF1 /* PBXTargetDependency */, - 1BAE293B587D213256BB50178EEDD7F0 /* PBXTargetDependency */, - 797E640FB2700996FD802F7D54C131C8 /* PBXTargetDependency */, - 50FE63362B6630C25317415D2574E33B /* PBXTargetDependency */, - AA11CF3D69FEF06BA35F42A8071B7D06 /* PBXTargetDependency */, - 0AF033BA2CB861EEE6C10F76C3C82570 /* PBXTargetDependency */, - 44FA9820A0E2A6D1B9E850C64A056AF9 /* PBXTargetDependency */, - 4662C7323448A61FE62C1F711B13D1CF /* PBXTargetDependency */, - 452B50442EC669720B3A9B0D6E029CC4 /* PBXTargetDependency */, - 6AC78521DDBF6A6B3708536D131FE38F /* PBXTargetDependency */, - 95A13F928E3B3695CA3C30D67C717AA5 /* PBXTargetDependency */, - 011F0639164AA727F899B3983215571E /* PBXTargetDependency */, - F84E07F1351FEF3976C86636D1D64CC7 /* PBXTargetDependency */, - 24A2C14829627651D7E315EE5EA0F1A4 /* PBXTargetDependency */, - 06C9808921B310FCB7342735B321F64B /* PBXTargetDependency */, - B2EACCB1231064778BE5F32115C6B85A /* PBXTargetDependency */, - 41A3EA08F605109F543A43B82B47ECAC /* PBXTargetDependency */, - 835C52D9440C01187C657C7390794498 /* PBXTargetDependency */, - BADFC0CFC05BA60FFCC1792E6EEA32CD /* PBXTargetDependency */, - 99EECA74500D2B52D224E067FBE7F1E1 /* PBXTargetDependency */, - 54AF8C5A53272334B4DAAB4BFE1CA41F /* PBXTargetDependency */, - B4CE14CD1110D957673E23745CCB3FB7 /* PBXTargetDependency */, - BC9560680E4AB59061FF295D22534B08 /* PBXTargetDependency */, - 0544DEC233E46944777F1F0CA5F5EC51 /* PBXTargetDependency */, - E9F94FD370E43874DD56C28571F5F5CB /* PBXTargetDependency */, - 36F4E7F094553715659C1E4FF344D0D2 /* PBXTargetDependency */, - 8F335345788F7D9C919BEBDA2E7F2533 /* PBXTargetDependency */, - D6C214065A2B2FC668FB88753FA31B23 /* PBXTargetDependency */, - 659F718632838235B29F6F1DE16AF14B /* PBXTargetDependency */, - DC97FBDC0FE740C3FEC2E930CBEEF70F /* PBXTargetDependency */, - 8992D97313788E983C26E9E0E86455A1 /* PBXTargetDependency */, - C15DA38EC790F3AC13AF775A670FA546 /* PBXTargetDependency */, - 9E3813B40FECDF1E5440FC8FF85F2A87 /* PBXTargetDependency */, - CD63CFD1717E961DED1D3786832CBD92 /* PBXTargetDependency */, - B4A4E92C1F6558A6CD6CA5F2DB57808A /* PBXTargetDependency */, - E9E2E0337BB43EF244EFEC2379A362EA /* PBXTargetDependency */, + 855C3837B4EF43D08585D5530DD15BED /* PBXTargetDependency */, + 29DFD4A64428EB71E4ECEC61EC27F704 /* PBXTargetDependency */, + 32F30B7513E1C3E441C3A85022C148CF /* PBXTargetDependency */, + 13256A1C1294375B3937496B07863F51 /* PBXTargetDependency */, + 4EA73A036DBF85711C598264BEA29219 /* PBXTargetDependency */, + D83EB6F0A5879FE722B738A13D28928B /* PBXTargetDependency */, + B53C3184908B2B11F97B89E5761A7355 /* PBXTargetDependency */, + 63234A5974B6720E9075227C91785E0D /* PBXTargetDependency */, + 27564DDEDCF0F804AF6A7B45E6DEEE07 /* PBXTargetDependency */, + 2CB97770F57DBA5FF04C658B7D56793E /* PBXTargetDependency */, + 9405BD8420836D57B8AEA649A9C3E3F6 /* PBXTargetDependency */, + 83DFB1A37EB0CFE9559D90B5B4F36996 /* PBXTargetDependency */, + 2A5CFB1BBC575097043DC989798A2172 /* PBXTargetDependency */, + 6405BA6EC05CB1A87DFE9EE6C0641200 /* PBXTargetDependency */, + F6E95210BA41625B6DAAFEB39D296B70 /* PBXTargetDependency */, + C4728388BC6BDDDFF7B53CD379CC95EE /* PBXTargetDependency */, + 9063BEC61C36772FC336D8C9B997FC09 /* PBXTargetDependency */, + BBDCDFA5627303F50AAD48A693318D2F /* PBXTargetDependency */, + B43FBB705B9504483E4C82407E6E9020 /* PBXTargetDependency */, + 75198CF229A305A38733FF63C379C6A9 /* PBXTargetDependency */, + E255C832BC49274535D56350C86A77F2 /* PBXTargetDependency */, + CBC80B42275C41520595EE37B460AF07 /* PBXTargetDependency */, + A7FFDCCAE1C98FE9CF8D92816535C59F /* PBXTargetDependency */, + 7550278FECA29EC00706D45A15CC4F00 /* PBXTargetDependency */, + 8947A981C2435B273108CCBB72BE3722 /* PBXTargetDependency */, + 73031A11CA961EF47941248E605232AD /* PBXTargetDependency */, + 3C38375AF1E595ADB61AECE11D5F5673 /* PBXTargetDependency */, + 0934726766A1D686F77548BEEAE33C24 /* PBXTargetDependency */, + FE0720C7527B65AC84AF93A1807B5677 /* PBXTargetDependency */, + BF49BD05FCA88B75B257F2907168D666 /* PBXTargetDependency */, + 12A6FA2AAAA9B2D27A8C34DF1A0B7F6C /* PBXTargetDependency */, + 1195700B82473F4A5A5522C4074AC819 /* PBXTargetDependency */, + 464E02DEBECC155DE0FA29D15BE31482 /* PBXTargetDependency */, + 64FD1196D2BCEB82B68D55887D978AA8 /* PBXTargetDependency */, + 899B2FF2FA416A3E9ED0A8735D46F6EC /* PBXTargetDependency */, + 7000B134DB9CED5ABF8D1BF6F3B6A3FA /* PBXTargetDependency */, + 4F1E4B771710294056E9CDCDCD4AD93A /* PBXTargetDependency */, + 32EB3F947312B46F6D4C93C75A81B1B7 /* PBXTargetDependency */, + 4C09060AC63071D78AAF9B915E4DE259 /* PBXTargetDependency */, + 2990D0D4F4F85C1FBBBDFB9B92F2ABE9 /* PBXTargetDependency */, + A26577B89239A2B69A8C2B726C8F3122 /* PBXTargetDependency */, + E1F908D523A5F60C44F9FF48956F9B02 /* PBXTargetDependency */, + 7C615A589FBEE6A607D1D4F41EAE4ED1 /* PBXTargetDependency */, + 48418D1B0B08714D3C5AEE1172F2DDBC /* PBXTargetDependency */, + 85D85CCF28E9617FF925DE3B3A3EF189 /* PBXTargetDependency */, + 74E2690AB7C0C26F02465EEC65A10E3D /* PBXTargetDependency */, + 78183652E1F0320C072AE31B62174F55 /* PBXTargetDependency */, + FA17D19201681DE7C105DE73F0645A04 /* PBXTargetDependency */, + ABD4295ED172F3C0DCD8D0FB70555638 /* PBXTargetDependency */, + AF173EA293BE669BE497BC67DFE99754 /* PBXTargetDependency */, + FCC377F16BA120F9119A2A01FCCA87A4 /* PBXTargetDependency */, + 6F62C167B69B622F1CB4CB0A2340ED1A /* PBXTargetDependency */, + 9BEFFC16B7D3CED2B51605A9ECD89A1D /* PBXTargetDependency */, + 845D9D4A1A163C46D9923EF70DF50370 /* PBXTargetDependency */, + AA54A0D8A08B7D444BD3C3C703A3D54F /* PBXTargetDependency */, + 39B1C7FFEA5780A284E6F2AB1A268639 /* PBXTargetDependency */, + 2E5894102CE38669C2A79DB23A56E3F4 /* PBXTargetDependency */, + 25683E9E654E983DE670556E761106EB /* PBXTargetDependency */, + C8F88193A68E45572780530D269EEA6D /* PBXTargetDependency */, + 1B49E1A63F48670110EE5F30EC59C71A /* PBXTargetDependency */, + 5114C1227240E154287D95E7E43FB464 /* PBXTargetDependency */, + 14C748E24103C12CDF0395D467CA9922 /* PBXTargetDependency */, + D8ECF954F4C94B8103DFAA8F1A4231FC /* PBXTargetDependency */, + 4622969EEE0379808C3CD66AF19F016E /* PBXTargetDependency */, + 2310E74E97492B94458885278904E774 /* PBXTargetDependency */, + C5FCA3687DC94CEFFDA055C170FBBA3B /* PBXTargetDependency */, + ADFC650284AC1BBE029863A47EDF4824 /* PBXTargetDependency */, + 94135EA2966E77FC3E657282E12C7749 /* PBXTargetDependency */, + 7CE38573A09C8619E6C98154CF24A92B /* PBXTargetDependency */, + 85F314A9D238817026253C8ED8C33CFA /* PBXTargetDependency */, + 7A3AA4F316244CFB6EF90E05244E5E0E /* PBXTargetDependency */, + BB0F9DC57E5D94963CF9FC79323CE725 /* PBXTargetDependency */, + A477008176958D3B91BA9DF992EAAB9E /* PBXTargetDependency */, + F38921A2A534FB1FD42A59C567B93296 /* PBXTargetDependency */, + B466693444735D8CC3DCED4279934F68 /* PBXTargetDependency */, + BC6A96E8CCB1C9C8D0B8D2E6E28A42D8 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -14960,109 +15059,110 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = E47D60E8E0B0707B4ABC8E48926A265B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 0DCB99CA1C0B79F310F8AEEB7B494725 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 0358B96DFFA55F9677722F34E7C9A081 /* Headers */, - 7720DA0968BD688605E725AD0BC91D29 /* Sources */, - ABF07BD85F56F0AC1C2C86BCAB1BD10F /* Frameworks */, + 0A130A814D8BA0DD7E431A32B221A7D1 /* Headers */, + 58FF6FD9E58AE07B1F148A31E8A39DD9 /* Sources */, + D6FAF6BF5D3679758336E553387B6249 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 736FE75EB947F50D3E5FECE8788C92EA /* PBXTargetDependency */, - D29D425F15BABED77B9C622E40630FFC /* PBXTargetDependency */, - 9253D888DFE0ED55E6B67159CA3513C4 /* PBXTargetDependency */, - 0AAB58C9BA0DE973FAE691DB1A4A6B74 /* PBXTargetDependency */, - 323A90DD76413AA3D985D34A1C39D9E9 /* PBXTargetDependency */, - 514801C9BC0CB6C5F0CD37D87F593AA2 /* PBXTargetDependency */, - C1CDB34CE2D96B88A8FE804C391B6342 /* PBXTargetDependency */, - 976BA88227E8E1D79088EEAFB719D4DA /* PBXTargetDependency */, - 559D1C1030E0636F62FA24E5A0A55577 /* PBXTargetDependency */, - 32548B136E550B97E82A3DBCCB64B5CD /* PBXTargetDependency */, - C41171C83F10F15E2D698F5A78CC0DF7 /* PBXTargetDependency */, - DBB22FC05DC1E799A0D1E9F46904031F /* PBXTargetDependency */, - 64D2D976A83C4A87D81E71B7033AB5C8 /* PBXTargetDependency */, - F28683289C7DEB1A7CBAB447CA5F601F /* PBXTargetDependency */, - D70A31721BE83C43E45DD19C713BB640 /* PBXTargetDependency */, - E27DEC197794C6AAE643A68A817420CD /* PBXTargetDependency */, - CECB4DCBF4E55D7D58FEEDC7435435E6 /* PBXTargetDependency */, - E84E981B857FC73FB1944E465FD09030 /* PBXTargetDependency */, - BC3963105F9738D5212E19DA212F1326 /* PBXTargetDependency */, - E4CBD4E9086D10D8C3C01E5DD5F3C9A9 /* PBXTargetDependency */, - E483475B7D46F550FDA1FFDD0F5A1E73 /* PBXTargetDependency */, - E7EC044237C1EE4FE2462704C2052E71 /* PBXTargetDependency */, - AB2D180920FE261A1F4635DA57979F82 /* PBXTargetDependency */, - DA3FE06E3E0B6955AF0BE555DF1C8C4A /* PBXTargetDependency */, - 31AB82FE7BB9246B1A50331E86AF1B9C /* PBXTargetDependency */, - C698B67BDC7C6F1D9FABD7CB306424E2 /* PBXTargetDependency */, - D9418E7F8804D28C46C441E009FA2DD7 /* PBXTargetDependency */, - 6992E84EF51C6726E7E6843DEBD81CF6 /* PBXTargetDependency */, - 341167D3B654F8AABA5006D5A1B4E88E /* PBXTargetDependency */, - D150F531B4D6BE19E0DBCB3DBC3086B0 /* PBXTargetDependency */, - 2F6ECF64F207641EAFECCE105AD02642 /* PBXTargetDependency */, - FBA1FC7F67243E61A937A0285479112A /* PBXTargetDependency */, - 0DE65DEEC16457C687348486F8B9A1D0 /* PBXTargetDependency */, - 85E43ABEE16D041CFA8AC6B38A0F3D9F /* PBXTargetDependency */, - 5FB52D62E3E20169B50511D622F49239 /* PBXTargetDependency */, - BAA53A932DBED9AF6A725BEF0E900383 /* PBXTargetDependency */, - 4936CF33275C6E2452F89A22E658C92F /* PBXTargetDependency */, - 17D2EDA1CE7B488457F9F7FC1DCD838E /* PBXTargetDependency */, - E4254200811A4815639F7076591030A4 /* PBXTargetDependency */, - 4F9C2EE2A0F07C5F6361EE12FF7EB06B /* PBXTargetDependency */, - 80AFD9EA772298BAB59D7D2A4B78E077 /* PBXTargetDependency */, - 4E8C16828947AF224516F83BFDC4ED85 /* PBXTargetDependency */, - 89C60E20E5DF73968C4BA499FA58E5F4 /* PBXTargetDependency */, - BB8E9ACB51E5ED20A638B84D241713EF /* PBXTargetDependency */, - 5C786480E040096FE4407F464772EDA0 /* PBXTargetDependency */, - 96042BB7006C1ABD4DB72A655E180369 /* PBXTargetDependency */, - 0F66289CCE8C5EF4FFD6F017E6D778BC /* PBXTargetDependency */, - B0B00E721A6BDFB7A071945592166EA7 /* PBXTargetDependency */, - 2A2775466A7C22DEF691C865E4010268 /* PBXTargetDependency */, - E4413B77C9D15CDF49053F9F35FC12BD /* PBXTargetDependency */, - C3FDDB0FDE4FBBF9A57B5BDC724E0A7F /* PBXTargetDependency */, - 3D53681697F46E64E449CB0D91B125D1 /* PBXTargetDependency */, - AF980FC0C8F8BD1AB83EB08E5A31612A /* PBXTargetDependency */, - 53A53D584E3CF44820B67304127883CF /* PBXTargetDependency */, - 53312F63B8B9633AC395A22C272355DB /* PBXTargetDependency */, - E99ADE0E7090AF22C2BBE6C9773545E4 /* PBXTargetDependency */, - 4C88CDD5BEB6D70E1B5B2A835C43BD08 /* PBXTargetDependency */, - A6FEACEF5697E58FBB7E01F7F6CFACFE /* PBXTargetDependency */, - 5F0B90EF5AAFA5D1162A033062FBDFFE /* PBXTargetDependency */, - C54E4F347724606D0DA9350196557290 /* PBXTargetDependency */, - 319F838B2FB6A084725F54086AEE59BE /* PBXTargetDependency */, - 839AD5BD938F252A2E825329BE5E2D3E /* PBXTargetDependency */, - 4ED682B3AAF3BF38A81370CCA2AC206B /* PBXTargetDependency */, - 5B256A8DDAF5127B23E3B4899A1A7DCD /* PBXTargetDependency */, - D03CA8586E55BF034A26D053A2E8F03E /* PBXTargetDependency */, - 17E7D8C4F11C109B2F4F2CE495130C85 /* PBXTargetDependency */, - A533E68D28D1CB9A8AE7E96F7D52CFCD /* PBXTargetDependency */, - 1B49387B677464BD847194D30490DD79 /* PBXTargetDependency */, - 5463E8C02538311F7AEFBA1BEE4A8D63 /* PBXTargetDependency */, - 50C886CED7349D9F53E59F0B01435194 /* PBXTargetDependency */, - C09E48B9A0BF02D6958EE5AB01C1A6F4 /* PBXTargetDependency */, - 28B7037AE31E53E5EAC489C90465424B /* PBXTargetDependency */, - 7AA18F8E1C42776579E9B158EF4AD187 /* PBXTargetDependency */, - 17CC2FA1AD926425FF18D64788993FF2 /* PBXTargetDependency */, - 80CC8A6D63F1C57297106E7D388599C4 /* PBXTargetDependency */, - 8C3F72E4ABF1BD6B1185BB5071650512 /* PBXTargetDependency */, - E2B6967852B37458AE9176B8C47531BC /* PBXTargetDependency */, - 0D59A4D03F3B86EE96DFC92F77BA2191 /* PBXTargetDependency */, - 5F1ED86824670673367E9469A412061A /* PBXTargetDependency */, - CE2CD47DB0752D84FB2CA525426655A1 /* PBXTargetDependency */, - A009104A81D1FBE979B3F948C7ACD634 /* PBXTargetDependency */, - E518AF561679811AF5EE0BFEB0FA257E /* PBXTargetDependency */, - 82C1CE6715B0AF2175C68D68ACE253E9 /* PBXTargetDependency */, - 7B8CBFB8392EAC099CF12E43CEE94CB4 /* PBXTargetDependency */, - 97256D8B2ADFFA65C80E0D8BC5D7A58D /* PBXTargetDependency */, - 993BFB80881566473CE9E6194E4D6700 /* PBXTargetDependency */, - 422C5B63063E86EC378A44576203E3C8 /* PBXTargetDependency */, - 0DCF99B718499DCBC24F67F314AC3D02 /* PBXTargetDependency */, - 2C3C79A6947D0299CA51DF71BD6E48D9 /* PBXTargetDependency */, - A38F825C1BACEB25EB2367DBCA7158B6 /* PBXTargetDependency */, - 746A5C267A43543755E0DBD4CE772CB5 /* PBXTargetDependency */, - 12AB5300A0767299185FF2BA222D7690 /* PBXTargetDependency */, - 3499CAFBF9CA325F0C8B058F0F03867A /* PBXTargetDependency */, - 92A8177D8529FCA14DE7DD22376C3B79 /* PBXTargetDependency */, + 1075F9CCD994E70735DAAA1B72F6959E /* PBXTargetDependency */, + 1B850185117B6099EE2BA69919ED97A7 /* PBXTargetDependency */, + 2483891F00AFDF52352320EA6EBD544F /* PBXTargetDependency */, + 3C7B32D4434079D5F73DA9D9133D9B49 /* PBXTargetDependency */, + C1706866FAE7E7458DA97F552194C3A8 /* PBXTargetDependency */, + 402D2CD32362B95692C5217037873D9F /* PBXTargetDependency */, + 591994FD3F79993BDEB60F9BB1766BE6 /* PBXTargetDependency */, + C77C5E4EF16E89C249F12655D197A3E7 /* PBXTargetDependency */, + 89677BEB478AD16A6AECCFA0DDCF0CCC /* PBXTargetDependency */, + 10FB0ADE82096A6DBF288BBE8FA9B17A /* PBXTargetDependency */, + 1FCA998FBB73B9DADCCBF37ED5AA55E1 /* PBXTargetDependency */, + 687CC664059055A8C22CA64C2522888B /* PBXTargetDependency */, + 5E11E5E31E667949CDF7A07F2C3848A1 /* PBXTargetDependency */, + BBE536693CA9EDB8DB65D07E966AA6C5 /* PBXTargetDependency */, + 08FDE26109762C05BD705EEA4FB95648 /* PBXTargetDependency */, + BC09203586FB2340B77D06D5688A2B73 /* PBXTargetDependency */, + 9BF3EF4C131DFCC7B18B4F2ECC910786 /* PBXTargetDependency */, + 5452D4D8891C5B465554B3B7800B7970 /* PBXTargetDependency */, + 22590F507E44BC00C6D2E4EED8832A59 /* PBXTargetDependency */, + 6B27D33571E66A41231191AADAB3CA45 /* PBXTargetDependency */, + F1857E1E01AE89BB08CEEEB4004997F3 /* PBXTargetDependency */, + FABA595331B53EB63D52C7B8BCF0AF53 /* PBXTargetDependency */, + B64CD51BE745B16175CA9ED5AFE9AB5F /* PBXTargetDependency */, + 529129A59789643C7C883DA43F6F2E79 /* PBXTargetDependency */, + 5F1F7050164F354D84005B5A35E091F4 /* PBXTargetDependency */, + 65FEAFDA56CF49470EE2A150D42E74D6 /* PBXTargetDependency */, + 9297FBB28CDA6EA8F1372E5C98432EFF /* PBXTargetDependency */, + 00AE8428ADB648C90FEEC9A8F259EBA5 /* PBXTargetDependency */, + 693F4FCA343062E2A89F5F191DF8A9AF /* PBXTargetDependency */, + ED32C531F5C1D529A70F3E7D3D7301AD /* PBXTargetDependency */, + BCD2D120DF155D5F49FB9738AF101B5B /* PBXTargetDependency */, + 0B0A5132371545425BEE920E6B9079CE /* PBXTargetDependency */, + 8738CA30BDAECCFF6A21EE6803B63D13 /* PBXTargetDependency */, + A378A93205754F71B1FD689F48AF9627 /* PBXTargetDependency */, + 76B2F37FE4484673AC6C137DBD694B49 /* PBXTargetDependency */, + 2589A198D37DBBAA891AE349E32E53A3 /* PBXTargetDependency */, + 4A060AB7FC373C862648617EFE5B2D59 /* PBXTargetDependency */, + 0023F7CAF4207A14FB33561960C0D79B /* PBXTargetDependency */, + 1DD4DB71506075DE536453353DCDC20D /* PBXTargetDependency */, + DC05D6C810FE6922EC70A8B87AEC26CF /* PBXTargetDependency */, + 75554A3500A794EDAF68B787ECC404E4 /* PBXTargetDependency */, + 675DA9F8B6294A0EF6B3297B44E6AC63 /* PBXTargetDependency */, + D531F7144E340BA804EB980C44EB152B /* PBXTargetDependency */, + 20185205BFFEE1EFC74C2464565DD40D /* PBXTargetDependency */, + E39D11BF3F0AC0C78CF1BC07B9DD1D18 /* PBXTargetDependency */, + CE099FA43FA9CBBB52F46A4F3F29A6E6 /* PBXTargetDependency */, + 91B856ECB54257E27839FAD00B5B0713 /* PBXTargetDependency */, + B1D602C7071201D59CA3FED3EB25F27A /* PBXTargetDependency */, + 36E25A336B76398E774652128D3CC302 /* PBXTargetDependency */, + 941356D90B9D3236DD4BAB1B25E23106 /* PBXTargetDependency */, + A9D74A7E603C7CD2B35AE50C8951A27A /* PBXTargetDependency */, + 51997BA7DBB9A6CEFF2FD210C3DB5D14 /* PBXTargetDependency */, + 22EDBB430595EC8E0CCB027EBDEF0ABA /* PBXTargetDependency */, + DCDF6DD5377D29B16749C3BDBE257335 /* PBXTargetDependency */, + 95B69A10935D4C9D619EB46C52D4A8AE /* PBXTargetDependency */, + 8932090986A37BA5964BCD2AAC185C53 /* PBXTargetDependency */, + 0B717FF5AC03106D997B035E33E6DAC0 /* PBXTargetDependency */, + 11BF028FAC2218EBDB7EFC2C61C20FE4 /* PBXTargetDependency */, + 623132768179F7EF19EB436D062C074F /* PBXTargetDependency */, + 7A92A048691A8ADC709E41F8C20495D2 /* PBXTargetDependency */, + CB26FB3A1ADCB585DEF4B75B15DA0571 /* PBXTargetDependency */, + C551371FFCFD68991DC83B3625FD944A /* PBXTargetDependency */, + 009E4DE0D5B8A1CABDF2D17CE31FBBF5 /* PBXTargetDependency */, + 044C9460BD9ABC961FA1E8A1BC2D05FC /* PBXTargetDependency */, + 0142B930632190BD3B4D63A34746A8D1 /* PBXTargetDependency */, + 05BD4EDCFE5560D886006FE541DB5766 /* PBXTargetDependency */, + D792397192B4B2CC4E1F2C971511B663 /* PBXTargetDependency */, + C0F01AE6B725B8BE06911E7EC7613982 /* PBXTargetDependency */, + CA3CFCF5827C79A16F50A4237B5C2415 /* PBXTargetDependency */, + 1190E8B9713BFE6CDEFF7F4A7058DEFA /* PBXTargetDependency */, + 02DDA4061CE4EEE097CFD8780566B7FE /* PBXTargetDependency */, + C363132B03852623D6B647FF48AA1A10 /* PBXTargetDependency */, + CEB80C39144A1577C4B63511FF254823 /* PBXTargetDependency */, + 0F55A54C53376CDF554DBE9C20C06411 /* PBXTargetDependency */, + 9C5C02591BF4AB254AA00BEAA87A8E27 /* PBXTargetDependency */, + 4510DBBD8706CDEF1A909B6DECCE84C8 /* PBXTargetDependency */, + D41D46E6AEDAC6E02C2FD3F0653B7D0D /* PBXTargetDependency */, + 52C9FFA5142DED865AC5FE049D4F049B /* PBXTargetDependency */, + 5A4140CD1585E44744712FA4F45E1867 /* PBXTargetDependency */, + 80336185682572AB5A484FEB5CE5FC75 /* PBXTargetDependency */, + 44750622AD548AC64AB3F3425A27FCCF /* PBXTargetDependency */, + BE5D359524D18A8A258766608BB1D085 /* PBXTargetDependency */, + A25B6F8AA7DD52630D91CE0AF9605A84 /* PBXTargetDependency */, + BCCDFD7DF3592A262A27DA1D184FCAE2 /* PBXTargetDependency */, + FB5C70956A590BBAFC947BD33A9CEE0F /* PBXTargetDependency */, + FE76C92EDFA969F8124145D4FCA55CA4 /* PBXTargetDependency */, + E02A6402965CAD49139E2085F796EBBD /* PBXTargetDependency */, + 1919FC3CEED925CB282770030FB87B34 /* PBXTargetDependency */, + 6672E1CD5675D3968FF83D6860A4BE0D /* PBXTargetDependency */, + 13AAD3C8EC810BD7E0E84B194511B522 /* PBXTargetDependency */, + 969B9FAEB40B58A7439CA900DA93C9D8 /* PBXTargetDependency */, + 881F23D100A86646AC20041A94B3F255 /* PBXTargetDependency */, + 9DF8577420FE7C39AA7577056C09BD11 /* PBXTargetDependency */, + 6E121C05B929D36ACDFB4D3701E84774 /* PBXTargetDependency */, + BD4E7D717758D9D1AA3C294FD5FF1B06 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -15297,6 +15397,24 @@ productReference = 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */; productType = "com.apple.product-type.library.static"; }; + D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */ = { + isa = PBXNativeTarget; + buildConfigurationList = A3A2A6898A170D522E0B11C485B6E5C8 /* Build configuration list for PBXNativeTarget "RNDateTimePicker" */; + buildPhases = ( + 98E15DA11668922B11AB880036B80E72 /* Headers */, + 7B35C4554B5CD27161A55CD983693900 /* Sources */, + F8A87BC1D31D34426155DE9CBFD62B20 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */, + ); + name = RNDateTimePicker; + productName = RNDateTimePicker; + productReference = 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */; + productType = "com.apple.product-type.library.static"; + }; DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { isa = PBXNativeTarget; buildConfigurationList = B9972D9834BEEB627C9477E84A2E39F1 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; @@ -15505,7 +15623,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = A45DC33C70FB05B0CDF1E189E7559BFE /* Products */; + productRefGroup = 420C48B2DE10CB29EF09E117AF91E28A /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -15579,6 +15697,7 @@ 64F427905796B33B78A704063422979D /* rn-fetch-blob */, 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */, 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */, + D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */, 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */, 0BB7745637E0758DEA373456197090C6 /* RNFastImage */, A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */, @@ -16312,14 +16431,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40CFAC3B99EABC5E19FC632B7328BB9D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 20E232CA588DA8C46069BA8C54A246A8 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 41CCAD799767AB763A207EEEDF007EAC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16397,6 +16508,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 58FF6FD9E58AE07B1F148A31E8A39DD9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 356EE09C002119DE7C52088DFA62BD4C /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5A0315FE0271928CDEB11F2F9319E54A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16529,11 +16648,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7720DA0968BD688605E725AD0BC91D29 /* Sources */ = { + 7B35C4554B5CD27161A55CD983693900 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 47B3D2C9928485F2F031EC0CDBA4471F /* Pods-RocketChatRN-dummy.m in Sources */, + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */, + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */, + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16871,6 +16992,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DABBE26D3BDA05A355B78B5407A7C089 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F559AD1366957B0028F9C2E8CF3746BF /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DC6DB65FF82A08440D53B9FD9BDEBE3C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17045,11 +17174,29 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 011F0639164AA727F899B3983215571E /* PBXTargetDependency */ = { + 0023F7CAF4207A14FB33561960C0D79B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 18063B96FCF92525D0A75EFD6220E96A /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = FFD43E184427B6EA9ECC6F4437AB219B /* PBXContainerItemProxy */; + }; + 009E4DE0D5B8A1CABDF2D17CE31FBBF5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 659411621C92AF9563AF5F4D3F68C081 /* PBXContainerItemProxy */; + }; + 00AE8428ADB648C90FEEC9A8F259EBA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = F8FF8F00130B90292C25FD5A541C8256 /* PBXContainerItemProxy */; + }; + 0142B930632190BD3B4D63A34746A8D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 013B90B33AA066E5675D93493FAA0C49 /* PBXContainerItemProxy */; }; 01C4775EBB1ADD0B79CC48B319789E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17057,11 +17204,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 97B757EDAC3A7488ACC8A43E74C8388E /* PBXContainerItemProxy */; }; - 01D81CB0B551D9669AA9B94E672A1166 /* PBXTargetDependency */ = { + 02DDA4061CE4EEE097CFD8780566B7FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 7B5FA0C6BDF908F2741F671B48D29C7E /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = A8252907A5DB492F4067B22F6CA071B4 /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17069,17 +17216,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 0544DEC233E46944777F1F0CA5F5EC51 /* PBXTargetDependency */ = { + 044C9460BD9ABC961FA1E8A1BC2D05FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 194B97BFCF1B1B66877AFA036C4BCA87 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = D76EED7E57A8AC867FB994DBE71FF18D /* PBXContainerItemProxy */; }; - 05931C55B48EAF9DCE7FA6000D92943E /* PBXTargetDependency */ = { + 05BD4EDCFE5560D886006FE541DB5766 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = FF906DBD6B53903FD58E0D49FFC2BB10 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 8A59BFC9C583E87EAA2E6B8065372556 /* PBXContainerItemProxy */; }; 0601407CEF1C58A062803387CCDB2AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17087,12 +17234,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */; }; - 06C9808921B310FCB7342735B321F64B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = FF1AF1C99CA79A8E6F7EF45E4490A54D /* PBXContainerItemProxy */; - }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Crashlytics; @@ -17105,35 +17246,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 085469D9A6981F48904E6F0A3CD0CF92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 65C764149220F31F62DC7DF8CF001E7D /* PBXContainerItemProxy */; - }; 08834986FB3887AACF94417FB2063810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */; }; - 0AAB58C9BA0DE973FAE691DB1A4A6B74 /* PBXTargetDependency */ = { + 08FDE26109762C05BD705EEA4FB95648 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 50F5F34E22DBA3A51954822154D0A5F6 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 7E567AF9F6696E9BABAEA18B0F543692 /* PBXContainerItemProxy */; }; - 0AF033BA2CB861EEE6C10F76C3C82570 /* PBXTargetDependency */ = { + 0934726766A1D686F77548BEEAE33C24 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = AE7ADA6EDD53022DF5D8B342ECA06721 /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 6B6F2CD6F1EDA090471B40FD9881BCEA /* PBXContainerItemProxy */; }; - 0D59A4D03F3B86EE96DFC92F77BA2191 /* PBXTargetDependency */ = { + 0B0A5132371545425BEE920E6B9079CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 4E22DD29896ECA0C9E8378D5BE7C8740 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = B4D1DC1D87B27262F538757DA60FAB65 /* PBXContainerItemProxy */; + }; + 0B717FF5AC03106D997B035E33E6DAC0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = F1C1E6D53DF54035DAB5D6D1D49E22D8 /* PBXContainerItemProxy */; }; 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17141,29 +17282,29 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; - 0DCF99B718499DCBC24F67F314AC3D02 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 7483BB9168223C1F46199F8A75C668E4 /* PBXContainerItemProxy */; - }; - 0DE65DEEC16457C687348486F8B9A1D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 39727EDDC5631055FFD2495EB82A5608 /* PBXContainerItemProxy */; - }; 0EA175BD24BB28A0E0412FF094DE386B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */; }; - 0F66289CCE8C5EF4FFD6F017E6D778BC /* PBXTargetDependency */ = { + 0F55A54C53376CDF554DBE9C20C06411 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 76EF96F87D4CE35FC9889CA0A8387ED8 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = C7234391A2D448B979BFF7701270FC5C /* PBXContainerItemProxy */; + }; + 1075F9CCD994E70735DAAA1B72F6959E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 58E5216ED8479923BEC4DD1D75CD5A1C /* PBXContainerItemProxy */; + }; + 10FB0ADE82096A6DBF288BBE8FA9B17A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 863E41BA7A7F1117440E8FBD60D9AECE /* PBXContainerItemProxy */; }; 111B42C5DC57FD6481F10A216C2A2A54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17171,17 +17312,53 @@ target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */; }; + 1190E8B9713BFE6CDEFF7F4A7058DEFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 939E7A1046CB374F8C89A0A1686DD850 /* PBXContainerItemProxy */; + }; + 1195700B82473F4A5A5522C4074AC819 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = AD20E884F81A84B9953448DFC846440D /* PBXContainerItemProxy */; + }; 11BB47F7EA1D94100004061A682344B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 12AB5300A0767299185FF2BA222D7690 /* PBXTargetDependency */ = { + 11BF028FAC2218EBDB7EFC2C61C20FE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = E5ABFE9A5185008CB914566E2F333392 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = B7AF12EAC59B26018D9EF1CD9A4583B9 /* PBXContainerItemProxy */; + }; + 12A6FA2AAAA9B2D27A8C34DF1A0B7F6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 23606BE87CE39804C557EEBB5F3B65E4 /* PBXContainerItemProxy */; + }; + 13256A1C1294375B3937496B07863F51 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = D0AC3DC5ACD56608863F72BC86F892BE /* PBXContainerItemProxy */; + }; + 13AAD3C8EC810BD7E0E84B194511B522 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 3296120312383E2FEEF25EBE2E498DB7 /* PBXContainerItemProxy */; + }; + 14C748E24103C12CDF0395D467CA9922 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 322C038969155807A6FCDAF537BB6E46 /* PBXContainerItemProxy */; }; 16D9EDA83A5EAC350AAADE42DC833185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17195,53 +17372,41 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 17CC2FA1AD926425FF18D64788993FF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 0A3E73F0B97A19CA73C8BBF07506F561 /* PBXContainerItemProxy */; - }; - 17D2EDA1CE7B488457F9F7FC1DCD838E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 11DAF58BDA6D2E4BB305EC32A5E93715 /* PBXContainerItemProxy */; - }; - 17E7D8C4F11C109B2F4F2CE495130C85 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = A46E0910AE9038476B82E4089209C311 /* PBXContainerItemProxy */; - }; 18FD1501C797648CCBBE6F5A312BFE05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */; }; + 1919FC3CEED925CB282770030FB87B34 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 39526A737154429A92A749D57C7B717A /* PBXContainerItemProxy */; + }; 19BC2F23FE52F44CE24705F1417E1FA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 880E09ED5680F9853220E14F334D0ECC /* PBXContainerItemProxy */; }; - 1B49387B677464BD847194D30490DD79 /* PBXTargetDependency */ = { + 1B49E1A63F48670110EE5F30EC59C71A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 46FD5B6E4DC2D1DC82E17C7B123CD578 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = DACD7A76174C99D62A0ED52B1AD3A06F /* PBXContainerItemProxy */; }; - 1BAE293B587D213256BB50178EEDD7F0 /* PBXTargetDependency */ = { + 1B850185117B6099EE2BA69919ED97A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 31F4C93651E6CF48FFF4687738EFBEA8 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = AF4C42320C47D13C65A10E8E48CA3ECA /* PBXContainerItemProxy */; }; - 1E3CDB0AEF11F5CFEEE7F43F5E9B694E /* PBXTargetDependency */ = { + 1DD4DB71506075DE536453353DCDC20D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = B53B863CE7C121A375684313BF48804B /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 19CC10DDD342F470CF9E83A31C3E960E /* PBXContainerItemProxy */; }; 1F7F74A9D27293B2CD3A13D6A29E8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17249,11 +17414,35 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */; }; - 247D0E2B3F0001A9D2500B4E18273629 /* PBXTargetDependency */ = { + 1FCA998FBB73B9DADCCBF37ED5AA55E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 75B647DC3A2FC7A0DC0EFC08CAA5649D /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = F12B36ACEE8A62C2EE3F282BBD11E2C3 /* PBXContainerItemProxy */; + }; + 20185205BFFEE1EFC74C2464565DD40D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 7CFF68D0A201981A39136FFAD966A55F /* PBXContainerItemProxy */; + }; + 22590F507E44BC00C6D2E4EED8832A59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 0DC67079C36D074DD70BEF2B58719707 /* PBXContainerItemProxy */; + }; + 22EDBB430595EC8E0CCB027EBDEF0ABA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = DEE3FD7474B6EFD487E0853871BAB007 /* PBXContainerItemProxy */; + }; + 2310E74E97492B94458885278904E774 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 8BC80843B5C0C73400CF4BE181236F6B /* PBXContainerItemProxy */; }; 247FEEC1E501C4839C5EE406D74A3A13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17261,11 +17450,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 7F0C8BA205CDCCA50C905295C45878EC /* PBXContainerItemProxy */; }; - 24A2C14829627651D7E315EE5EA0F1A4 /* PBXTargetDependency */ = { + 2483891F00AFDF52352320EA6EBD544F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 3FCBADE8879009E0D9A56FB37D8F1ECF /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 223891320A84A86E1FF4F9FD8DB0E7A7 /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17279,6 +17468,18 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; + 25683E9E654E983DE670556E761106EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = F4E33676AD2CCF769C848D17F582A5C8 /* PBXContainerItemProxy */; + }; + 2589A198D37DBBAA891AE349E32E53A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = F683F40FDF11324EDA20B4171C558FD1 /* PBXContainerItemProxy */; + }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -17297,23 +17498,35 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 9AC1F06D86A0940CBEDC84127390E31D /* PBXContainerItemProxy */; }; + 27564DDEDCF0F804AF6A7B45E6DEEE07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 339A687BEBCC63ACC43DF6C250DC472D /* PBXContainerItemProxy */; + }; 27C702A0CD5B9CAB6ADF12761D4592D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 28B7037AE31E53E5EAC489C90465424B /* PBXTargetDependency */ = { + 2990D0D4F4F85C1FBBBDFB9B92F2ABE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = A47BBAD2A8C878A6F35C1459CF8A36D2 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = BF29A707BAA69746C68FC6247E559B43 /* PBXContainerItemProxy */; }; - 2A2775466A7C22DEF691C865E4010268 /* PBXTargetDependency */ = { + 29DFD4A64428EB71E4ECEC61EC27F704 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = A88D3CDF0C397BC041BFFD9F69DEC502 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 38096FFED39CB35DA1F86976401D2F27 /* PBXContainerItemProxy */; + }; + 2A5CFB1BBC575097043DC989798A2172 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = D9BF9AA4A049C2B97E28A7A37A8180DA /* PBXContainerItemProxy */; }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17333,11 +17546,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */; }; - 2C3C79A6947D0299CA51DF71BD6E48D9 /* PBXTargetDependency */ = { + 2CB97770F57DBA5FF04C658B7D56793E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 15B1782E09EC99EC871A019DEA961869 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = CF89074A6675624B726FA4D84C994E5E /* PBXContainerItemProxy */; }; 2D400D296D174E898B4E20125D436B48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17345,11 +17558,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */; }; - 2D9A7D07CF85BC8A2E3C6E77A2199BE0 /* PBXTargetDependency */ = { + 2E5894102CE38669C2A79DB23A56E3F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 346F451A3434C063F95DFA3D8E329BA7 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = A28FF71B6D790588E9ECD274F6E2C459 /* PBXContainerItemProxy */; }; 2E5A8B52DC4EB0A2B4F078A2DEBADCF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17357,12 +17570,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */; }; - 2F6ECF64F207641EAFECCE105AD02642 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = F58A5073982F5CA5207B228208B35C42 /* PBXContainerItemProxy */; - }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -17375,29 +17582,17 @@ target = C49345AFA49B098B0384C4FA864A4868 /* QBImagePickerController */; targetProxy = AFF74AD800513E8ADF86A29EA37DB955 /* PBXContainerItemProxy */; }; - 319F838B2FB6A084725F54086AEE59BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = E5164F3AA554D0AF23F54C9472FA676D /* PBXContainerItemProxy */; - }; - 31AB82FE7BB9246B1A50331E86AF1B9C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 478BCF3A67982787EA23A4AD2CFAD636 /* PBXContainerItemProxy */; - }; - 323A90DD76413AA3D985D34A1C39D9E9 /* PBXTargetDependency */ = { + 32EB3F947312B46F6D4C93C75A81B1B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; - targetProxy = 441A8CA5B05168995FB5AC472420352C /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 463F70E46A7575A43584E8937355E375 /* PBXContainerItemProxy */; }; - 32548B136E550B97E82A3DBCCB64B5CD /* PBXTargetDependency */ = { + 32F30B7513E1C3E441C3A85022C148CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 5DD842DDD04E261756E250C559B4D2E0 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 72ED0B5B27E65A915859B01D0DDADEDA /* PBXContainerItemProxy */; }; 330F77DFE2073004CAEAE6D131E54D67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17411,47 +17606,23 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 341167D3B654F8AABA5006D5A1B4E88E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 7FF01257197DF67859CBF36B42E16E57 /* PBXContainerItemProxy */; - }; - 3499CAFBF9CA325F0C8B058F0F03867A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 09C55BA58A5B57940C2CD2F161A53C1A /* PBXContainerItemProxy */; - }; 35D5269AD31979BA1B767BBD3ED53885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = BF3AAFF64628FD7E9E7A7DD743002FFF /* PBXContainerItemProxy */; }; - 36F4E7F094553715659C1E4FF344D0D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 4B16E47D780F73A3BED9BB9D575D956A /* PBXContainerItemProxy */; - }; - 378F762A1E70A3E4D2181DBA34FF5C15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = B5F83F05DE6EE525D804C3A916FA188A /* PBXContainerItemProxy */; - }; - 396F7B33520E720CD048C0E51ABB5DAD /* PBXTargetDependency */ = { + 36E25A336B76398E774652128D3CC302 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 31C3A7F687F151A13212655478227718 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = C849ECCA6DB63EB5946262809717B066 /* PBXContainerItemProxy */; }; - 3B1537C88407BF7D2A42B29B41535E6D /* PBXTargetDependency */ = { + 39B1C7FFEA5780A284E6F2AB1A268639 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = D7097650ACC15693773AF21FD8A22AA0 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 44F0F2519A7D81002D5D351E72320819 /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17459,11 +17630,17 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3D53681697F46E64E449CB0D91B125D1 /* PBXTargetDependency */ = { + 3C38375AF1E595ADB61AECE11D5F5673 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = AE98A604CFAEE90B22CF41E34610E018 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 6DC23E6184DC91254794D470273D17B8 /* PBXContainerItemProxy */; + }; + 3C7B32D4434079D5F73DA9D9133D9B49 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 45AE2A3F3F10B1808260F6A1BD148143 /* PBXContainerItemProxy */; }; 3EC9C41467F00AB41E8790F4AABEC57D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17471,53 +17648,41 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = C5D50E7D903962E2C2E382B536062BDB /* PBXContainerItemProxy */; }; - 3EDAFAE8F32D3AB8C03BAF69F9621B64 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 36922F2CE21CFB888A0E5EC2F283270B /* PBXContainerItemProxy */; - }; - 3F337C3429F5C2C01DD1ABBEA1932DA8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 4A3B0278EE276CCFEAAD5899379BE3CA /* PBXContainerItemProxy */; - }; 3F3EC18CA27FD995B1E6952D48C0C2D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */; }; + 402D2CD32362B95692C5217037873D9F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = FEB99FCCC901EA9D72C9E495C0052459 /* PBXContainerItemProxy */; + }; 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; }; - 41A3EA08F605109F543A43B82B47ECAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = D160BFCABCAC06E37EF5B77DBD3B3708 /* PBXContainerItemProxy */; - }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 422C5B63063E86EC378A44576203E3C8 /* PBXTargetDependency */ = { + 44750622AD548AC64AB3F3425A27FCCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = E4D2A2A32B031B9942FE387A27B87EF8 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 1B17BE1DBB0ECE0A222B46FCC255CF51 /* PBXContainerItemProxy */; }; - 44FA9820A0E2A6D1B9E850C64A056AF9 /* PBXTargetDependency */ = { + 4510DBBD8706CDEF1A909B6DECCE84C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = E3968F6471BC7F7E153FD54C3DF02487 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 6A0F121F649ABE88A339FC671F6ADC87 /* PBXContainerItemProxy */; }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17525,17 +17690,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; }; - 452B50442EC669720B3A9B0D6E029CC4 /* PBXTargetDependency */ = { + 4622969EEE0379808C3CD66AF19F016E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 5320895412AE202778C3CA34EDF263B0 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 14A364E800C3EE53FC573E9633007F09 /* PBXContainerItemProxy */; }; - 4662C7323448A61FE62C1F711B13D1CF /* PBXTargetDependency */ = { + 464E02DEBECC155DE0FA29D15BE31482 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = B102DC22200816F70DF4E5747A3BB60A /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 638AC976E5FB68381B400F51F2D2F106 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17543,11 +17708,11 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 4936CF33275C6E2452F89A22E658C92F /* PBXTargetDependency */ = { + 48418D1B0B08714D3C5AEE1172F2DDBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 0ABD7BEB53565320A162575E2D58E033 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 9F415156E5A2C2E1EC66C613001CC006 /* PBXContainerItemProxy */; }; 49B84289A3B9871A10A133360307483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17567,17 +17732,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; + 4A060AB7FC373C862648617EFE5B2D59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 9A6CE1E805A3AA61BCF656DB9F9561E2 /* PBXContainerItemProxy */; + }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4C88CDD5BEB6D70E1B5B2A835C43BD08 /* PBXTargetDependency */ = { + 4C09060AC63071D78AAF9B915E4DE259 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 8E7F59B6C136E6E4229A7E0F82418B4F /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D593C54472FEFEE5CA8330FB9C07D0FF /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17585,17 +17756,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */; }; - 4E8C16828947AF224516F83BFDC4ED85 /* PBXTargetDependency */ = { + 4EA73A036DBF85711C598264BEA29219 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = C13C6625CC7B81D4041FD0F0F4D790D8 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 4131B6349E5022A3C45397E1174A4F84 /* PBXContainerItemProxy */; }; - 4ED682B3AAF3BF38A81370CCA2AC206B /* PBXTargetDependency */ = { + 4F1E4B771710294056E9CDCDCD4AD93A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 29D1B15D2B3837B0E9B944EF023C368A /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 607E6ED0FFBB135AD244F6A0CA45723C /* PBXContainerItemProxy */; }; 4F7F40E77A1DA0E82C319F24DBD6FF90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17609,29 +17780,11 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 4F9C2EE2A0F07C5F6361EE12FF7EB06B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 4E30C42F809418E1FE1838FB0605279A /* PBXContainerItemProxy */; - }; - 50C886CED7349D9F53E59F0B01435194 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = E49A1DA11E031B17DD365A75C36C9A92 /* PBXContainerItemProxy */; - }; - 50FE63362B6630C25317415D2574E33B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = CA94FE56C811581034B0756FB54A2068 /* PBXContainerItemProxy */; - }; - 514801C9BC0CB6C5F0CD37D87F593AA2 /* PBXTargetDependency */ = { + 5114C1227240E154287D95E7E43FB464 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 9E4B59DA48DD48C7F473B55C2C57DB1E /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 40BB41992322CEDDF12B0BE78E8E6390 /* PBXContainerItemProxy */; }; 5195D675E015DEB9B99885FE0B15AAFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17639,11 +17792,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */; }; - 52C11ACC66ECB691AE6EAE6836490A5E /* PBXTargetDependency */ = { + 51997BA7DBB9A6CEFF2FD210C3DB5D14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 2BA52A35CA32F98ED7E80DBE98B1A67A /* PBXContainerItemProxy */; + }; + 529129A59789643C7C883DA43F6F2E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 20A9C7DB592D86944720E45460AD3710 /* PBXContainerItemProxy */; + targetProxy = F1721601C5F8D6F9553BBD7B8BB9E7F3 /* PBXContainerItemProxy */; + }; + 52C9FFA5142DED865AC5FE049D4F049B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = A610CD42155210F6D6C0F89853B4E104 /* PBXContainerItemProxy */; }; 52ED0D1D4CE538BBA93169D2D44FFFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17651,53 +17816,23 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */; }; - 53312F63B8B9633AC395A22C272355DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = B50EECCB68BD0A30F1541B6DEA079A52 /* PBXContainerItemProxy */; - }; - 53A53D584E3CF44820B67304127883CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = E8B6B4B9C39D4E8DDFE0FF9C6A6130BF /* PBXContainerItemProxy */; - }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 544DB45E7BC925918FE4CC0FAD323D7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 94940F00FE04BDDBE0E65D5C6F103D07 /* PBXContainerItemProxy */; - }; - 5463E8C02538311F7AEFBA1BEE4A8D63 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 8DF3F5DCB9BC4EA628981FBF0D5ABF2D /* PBXContainerItemProxy */; - }; - 54AF8C5A53272334B4DAAB4BFE1CA41F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 2046A21EC6E36ADB312915EDEF13D7F8 /* PBXContainerItemProxy */; - }; - 559D1C1030E0636F62FA24E5A0A55577 /* PBXTargetDependency */ = { + 5452D4D8891C5B465554B3B7800B7970 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 85D6FA57B42C1487996A9B1B542248F4 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 6E0D8749920D654008FC83ACE2DBD974 /* PBXContainerItemProxy */; }; - 5750BAEFEBA73F6E9E64E9563C990C3A /* PBXTargetDependency */ = { + 591994FD3F79993BDEB60F9BB1766BE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = C49345AFA49B098B0384C4FA864A4868 /* QBImagePickerController */; - targetProxy = 4C8E320B8C959E51B886C3A315DCD840 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = C8A6F6BC4D027E691B20283D2CBDE12A /* PBXContainerItemProxy */; }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17705,41 +17840,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5B256A8DDAF5127B23E3B4899A1A7DCD /* PBXTargetDependency */ = { + 5A4140CD1585E44744712FA4F45E1867 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = DF868A85E14C1B8BCC909AC95F683226 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 8C57F396D03163B668A11E7F0192FD5B /* PBXContainerItemProxy */; }; - 5C786480E040096FE4407F464772EDA0 /* PBXTargetDependency */ = { + 5E11E5E31E667949CDF7A07F2C3848A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 1C1C0F293D53CB2680F5C306BD182A84 /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 72935BF85DB5DFD13D10DA654BE43C62 /* PBXContainerItemProxy */; }; - 5EFF2E8F8D660C16ECA52C5C585C2E5D /* PBXTargetDependency */ = { + 5F1F7050164F354D84005B5A35E091F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JitsiMeetSDK; target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = CA0C03BD502C8BBAEBD2505A682761FE /* PBXContainerItemProxy */; - }; - 5F0B90EF5AAFA5D1162A033062FBDFFE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = CC7CBD301D65312E6A18CCDC6BEE304D /* PBXContainerItemProxy */; - }; - 5F1ED86824670673367E9469A412061A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 98229243C7BCF99AEC1BC2C56F1A9B87 /* PBXContainerItemProxy */; - }; - 5FB52D62E3E20169B50511D622F49239 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 023632A16B85D3D267BAE68E218B3D57 /* PBXContainerItemProxy */; + targetProxy = E0F8C5B0EF2DDF9E46B284D7E297247A /* PBXContainerItemProxy */; }; 6142C90C7067738802070DBD12BAA802 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17747,23 +17864,41 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */; }; + 623132768179F7EF19EB436D062C074F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 4CF7E56501DE22EDECB64C9B88F4ACD1 /* PBXContainerItemProxy */; + }; + 63234A5974B6720E9075227C91785E0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 6E6F31C7404904CB37338FF9D1EF1D2B /* PBXContainerItemProxy */; + }; 6395E3254FF15C5334B441B2D03EFBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */; }; + 6405BA6EC05CB1A87DFE9EE6C0641200 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = F44F9358EB465CA1683C405C3AEF7CA0 /* PBXContainerItemProxy */; + }; 648641E197156F9497402698E7616999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EF797B6066E1025B5FD8590A476CD8DC /* PBXContainerItemProxy */; }; - 64D2D976A83C4A87D81E71B7033AB5C8 /* PBXTargetDependency */ = { + 64FD1196D2BCEB82B68D55887D978AA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = E88BFB660FFA4A20034D584C1BD2D3F6 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 57B2EFFDF4D8B46E9D5C8BE65BA675BD /* PBXContainerItemProxy */; }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17771,11 +17906,17 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; - 659F718632838235B29F6F1DE16AF14B /* PBXTargetDependency */ = { + 65FEAFDA56CF49470EE2A150D42E74D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = 7AB08AA4B9A205D61636649A1DF06D2F /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 7E9C6A5E27B6C0AFDB34AA3191DBE107 /* PBXContainerItemProxy */; + }; + 6672E1CD5675D3968FF83D6860A4BE0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = E68C96015B7ED7FA617DCED9A5AF11C0 /* PBXContainerItemProxy */; }; 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17783,11 +17924,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; }; - 6826E55B6B819BC3FC8C111B9B74920E /* PBXTargetDependency */ = { + 675DA9F8B6294A0EF6B3297B44E6AC63 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = B41B9C41046C19FC194691845812F92C /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 1336D1C64C9321D878EE5B1F763D938D /* PBXContainerItemProxy */; }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17795,23 +17936,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; + 687CC664059055A8C22CA64C2522888B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 0B5B5E7E0BEA97ADB8192F0BDEDFA592 /* PBXContainerItemProxy */; + }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 6992E84EF51C6726E7E6843DEBD81CF6 /* PBXTargetDependency */ = { + 693F4FCA343062E2A89F5F191DF8A9AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 9669815F75B8D4E0E7511655DEA69FF2 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 457D913E6F9428BA75BFF9701A514900 /* PBXContainerItemProxy */; }; - 6AC78521DDBF6A6B3708536D131FE38F /* PBXTargetDependency */ = { + 6B27D33571E66A41231191AADAB3CA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = DADF91888AE65CFD7E3A273384F2287A /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = A4DB59DF3C1258519A58F796169FDBAE /* PBXContainerItemProxy */; }; 6D8C00952B65F5BD4F322D959F307D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17819,6 +17966,24 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */; }; + 6E121C05B929D36ACDFB4D3701E84774 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 32BCE27A19CA4339058901C8A648A42D /* PBXContainerItemProxy */; + }; + 6F62C167B69B622F1CB4CB0A2340ED1A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = E0AF3E938093ECED9084C86F958033C0 /* PBXContainerItemProxy */; + }; + 7000B134DB9CED5ABF8D1BF6F3B6A3FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 2F89D43FC9F27EEE87D3D0CE54DEB559 /* PBXContainerItemProxy */; + }; 7256F46E80FAF060C9B45570D9CDD063 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -17831,29 +17996,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; - 7306B05BD9457125BB67852689E5D71B /* PBXTargetDependency */ = { + 73031A11CA961EF47941248E605232AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = DA285DB53CB4BD6EC3F3E4D2C17C44D9 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 7606ACE747D0B9277E50C81A7F417ED7 /* PBXContainerItemProxy */; }; - 736FE75EB947F50D3E5FECE8788C92EA /* PBXTargetDependency */ = { + 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 76F7C72C4C32B2136E89696576BB5DE0 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; + }; + 74E2690AB7C0C26F02465EEC65A10E3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = A9F14AA672F579B6CE68FE7180E24425 /* PBXContainerItemProxy */; + }; + 75198CF229A305A38733FF63C379C6A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = C49345AFA49B098B0384C4FA864A4868 /* QBImagePickerController */; + targetProxy = 9CFE594A99A5A9EC92C9B9222B637BE9 /* PBXContainerItemProxy */; + }; + 7550278FECA29EC00706D45A15CC4F00 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = B7E023F06278BFE603B9D59472EBDD3C /* PBXContainerItemProxy */; + }; + 75554A3500A794EDAF68B787ECC404E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 4D9483B6C64E893C6D8B255403D6892F /* PBXContainerItemProxy */; }; - 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { + 76B2F37FE4484673AC6C137DBD694B49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = AE7D6E027CD712F28C9959B5136593AF /* PBXContainerItemProxy */; }; - 746A5C267A43543755E0DBD4CE772CB5 /* PBXTargetDependency */ = { + 78183652E1F0320C072AE31B62174F55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = 0797A8E5F21D84E99A31F8365FEAD7D5 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 4A4EABDB58EE3742F5D7BDD94A1F7A60 /* PBXContainerItemProxy */; }; 7818A97BE9882F05F0EE52CA3FB7ABEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17867,23 +18056,17 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 797E640FB2700996FD802F7D54C131C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 4A45D081A487ED808828B17402663208 /* PBXContainerItemProxy */; - }; - 7A940770550FABBF3D03DE828FE5BA84 /* PBXTargetDependency */ = { + 7A3AA4F316244CFB6EF90E05244E5E0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 17C1670FDD3257A2D701FA19AEBB0D74 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = FB47B238FCCF94E09F879F2A2C7DE3CE /* PBXContainerItemProxy */; }; - 7AA18F8E1C42776579E9B158EF4AD187 /* PBXTargetDependency */ = { + 7A92A048691A8ADC709E41F8C20495D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 00E0E5675D132F64A85F7880AAA5ECAE /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 5B2D324264AC982E8E70549AB476602C /* PBXContainerItemProxy */; }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17897,11 +18080,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7B8CBFB8392EAC099CF12E43CEE94CB4 /* PBXTargetDependency */ = { + 7C615A589FBEE6A607D1D4F41EAE4ED1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = D68FBA9E731638BD71BFF3EC0762ACA6 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 051E3EA807D7125B8FD6AAE4CA75FC90 /* PBXContainerItemProxy */; + }; + 7CE38573A09C8619E6C98154CF24A92B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 931D5543FB51DE2A6D5247C6E4D46EB7 /* PBXContainerItemProxy */; }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17909,29 +18098,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 80AFD9EA772298BAB59D7D2A4B78E077 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 6F1062F24CFD2D4674B600ABD915FA6E /* PBXContainerItemProxy */; - }; - 80BACC28AF81A1AE7BE1DA36C74DB0AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 7674E98A8D7EA1AB92B98F6A15466E4F /* PBXContainerItemProxy */; - }; - 80CC8A6D63F1C57297106E7D388599C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 8A5252C073088E8CE0DC5DDF4F31EE6A /* PBXContainerItemProxy */; - }; - 82C1CE6715B0AF2175C68D68ACE253E9 /* PBXTargetDependency */ = { + 80336185682572AB5A484FEB5CE5FC75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 3244CD2224F923174971DBDD1394D666 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 63C3C84BE8E0BAD8D842915A6E7F6E2A /* PBXContainerItemProxy */; }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17939,17 +18110,11 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 835C52D9440C01187C657C7390794498 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 3744D7862E2FE234F12CEACF9D39347A /* PBXContainerItemProxy */; - }; - 839AD5BD938F252A2E825329BE5E2D3E /* PBXTargetDependency */ = { + 83DFB1A37EB0CFE9559D90B5B4F36996 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 091EF88D4A7BD6481BE97BACDC0F96A5 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = D0EE951EAD6998DFDE5F28584F63E951 /* PBXContainerItemProxy */; }; 8428EE18A7782DDB4023470F96AFF628 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17957,6 +18122,12 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */; }; + 845D9D4A1A163C46D9923EF70DF50370 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 17D8A91B9959849E8234DADB2913B918 /* PBXContainerItemProxy */; + }; 84C564CB9F9513DE23A47461E9EFBC6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -17969,17 +18140,29 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = F11BC96676F5675A20A8EEF5971E90CC /* PBXContainerItemProxy */; }; - 85E43ABEE16D041CFA8AC6B38A0F3D9F /* PBXTargetDependency */ = { + 855C3837B4EF43D08585D5530DD15BED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 6D94BE959501319539A85DC2411EB55D /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = AEC4CC76F0D1BD997DC39487469EC609 /* PBXContainerItemProxy */; + }; + 85D85CCF28E9617FF925DE3B3A3EF189 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 4AA36531954EFABC76F017DC097B4347 /* PBXContainerItemProxy */; + }; + 85F314A9D238817026253C8ED8C33CFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 2A986F19F3D6A75BA59F743DF65E9DEF /* PBXContainerItemProxy */; }; - 86A27175790B03627FA15FFC6720D86E /* PBXTargetDependency */ = { + 8738CA30BDAECCFF6A21EE6803B63D13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNDeviceInfo; target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = B70575597F7204E053A335595B90CD3B /* PBXContainerItemProxy */; + targetProxy = 21ECCD52EA1815957E8E07EEB6D3D120 /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17993,23 +18176,41 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */; }; + 881F23D100A86646AC20041A94B3F255 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 26C650FE1161C7A094F89284F7121A68 /* PBXContainerItemProxy */; + }; 8836577855B2A402BB8083E2178254B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */; }; - 8992D97313788E983C26E9E0E86455A1 /* PBXTargetDependency */ = { + 8932090986A37BA5964BCD2AAC185C53 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = EC4F00EB2DF8136CA4ABB8F3EAE009FF /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = DBD7FB37F3AAA5CE9BF78B349CDE45A9 /* PBXContainerItemProxy */; }; - 89C60E20E5DF73968C4BA499FA58E5F4 /* PBXTargetDependency */ = { + 8947A981C2435B273108CCBB72BE3722 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 70D5E1883B24C8E34A5EB293B670F8D7 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = BD11BF29418FB5DED9D436663EAC04AF /* PBXContainerItemProxy */; + }; + 89677BEB478AD16A6AECCFA0DDCF0CCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = E9B630BEA98303A56CA01C5D8C4713EC /* PBXContainerItemProxy */; + }; + 899B2FF2FA416A3E9ED0A8735D46F6EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = A90B477E5E770A5E8A723BC38061B91C /* PBXContainerItemProxy */; }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18017,53 +18218,47 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; - 8C3F72E4ABF1BD6B1185BB5071650512 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = BF79C498C99E201CFC243E52FA4A59C1 /* PBXContainerItemProxy */; - }; 8C496C378AF5C2C390ABB9ACAD262DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DE8F7B6EA7B1B017A43DEDEAA9020A16 /* PBXContainerItemProxy */; }; - 8C887EEDC3A60FB55EF4A9D6B0A1CDDE /* PBXTargetDependency */ = { + 9063BEC61C36772FC336D8C9B997FC09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 239E26AAB92F77B05BCDF65519B99403 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = A052E15DD70BD9E2D9948988BDE7D2D4 /* PBXContainerItemProxy */; }; - 8D0B6C837CE28F4B3B480D7608DFB250 /* PBXTargetDependency */ = { + 91B856ECB54257E27839FAD00B5B0713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 50C09519A0BA45CAEC1E7D0189FF096B /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 76E956BD39B1700F4FE1D2A76280F2FC /* PBXContainerItemProxy */; }; - 8D83E0819E6CD92BCB66505D4AC611EB /* PBXTargetDependency */ = { + 9297FBB28CDA6EA8F1372E5C98432EFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = A913736EC65CEFCB71EBAA6C25832B3F /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = C49345AFA49B098B0384C4FA864A4868 /* QBImagePickerController */; + targetProxy = 359A14B8D8DF41C5606D6DAFFE9DA1B1 /* PBXContainerItemProxy */; }; - 8F335345788F7D9C919BEBDA2E7F2533 /* PBXTargetDependency */ = { + 9405BD8420836D57B8AEA649A9C3E3F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 1B904F5CB370E802DB9EC7223C433841 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 853BEA7545F4C8ACFE2BA8F668600F68 /* PBXContainerItemProxy */; }; - 9253D888DFE0ED55E6B67159CA3513C4 /* PBXTargetDependency */ = { + 941356D90B9D3236DD4BAB1B25E23106 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = B0802D316D13C7C3EF0EE74EFAA92A01 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 8DB26D32659CB196DB51A1A34156ACC5 /* PBXContainerItemProxy */; }; - 92A8177D8529FCA14DE7DD22376C3B79 /* PBXTargetDependency */ = { + 94135EA2966E77FC3E657282E12C7749 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 112B1288072ED6F11077B4B5069E5873 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = D2DAA1CE9BA689CBB86D032EE610AF1C /* PBXContainerItemProxy */; }; 943D3BD4A6984BC783E7677F30722A02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18077,17 +18272,11 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */; }; - 95A13F928E3B3695CA3C30D67C717AA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 60FC5E653D3A0DEBE239C264F1CC8903 /* PBXContainerItemProxy */; - }; - 96042BB7006C1ABD4DB72A655E180369 /* PBXTargetDependency */ = { + 95B69A10935D4C9D619EB46C52D4A8AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 03EB0CB2977F421EFC96EAE43AF194E4 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = C141DFEDD55048C5470D6A0AA4A92D23 /* PBXContainerItemProxy */; }; 966429256B271DD0F30E2FA25D97B79D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18095,11 +18284,11 @@ target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */; }; - 9681C10DC4C3092630FA3A27513E9AB5 /* PBXTargetDependency */ = { + 969B9FAEB40B58A7439CA900DA93C9D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 3DB470882CAC47793B8D6402AE8601DB /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = B3F767C57D4CD142C268D2D8E8386D2F /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18107,65 +18296,47 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 97256D8B2ADFFA65C80E0D8BC5D7A58D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 4C6AAEE98CD4FB849BADE4BD61B97A28 /* PBXContainerItemProxy */; - }; - 976BA88227E8E1D79088EEAFB719D4DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = BC49856C3C40B2023D07422A4DD1C333 /* PBXContainerItemProxy */; - }; - 992E34C178FC169B674F8FDD9ED89AFA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = E2B9E9F4D3734FA76FC4CAEA06FA044A /* PBXContainerItemProxy */; - }; - 993BFB80881566473CE9E6194E4D6700 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = E812D84C09181828D3BCD32E827D9A03 /* PBXContainerItemProxy */; - }; 994ADAEEEA94855F19638FBB96D0D629 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */; }; - 99EECA74500D2B52D224E067FBE7F1E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = CEA8AE4D1D363E8C6D80A1C511239FD8 /* PBXContainerItemProxy */; - }; 9AE14FA1F306013F286ABA20DD87B69C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */; }; + 9BEFFC16B7D3CED2B51605A9ECD89A1D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = DDEB10F14071A3A30BCAF1C27335B185 /* PBXContainerItemProxy */; + }; + 9BF3EF4C131DFCC7B18B4F2ECC910786 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = B733DCAD61F1D2E8DF4E9A5F07F6CD79 /* PBXContainerItemProxy */; + }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9D097A4DAFE1809BAAC353B48D34A5A5 /* PBXTargetDependency */ = { + 9C5C02591BF4AB254AA00BEAA87A8E27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 2391766D6A974384522F3D7FC414B28A /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = D29F8BF74B57EE0A574C7E3C323C19CC /* PBXContainerItemProxy */; }; - 9E3813B40FECDF1E5440FC8FF85F2A87 /* PBXTargetDependency */ = { + 9DF8577420FE7C39AA7577056C09BD11 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = 7B2510FDAAE6882DC6A22E26120DF33F /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = DA12705528BA645F1EB99675AB21EC65 /* PBXContainerItemProxy */; }; 9F4B49F01A597EA4F18DDCEBB1AF2B2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18179,17 +18350,23 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */; }; - A009104A81D1FBE979B3F948C7ACD634 /* PBXTargetDependency */ = { + A25B6F8AA7DD52630D91CE0AF9605A84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 02FE946403F5F44821C5C5447F89D9A3 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 7385D57E0D6B908B9FCFA58F656276AA /* PBXContainerItemProxy */; }; - A38F825C1BACEB25EB2367DBCA7158B6 /* PBXTargetDependency */ = { + A26577B89239A2B69A8C2B726C8F3122 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = F42D22647FD2BF1CB74427F3DC124B19 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = E707FE2EA10658DE58AD98C77738BA93 /* PBXContainerItemProxy */; + }; + A378A93205754F71B1FD689F48AF9627 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = E5648A80504808A8B0D99F44C076AD03 /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18197,17 +18374,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A48317FE3D2718E4F6315EAC18D50585 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 5A5B6C292361603B47084A7AB916FB26 /* PBXContainerItemProxy */; - }; - A533E68D28D1CB9A8AE7E96F7D52CFCD /* PBXTargetDependency */ = { + A477008176958D3B91BA9DF992EAAB9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = A027648A383E7F28D35C68C19FED9338 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 2DDA8A59AA87442EA1835C36C56EECF0 /* PBXContainerItemProxy */; }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18221,23 +18392,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A6FEACEF5697E58FBB7E01F7F6CFACFE /* PBXTargetDependency */ = { + A7FFDCCAE1C98FE9CF8D92816535C59F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 680EB4B2CA20E3A26C27E93744FF3CDF /* PBXContainerItemProxy */; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = DD56B73E7E87398AB92815DB75CD081D /* PBXContainerItemProxy */; }; - A72BAAA7BFAFC94F88B97F1685F0D349 /* PBXTargetDependency */ = { + A9D74A7E603C7CD2B35AE50C8951A27A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 7CEED9E7E388F29A5B72342FBFC499C4 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = F9F46FF004780C9E9089E597EB38469B /* PBXContainerItemProxy */; }; - AA11CF3D69FEF06BA35F42A8071B7D06 /* PBXTargetDependency */ = { + AA54A0D8A08B7D444BD3C3C703A3D54F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 90182E61D61A7417A1FAFB3081E63EB0 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 2E0673628140085DC5D6DC85DECFEF05 /* PBXContainerItemProxy */; }; AA55BD4562CF0DDCA3C38F5ABA08AF89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18251,11 +18422,11 @@ target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; - AB2D180920FE261A1F4635DA57979F82 /* PBXTargetDependency */ = { + ABD4295ED172F3C0DCD8D0FB70555638 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 6836F08F3BEC5E00D821A33E3F488323 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = F2D9ABF57B5FFECB408243177D2BE738 /* PBXContainerItemProxy */; }; ACDFD30135AB57A1F062637C78FB2E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18269,23 +18440,23 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */; }; + ADFC650284AC1BBE029863A47EDF4824 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = DB157DDF69F49DD233A231D4FA1C4D20 /* PBXContainerItemProxy */; + }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AF980FC0C8F8BD1AB83EB08E5A31612A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 8AFCDAA1A8E47C4A9CA578794B1967F3 /* PBXContainerItemProxy */; - }; - B0B00E721A6BDFB7A071945592166EA7 /* PBXTargetDependency */ = { + AF173EA293BE669BE497BC67DFE99754 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = AE390AC4B9C261709A7788D8DA1864A9 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 8A5FEC65150A496438EEC1617CAFEDF6 /* PBXContainerItemProxy */; }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18293,23 +18464,23 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B2EACCB1231064778BE5F32115C6B85A /* PBXTargetDependency */ = { + B1D602C7071201D59CA3FED3EB25F27A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 3B808640A04F4F3C60648FD86B5DBC95 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 7BE619E5B283FFFB50D88F6E95524F0C /* PBXContainerItemProxy */; }; - B4A4E92C1F6558A6CD6CA5F2DB57808A /* PBXTargetDependency */ = { + B43FBB705B9504483E4C82407E6E9020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 27581D19FD0AF8BBA12E1C5AA9EAC569 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 65A1957046C1BA07E70D8729B523D538 /* PBXContainerItemProxy */; }; - B4CE14CD1110D957673E23745CCB3FB7 /* PBXTargetDependency */ = { + B466693444735D8CC3DCED4279934F68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 281CE6AD6D041FE977D6FA0246BB8541 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 69B38E241EFC3F45E5D7CB372A8DE8CD /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18317,12 +18488,24 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */; }; + B53C3184908B2B11F97B89E5761A7355 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 903F3233CCABE0A16568DD6BBE9F3DA7 /* PBXContainerItemProxy */; + }; B6179D636B4AB55FAF69B12DDDBEA250 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */; }; + B64CD51BE745B16175CA9ED5AFE9AB5F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 66C9F8EA9FD5F521B983512BFF6A0661 /* PBXContainerItemProxy */; + }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -18353,41 +18536,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BAA53A932DBED9AF6A725BEF0E900383 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 6999A24B8CFCFD9F065B0CD06E93F0F8 /* PBXContainerItemProxy */; - }; - BADFC0CFC05BA60FFCC1792E6EEA32CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = CAB685DC2A676917F2C27EF7E0FBEF02 /* PBXContainerItemProxy */; - }; BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB8E9ACB51E5ED20A638B84D241713EF /* PBXTargetDependency */ = { + BB0F9DC57E5D94963CF9FC79323CE725 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 4914E4CEF51AA0728F9DB4ED2D455232 /* PBXContainerItemProxy */; + }; + BBDCDFA5627303F50AAD48A693318D2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = C5F2DEE55B252D17B96E97EE57C863D1 /* PBXContainerItemProxy */; + }; + BBE536693CA9EDB8DB65D07E966AA6C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 588715A57056E246EDC6308ECE55A085 /* PBXContainerItemProxy */; + }; + BC09203586FB2340B77D06D5688A2B73 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 1B4E035F5EF51E6B8DF0C8C0CC9107DF /* PBXContainerItemProxy */; + }; + BC6A96E8CCB1C9C8D0B8D2E6E28A42D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 1ECADA04DB9DBFCF336B35AD0B9024FA /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = FE6638491CDE98C2C7FB03380605B721 /* PBXContainerItemProxy */; }; - BC3963105F9738D5212E19DA212F1326 /* PBXTargetDependency */ = { + BCCDFD7DF3592A262A27DA1D184FCAE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 8EC3B351E5CA7717B8BDFFFB61F2E1CB /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = B060697673EFB5CEA3DAFC3A5BED9887 /* PBXContainerItemProxy */; }; - BC9560680E4AB59061FF295D22534B08 /* PBXTargetDependency */ = { + BCD2D120DF155D5F49FB9738AF101B5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 06E2FE4165D801B0B318F7253607753C /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 199D8BD0D101EBE315003325074F9B0E /* PBXContainerItemProxy */; }; BD1C2D29B9FAFAFEC379903BBA7FB010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18395,47 +18590,59 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */; }; + BD4E7D717758D9D1AA3C294FD5FF1B06 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 7DB66960FC601F6E99C14345F55A9D94 /* PBXContainerItemProxy */; + }; BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; + BE5D359524D18A8A258766608BB1D085 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 65790BAB97B2A2F3ED0E30BBE0D35A3A /* PBXContainerItemProxy */; + }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; + BF49BD05FCA88B75B257F2907168D666 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = E2E3D33DDF54CE98E29BEC1445D2E512 /* PBXContainerItemProxy */; + }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - C09E48B9A0BF02D6958EE5AB01C1A6F4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 1FBEEB2C6801D8C588F8C41D07E8B814 /* PBXContainerItemProxy */; - }; C0B06A5C5229F7876D8CF13D76EADE7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */; }; - C15DA38EC790F3AC13AF775A670FA546 /* PBXTargetDependency */ = { + C0F01AE6B725B8BE06911E7EC7613982 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 6FB4BE11D411335AA9A217821B27CDC1 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 1F1DC048FE195748FAED9100FA7DE946 /* PBXContainerItemProxy */; }; - C1CDB34CE2D96B88A8FE804C391B6342 /* PBXTargetDependency */ = { + C1706866FAE7E7458DA97F552194C3A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = DC04D4B8C57E322CC7834C7386FED33D /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; + targetProxy = 364ED74F7B68BD55D2B23FB069614BA3 /* PBXContainerItemProxy */; }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18443,23 +18650,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C3FDDB0FDE4FBBF9A57B5BDC724E0A7F /* PBXTargetDependency */ = { + C363132B03852623D6B647FF48AA1A10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 6E699FC20A9B6628B62D8A6385F35849 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 653BE8616EF0FBDEA5F62D1853200EC6 /* PBXContainerItemProxy */; }; - C41171C83F10F15E2D698F5A78CC0DF7 /* PBXTargetDependency */ = { + C4728388BC6BDDDFF7B53CD379CC95EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 8A73E44BBB44EA1F56E63ACFDA0324B8 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 4E95F493B1D3292DA5DC0B9A9C289502 /* PBXContainerItemProxy */; }; - C54E4F347724606D0DA9350196557290 /* PBXTargetDependency */ = { + C551371FFCFD68991DC83B3625FD944A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 9C48A44709EE294C16BD21F468273594 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 887B04DAF0CD700600E4B5122BE0481B /* PBXContainerItemProxy */; }; C5AE41D857959DAFF5E75B0995A21A95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18467,11 +18674,11 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */; }; - C698B67BDC7C6F1D9FABD7CB306424E2 /* PBXTargetDependency */ = { + C5FCA3687DC94CEFFDA055C170FBBA3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = CA161BE260E7AE3C96CF91225E255579 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 8BCE02FFB3C5D82D1B32DC17EF5593F4 /* PBXContainerItemProxy */; }; C76A0EE6871933CE34033765BE030A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18479,6 +18686,12 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */; }; + C77C5E4EF16E89C249F12655D197A3E7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 48F6FEEC600460E8B290E64CA0FC1317 /* PBXContainerItemProxy */; + }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; @@ -18491,17 +18704,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; - C8D059FA9FA81EA3EC7ADB8E718B18AD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 48EFFB1A0ECA7ABABF5A00CE6E5739F7 /* PBXContainerItemProxy */; - }; - C90C4BA52D0D9F0BDE9C0D682D9BE327 /* PBXTargetDependency */ = { + C8F88193A68E45572780530D269EEA6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 1770F445FD84C5DDE56FC3508AE7CF7C /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 6DBBBD7D8C47FA13876FCC9539B2E757 /* PBXContainerItemProxy */; }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18515,11 +18722,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CA797E2637E5BBEC17BEF69CE98CD75F /* PBXTargetDependency */ = { + CA3CFCF5827C79A16F50A4237B5C2415 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = C673DE5EC39C743E1F33151D7500064F /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 029AF32D317908210B205172A350DF4F /* PBXContainerItemProxy */; }; CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18527,47 +18734,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */; }; + CB26FB3A1ADCB585DEF4B75B15DA0571 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 00B8AD7082EF2E650487570300C22CB8 /* PBXContainerItemProxy */; + }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CD63CFD1717E961DED1D3786832CBD92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 5AA450206925FEDF77B06A075C4F713A /* PBXContainerItemProxy */; - }; - CE2CD47DB0752D84FB2CA525426655A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 6C209D716E0B5B1CF8558BC9EEA88150 /* PBXContainerItemProxy */; - }; - CE91BEB2A3ED26D99DFF66312B8C4E87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 9F3F1684A7AD32C8CA9DC0337C9038C2 /* PBXContainerItemProxy */; - }; - CECB4DCBF4E55D7D58FEEDC7435435E6 /* PBXTargetDependency */ = { + CBC80B42275C41520595EE37B460AF07 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = A03B2FD2E022A65A51937697A5F72B82 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = AF19E89F793A537D6E53E375EAD68EDC /* PBXContainerItemProxy */; }; - D03CA8586E55BF034A26D053A2E8F03E /* PBXTargetDependency */ = { + CE099FA43FA9CBBB52F46A4F3F29A6E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = C65796CB4E03DC2F755A9F9EFB10B506 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = DFECDA4DBABE855EC64A242A800A2FF6 /* PBXContainerItemProxy */; }; - D0669C606DBE68E96667EAE1ACEF7CEB /* PBXTargetDependency */ = { + CEB80C39144A1577C4B63511FF254823 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = A0D7EED39A6CFDC6C4C26DE097CB4D72 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 3BF951AA316115840540594A25A72DD5 /* PBXContainerItemProxy */; }; D0AEA44DC74BEB09351F0E25C7290EE7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18575,41 +18770,23 @@ target = EAEBAE5C8257AED94B3BED47A0E0E3FA /* QBImagePickerController-QBImagePicker */; targetProxy = B9F6134AA6CD3820CE35B60CB340E91D /* PBXContainerItemProxy */; }; - D0C7292263B05779F8AC1B55F76E1A7D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2AE51F0B4D7BF0C1A7A773EAD794213B /* PBXContainerItemProxy */; - }; D0E424AA51C6766027686207E235EA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */; }; - D150F531B4D6BE19E0DBCB3DBC3086B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 6E83AA5BEDDF9CE0CB09EB45E9579307 /* PBXContainerItemProxy */; - }; D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */; }; - D27985FA1CE1F38250BB8C39C584BFF1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 1828A99450267BF6C2DE050A74C48293 /* PBXContainerItemProxy */; - }; - D29D425F15BABED77B9C622E40630FFC /* PBXTargetDependency */ = { + D41D46E6AEDAC6E02C2FD3F0653B7D0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 351CB442F4A44EDC48EF5F8AD1F8EF3D /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 1421075EB976D2FEE9D9806B5415204B /* PBXContainerItemProxy */; }; D4675DE12C9CE28E7BE2DF3CB5F65EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18617,35 +18794,35 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */; }; + D531F7144E340BA804EB980C44EB152B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 1D2F6034C1A8096F570C3480FB4D1B2F /* PBXContainerItemProxy */; + }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D6C214065A2B2FC668FB88753FA31B23 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 192B37A7D911651F9762ABCEFF75B5E9 /* PBXContainerItemProxy */; - }; - D70A31721BE83C43E45DD19C713BB640 /* PBXTargetDependency */ = { + D792397192B4B2CC4E1F2C971511B663 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 230930FEEEBC58AC3E01ECF2BABF8D40 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 2C99838F8F6E104B4507D1B2E8D39D12 /* PBXContainerItemProxy */; }; - D9418E7F8804D28C46C441E009FA2DD7 /* PBXTargetDependency */ = { + D83EB6F0A5879FE722B738A13D28928B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = C49345AFA49B098B0384C4FA864A4868 /* QBImagePickerController */; - targetProxy = DB6C2E45526E03612CCF7F48FAD5EDA4 /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 9FAE2CA79291EAAB2208033BECD5C0C7 /* PBXContainerItemProxy */; }; - DA3FE06E3E0B6955AF0BE555DF1C8C4A /* PBXTargetDependency */ = { + D8ECF954F4C94B8103DFAA8F1A4231FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = D5F20AD3AF4DD5CF6A949DE6CFFC8859 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 888B4FDC61D8E9341CD9F82D70532963 /* PBXContainerItemProxy */; }; DA7A7B33C9919FB0F7AAF95AD29445CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18653,23 +18830,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */; }; - DAD9D8EBFD56093583DE02F069711685 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 1E4D34569A88F25D483E3E4FF054B705 /* PBXContainerItemProxy */; - }; - DBB22FC05DC1E799A0D1E9F46904031F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = ACDA983A7FD92733E5ABFCFD31DE733E /* PBXContainerItemProxy */; - }; - DC0EF6C5BE767C1A814624BE291D1693 /* PBXTargetDependency */ = { + DC05D6C810FE6922EC70A8B87AEC26CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = B79580E088309AEDA1EAAABE28F66D76 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = BBA1A90899E814F46FBDE94880F13E47 /* PBXContainerItemProxy */; }; DC365AF9AFF0EED32BE0CC92E8B78C42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18683,11 +18848,11 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; - DC97FBDC0FE740C3FEC2E930CBEEF70F /* PBXTargetDependency */ = { + DCDF6DD5377D29B16749C3BDBE257335 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 731883C1A5F45ED09853C5D11F6CA129 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = D0F15BE0445FA82710CAB0CE77128DA4 /* PBXContainerItemProxy */; }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18707,17 +18872,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - E27DEC197794C6AAE643A68A817420CD /* PBXTargetDependency */ = { + E02A6402965CAD49139E2085F796EBBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 5FAE7DCCD5A38DEF78DC85AFC55AFB04 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = 0B53C8A816A47D1D2989D25B318CEF23 /* PBXContainerItemProxy */; }; - E2B6967852B37458AE9176B8C47531BC /* PBXTargetDependency */ = { + E1F908D523A5F60C44F9FF48956F9B02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 23C25DD19C97249E79164CFDBDE77674 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 7EE3FF58C79408BEC7B08E7853FA8F5D /* PBXContainerItemProxy */; + }; + E255C832BC49274535D56350C86A77F2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = E6ECEB03029FFF043853C5AEF5D37401 /* PBXContainerItemProxy */; }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18731,90 +18902,30 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */; }; + E39D11BF3F0AC0C78CF1BC07B9DD1D18 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C2235A27F5007B9C8E32C82C1F5BA18B /* PBXContainerItemProxy */; + }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E4254200811A4815639F7076591030A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = DA3CCA0A4A159A197C784309AF8BE7BF /* PBXContainerItemProxy */; - }; - E4413B77C9D15CDF49053F9F35FC12BD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 708C87B337C46811638D19B86B254725 /* PBXContainerItemProxy */; - }; - E483475B7D46F550FDA1FFDD0F5A1E73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 69B88AE44C9AB16B07AF99E64691DB8D /* PBXContainerItemProxy */; - }; - E4CBD4E9086D10D8C3C01E5DD5F3C9A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = AEEDA574E8DD42C8F1E79D2E97D9D2E6 /* PBXContainerItemProxy */; - }; - E518AF561679811AF5EE0BFEB0FA257E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = F891AF176138F0F40423FFCEE86AE8D4 /* PBXContainerItemProxy */; - }; - E595DD7E725469F6A0AF3F5731BBBF81 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = A6053A2B8E5878BB1AA83BD0A05442E9 /* PBXContainerItemProxy */; - }; E6C446C9931D7EE8FED9B58FE9C9ADB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */; }; - E7EC044237C1EE4FE2462704C2052E71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = C6C4DC47A35428DD89F4C65FAAFBFAB8 /* PBXContainerItemProxy */; - }; E81B9D94D6D9DDB9A947C7FB8749DA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */; }; - E84E981B857FC73FB1944E465FD09030 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 70EFF67166DE1BD5C4C932A191ACDDF6 /* PBXContainerItemProxy */; - }; - E99ADE0E7090AF22C2BBE6C9773545E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 9035238607980C27A2E266E0C07EA375 /* PBXContainerItemProxy */; - }; - E9E2E0337BB43EF244EFEC2379A362EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 824E303C82147EA33BAD466DFEE12819 /* PBXContainerItemProxy */; - }; - E9F94FD370E43874DD56C28571F5F5CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = C1A992F4AF64CC2F4DBB1C4BC24D061A /* PBXContainerItemProxy */; - }; EBEA0CAF6189145089CC8215C3379005 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -18827,6 +18938,12 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; }; + ED32C531F5C1D529A70F3E7D3D7301AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = F852381E133218FE64E857E8E42C0F3C /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -18845,6 +18962,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */; }; + F1857E1E01AE89BB08CEEEB4004997F3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = F3C9C7F35AA5270219A8F93BE6016194 /* PBXContainerItemProxy */; + }; F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -18857,17 +18980,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */; }; - F28683289C7DEB1A7CBAB447CA5F601F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 9FD4CB5B242D0DB27D64EA5B3AA1D23F /* PBXContainerItemProxy */; - }; - F2DF544FCD15F2712B920E5500DEE6DC /* PBXTargetDependency */ = { + F38921A2A534FB1FD42A59C567B93296 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = DD56FB525C8EFA9D1975BC6AAF08DDAA /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = D83A65BB197390BC217AC725BBB2A09B /* PBXContainerItemProxy */; }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18875,41 +18992,71 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; + F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */; + }; F6479A4C276556C2A703A39E011FE39A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; + F6E95210BA41625B6DAAFEB39D296B70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 10EBC828B2DBF9A3EB9EF2D5895F6AFC /* PBXContainerItemProxy */; + }; F77917FB7C27A937C4A222233103AEBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F84E07F1351FEF3976C86636D1D64CC7 /* PBXTargetDependency */ = { + FA17D19201681DE7C105DE73F0645A04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 19E62068013074AD0DA46A93E8AAC012 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 014FB5572623DB3374A3B66B796D1AF3 /* PBXContainerItemProxy */; }; - F8E1988B07A7F28EEF222255858B6B99 /* PBXTargetDependency */ = { + FABA595331B53EB63D52C7B8BCF0AF53 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = CDCF1E729A9C3F5263EE7CCD315F87E1 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = CE3F526A6E8FEE984C13CEFEA5F14CC3 /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; + }; + FB5C70956A590BBAFC947BD33A9CEE0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 67E63F2C5FD5FBFE8AF0A2E8C2B1E66B /* PBXContainerItemProxy */; + }; + FCC377F16BA120F9119A2A01FCCA87A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = B952EF7966471C6FAB472A9C1CC38129 /* PBXContainerItemProxy */; + }; + FE0720C7527B65AC84AF93A1807B5677 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 1EF1B0065891118A9274EBE57360F778 /* PBXContainerItemProxy */; }; - FBA1FC7F67243E61A937A0285479112A /* PBXTargetDependency */ = { + FE76C92EDFA969F8124145D4FCA55CA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 4EEB84A070E78C5C312181100A969048 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 2CCE3E79F11EB5F05D306FBE9C020D51 /* PBXContainerItemProxy */; }; FEE4267D512CD5EAA1C9FF46F88ED492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18922,7 +19069,7 @@ /* Begin XCBuildConfiguration section */ 00718DA2EF2C79DDC75597E5CCB5F43B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39C0AA674BE4190D471D1EC46A006EE8 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 18A0B7F3E92DA701681D15C3E5BE230A /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18972,7 +19119,7 @@ }; 0099D41EC358F8EDE289C7A138DD58E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB3C1378A1DAFA82E29C776DD2A7383F /* UMCore.xcconfig */; + baseConfigurationReference = 2810FE8C402902684E42F86B061B20B2 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19025,7 +19172,7 @@ }; 024274BA705D432C4A7E56971B76D5C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EC615EF4BA05E27B26ADE753138A38B /* KeyCommands.xcconfig */; + baseConfigurationReference = 442C6BF9F30352725CF6D5AA0170FC26 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19051,7 +19198,7 @@ }; 02590A2E54E292E4B163CC19E59F2F78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC423AA734E88E2A9EA82E46CEC34185 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 09070D0B74632AFFF5B70770E9EBEB18 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19091,7 +19238,7 @@ }; 04B503C5ABE2C215E884B32B4647C2FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D632F7FEE702D28967F0D0C60DF3140 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 8B5ADC31FD186B9A7FF39AB89C8645E1 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19121,7 +19268,7 @@ }; 06BC0A8E01BE9D8AA3FB15051DD205D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48908DCE320586A152F9FEE14A2F50FA /* React.xcconfig */; + baseConfigurationReference = 7D5E4B14E4C0207640F68130035D7A01 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19135,7 +19282,7 @@ }; 07503BE4DBA728321A66841DFD7B509C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC423AA734E88E2A9EA82E46CEC34185 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 09070D0B74632AFFF5B70770E9EBEB18 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19161,7 +19308,7 @@ }; 0A5C3272020B713D7C5769D443274095 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26C7AE1C3D4AE681695DC51DC21BA022 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = A750113D5C95734016B6F89633D28693 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19187,7 +19334,7 @@ }; 0B4C266D7201BE42578B00130B939087 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39C0AA674BE4190D471D1EC46A006EE8 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 18A0B7F3E92DA701681D15C3E5BE230A /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19238,7 +19385,7 @@ }; 0D109765BE2DFCFF45B839D6331198AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA8B070C1ECC698B707DCABE7EAA10BE /* EXAV.xcconfig */; + baseConfigurationReference = 5E20B9411F931CDADBF3317807A5F5FC /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19264,7 +19411,7 @@ }; 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D2F8C828587E15FDC75ABF6E30BEFBF /* FBLazyVector.xcconfig */; + baseConfigurationReference = E2B42E3ABAEFC26524EE67261B0E6AD6 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19303,7 +19450,7 @@ }; 0FFE4A7E6463DF8D2BF607C001EF26C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EABBA3BE20F3C4D66C0EE95545419247 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 4527CA9D0BE34892B889E0EB539D1E04 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19329,7 +19476,7 @@ }; 107A38331BA622EFD23AA607C2765C98 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3058CE5E4E73203820980C3571C47FA9 /* EXPermissions.xcconfig */; + baseConfigurationReference = FF51B230FBFB8050E8A355161CFDD94E /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19355,7 +19502,7 @@ }; 12FAC84E34D27F50918DC68E37434C4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C098929F9618F49264B1CD79900CA2E0 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = A761313D967005DBA593B9F9E2FB63FD /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19400,7 +19547,7 @@ }; 15D0C18A330E8C97064F66C89AE92075 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA8B070C1ECC698B707DCABE7EAA10BE /* EXAV.xcconfig */; + baseConfigurationReference = 5E20B9411F931CDADBF3317807A5F5FC /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19488,6 +19635,32 @@ }; name = Debug; }; + 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 474448FEF0F945EE3EE8C4EDBCAC90BC /* RNDateTimePicker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDateTimePicker; + PRODUCT_NAME = RNDateTimePicker; + 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; + }; 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -19554,7 +19727,7 @@ }; 1A149D092E2CFC6DDCD8E48A2155676C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39FC70B631FFFCB5D1ED2AADC923F3AC /* React-cxxreact.xcconfig */; + baseConfigurationReference = 45C765F1C990C5B20916DEB3EAF2E8E9 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19605,7 +19778,7 @@ }; 1BBF1FC67203BE8FFEF02CD562A0ABB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5290CB5EFEBBEE577022209969A594D /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 3A32946588EA5D283AD7F202679C7337 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19645,7 +19818,7 @@ }; 21B20C7A656B8B26606666450F233202 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70C0B89F860A1A27231D6E32750D7567 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 8EE4BE67037C8C3B3579ECDCD9B7C2A9 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19670,7 +19843,7 @@ }; 23C6C4DC319C746B0FB2B500A5F11865 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1454EEF0AE1533254C943C167301BF1A /* react-native-notifications.xcconfig */; + baseConfigurationReference = 66E67D54611C3F741EDE2775CC1C74DC /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19710,7 +19883,7 @@ }; 244CAA427CEE1963C66E8F160A2D7C44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5290CB5EFEBBEE577022209969A594D /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 3A32946588EA5D283AD7F202679C7337 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19736,7 +19909,7 @@ }; 26551564308AC8D658D695032AA5AE58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B35A24C2CDA563C390E77B4DAED2636 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 86A8EE1D2F8B8AEB69DAEF21A92DBBD4 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19762,7 +19935,7 @@ }; 2703B7272D54F6883D4FB415677DB5D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A9E54B8C06A1BBE8C3A3BF8BC2F5EFD /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 3408483C86C5FC83F26C6296D16EBAEB /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19787,7 +19960,7 @@ }; 27BCC9CA860F306C015533FEE3107CCD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E33360EBA3D9E551A9A45C8345B497EB /* RNRootView.xcconfig */; + baseConfigurationReference = 2094B17B932F0291907A328EF66C43DE /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19813,7 +19986,7 @@ }; 28D56E215E53845903676C02E9E657A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48908DCE320586A152F9FEE14A2F50FA /* React.xcconfig */; + baseConfigurationReference = 7D5E4B14E4C0207640F68130035D7A01 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19828,7 +20001,7 @@ }; 2953790EFB1BD8A9E78C65D8FCEEACFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A95659DAB37834A199DC8808A20E14C /* EXConstants.xcconfig */; + baseConfigurationReference = 982A8DF71C07BCCAE7B7645DFE00F523 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19855,7 +20028,7 @@ }; 2A5E7696D7993201DAD047C1A0D2C4E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E51EAC008EF7B39A2EDBA5F14D745AF /* RNBootSplash.xcconfig */; + baseConfigurationReference = B37C4AC903FF4D9F541F94B2BFF6486F /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19880,7 +20053,7 @@ }; 2AF938D92353FFD31BE3DB678B15377C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3D9D482398AC78F2A144C249F57F6DC /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 4DCDF3A402BAF65DD8D8E38015B8FAAF /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19905,7 +20078,7 @@ }; 2B272C4CE6BEAA0B9E0AA72279542905 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B5FD04302A048CD337ADEAC861C20CF /* React-Core.xcconfig */; + baseConfigurationReference = C75E1C5FEF410A767A34D685A2AB9BDE /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19930,7 +20103,7 @@ }; 2BE44409CF53F7716718039FCCF13617 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3E71A093C520CA7ED9048BCED657CFC /* react-native-webview.xcconfig */; + baseConfigurationReference = 12F9685BAA8BDA1D4DB413B7DEC5918B /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20022,9 +20195,32 @@ }; name = Debug; }; + 34CC05D51BE3AA681913CC55971BA356 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 371989D182BF95DFA0EC5239D0C21ADD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D3D82F98484D93CEE6F238F27C8A15D /* RNReanimated.xcconfig */; + baseConfigurationReference = 906AE7707BBFDCDC9C23789A1BCC7234 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20049,7 +20245,7 @@ }; 37E163221C1422D15853A75EC40F1ADE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED77A1547567C8ABCEBCA42CA62907C4 /* RNLocalize.xcconfig */; + baseConfigurationReference = 361B885668026CB8D0F97C254A166261 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20074,7 +20270,7 @@ }; 39788C2E5025D81B1F56F4F62015EC56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC31275F9ABD8F55319DCF32B0940A3D /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 4017FFD49CA4520E73F3FE89DEA8A4F5 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20152,7 +20348,7 @@ }; 3C2209A72B905CEDAC16D43E4DA43012 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3058CE5E4E73203820980C3571C47FA9 /* EXPermissions.xcconfig */; + baseConfigurationReference = FF51B230FBFB8050E8A355161CFDD94E /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20179,7 +20375,7 @@ }; 412737804873ADD8C2E2F340ABFF6718 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B2104564763E95CBABB7E689023F689 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 19894FB1CFA58E290D9BE9891F271CE4 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20204,7 +20400,7 @@ }; 455A8CE12E5E915C83AB73A3C62F3F68 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1454EEF0AE1533254C943C167301BF1A /* react-native-notifications.xcconfig */; + baseConfigurationReference = 66E67D54611C3F741EDE2775CC1C74DC /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20255,7 +20451,7 @@ }; 499E8F90EC6439418D63F128B5D6DCD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 84C2DB33F45684C2910CEF1476050604 /* ReactCommon.xcconfig */; + baseConfigurationReference = 8D9AD324C45816C8695A7CB64332E1F3 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20299,7 +20495,7 @@ }; 4C88F3DB03A9D5244D6399F2531E7EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDEB6F9AEA99C71466E6C65645B7CC29 /* RNFirebase.xcconfig */; + baseConfigurationReference = 2E7FE58AA958A69566EF7D174F252E2E /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20324,7 +20520,7 @@ }; 4EF961C835B566D4EFB3AFE039C623B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F79FC35ED9CA3BAAAF51B5D4F1EC1705 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = D72B88AAF546BDEE9C43758D79D2D6D4 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20338,9 +20534,34 @@ }; name = Release; }; + 5021E076026902F8042B602ED2AB1FDD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 474448FEF0F945EE3EE8C4EDBCAC90BC /* RNDateTimePicker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDateTimePicker; + PRODUCT_NAME = RNDateTimePicker; + 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; + }; 521E903B734D3E2B9720D043ACC4F421 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90A862A2A7763F21D80BFA6F4AF75AD5 /* RNAudio.xcconfig */; + baseConfigurationReference = E137D2529ED147EE5C2FCDC86DB77EE7 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20389,7 +20610,7 @@ }; 5869D54D3A851396E2E6C856D06E7E60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9157AC9BAE95C58196307C25D94827B /* RNGestureHandler.xcconfig */; + baseConfigurationReference = B59D6B83B401C1016A27DA8E04B77A90 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20429,7 +20650,7 @@ }; 596CD7959D539F7F649544D11CD4713F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D7A9380AE8FEC9A05B657440AAAB8A6 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A7C79A7C3E9D40D9FFAB49F0F16F188D /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20453,9 +20674,33 @@ }; name = Release; }; + 5A70168852102FB6EFAF03E874BE9A18 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 5C0B9265CAB0D9CD227A92F72C06CC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06E89AE5A60D35CD6E9119CECA641AC3 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = CA70C3AE3EBEFFB8882CD01A76450570 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20481,7 +20726,7 @@ }; 5DC883AB0B0414AD48BB3AB4F3269D66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01218DADF8441BABFC26F82C320D15AB /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 07BD51791FF14F83F4B4155C0721655A /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20497,7 +20742,7 @@ }; 5DDAA8C3F7FCC062776754B1F3B95D1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26C7AE1C3D4AE681695DC51DC21BA022 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = A750113D5C95734016B6F89633D28693 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20563,7 +20808,7 @@ }; 5E7869770EA6F89BE71AB5A82A8747EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39FC70B631FFFCB5D1ED2AADC923F3AC /* React-cxxreact.xcconfig */; + baseConfigurationReference = 45C765F1C990C5B20916DEB3EAF2E8E9 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20588,7 +20833,7 @@ }; 60EC64E5B79C5F949116BD34130957D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B93032BDA0337DF6E7074A0FF7560925 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 3D4E1404C1D332BB3FA51EC98F4F1E84 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20614,7 +20859,7 @@ }; 6513D57E09C36B05CF916F7E8A662077 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 692A0BEAB532D50C39FCC91D745FC49C /* EXFileSystem.xcconfig */; + baseConfigurationReference = 440F9327BBBB2ACFF6B3F2B310F7F738 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20641,7 +20886,7 @@ }; 65177BF401CF3D4E9EAACC190BD37AC3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDEB6F9AEA99C71466E6C65645B7CC29 /* RNFirebase.xcconfig */; + baseConfigurationReference = 2E7FE58AA958A69566EF7D174F252E2E /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20667,7 +20912,7 @@ }; 65EB1A7A5D1465B289935D8C2F1BBD30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 40535AA392D12A73F01C4509C5AE5135 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = C5BC0C904AFEEEB35C99FCC32B2A1B5A /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20683,7 +20928,7 @@ }; 664E5CB9279DF965C75A308E4C19DE1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3E71A093C520CA7ED9048BCED657CFC /* react-native-webview.xcconfig */; + baseConfigurationReference = 12F9685BAA8BDA1D4DB413B7DEC5918B /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20708,7 +20953,7 @@ }; 66B5F5845EEB10E57A3A46D451238559 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E2E495626104817BB58C7343494EE1D /* React-RCTText.xcconfig */; + baseConfigurationReference = 980E94CA1F2EEB7523859A67F4719063 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20733,7 +20978,7 @@ }; 677C55C5482A68F862361238F7F8E2D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A09D592BE9E641455E699E88691C3504 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = FE89443442EC17AB3E5B0812E2DB873C /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20758,7 +21003,7 @@ }; 68862420C9D14D6D543E26A3029DA27D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E2E495626104817BB58C7343494EE1D /* React-RCTText.xcconfig */; + baseConfigurationReference = 980E94CA1F2EEB7523859A67F4719063 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20810,7 +21055,7 @@ }; 69C2BA4F9009FED344405012652F51CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A09D592BE9E641455E699E88691C3504 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = FE89443442EC17AB3E5B0812E2DB873C /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20836,7 +21081,7 @@ }; 6A441642FC3FFE19200089E9B23E8FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D3D82F98484D93CEE6F238F27C8A15D /* RNReanimated.xcconfig */; + baseConfigurationReference = 906AE7707BBFDCDC9C23789A1BCC7234 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20862,7 +21107,7 @@ }; 6BCF1CCFC9C90ED9DE69A10FDE40B529 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B18B92EB4C6BC1EA79F7368F0F2C1A4 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 6AA8B96581DBD6338E1DB28BFB424ABE /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20877,7 +21122,7 @@ }; 6DB18DF4D7CB92ACF500AA4CB91574EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FA7BB063A2FEEF9F7383458D3622559 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 7E23BA7020ED443E0AD49AF24EE2A911 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20902,7 +21147,7 @@ }; 6DD833DF82AD945EAC590428925265F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5FBCFB75660253D3988D97D13A59212 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = D95027C21CDB2163088FC9FD923A4F17 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20952,7 +21197,7 @@ }; 71909F570922582EB29779D954A7655F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23A647E30AA17236BFDEE61D0BA16440 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 03F11CF333F81CB8CBCB9D7C6A425155 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20978,7 +21223,7 @@ }; 72C0F38FC6842701424DB20D290EE53C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90A862A2A7763F21D80BFA6F4AF75AD5 /* RNAudio.xcconfig */; + baseConfigurationReference = E137D2529ED147EE5C2FCDC86DB77EE7 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21028,7 +21273,7 @@ }; 737D073839062785B358E9BE4DD325CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC31275F9ABD8F55319DCF32B0940A3D /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 4017FFD49CA4520E73F3FE89DEA8A4F5 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21078,7 +21323,7 @@ }; 7452D595EDF76721ACCD09888C4300EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23A647E30AA17236BFDEE61D0BA16440 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 03F11CF333F81CB8CBCB9D7C6A425155 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21103,7 +21348,7 @@ }; 745584283E329E8703A11278C5FD98AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C97A8C4E24533E6F1A769F1393A7BE80 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 9E908FB25C09AAC8998A28B761484348 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21128,7 +21373,7 @@ }; 76100320E21D42374BB0F0BD2DD157C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F89338F87AA150D3B5F4A46980653AA7 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 35740ABD1AD7634DE1517E7555C91E16 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21143,7 +21388,7 @@ }; 76BE7F8726B152972329F09707F0ACD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB3C1378A1DAFA82E29C776DD2A7383F /* UMCore.xcconfig */; + baseConfigurationReference = 2810FE8C402902684E42F86B061B20B2 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21169,7 +21414,7 @@ }; 779B1B52B5C8BD4D67CE2B7E314D68A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EABBA3BE20F3C4D66C0EE95545419247 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 4527CA9D0BE34892B889E0EB539D1E04 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21194,7 +21439,7 @@ }; 79A0890C0FF0EE7CE7DDB7CF814436E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5FBCFB75660253D3988D97D13A59212 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = D95027C21CDB2163088FC9FD923A4F17 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21220,7 +21465,7 @@ }; 79B3E0F885BF8B866097919EC7654A4B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F79FC35ED9CA3BAAAF51B5D4F1EC1705 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = D72B88AAF546BDEE9C43758D79D2D6D4 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21233,30 +21478,6 @@ }; name = Debug; }; - 7AAE39893BFECD9C5E55AA19A4E3BC55 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 7B7E9D7FAB7E45B9F4ADF8DC4822703B /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 005BFE8D450B842344F1001F99C8B120 /* Fabric.xcconfig */; @@ -21273,7 +21494,7 @@ }; 7BC8ECF42B51502BDEC0C678012395A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 732AC42D7A5B7B4AF72D1F9811321660 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 7719415B0BAFE759FB2C8D5C5C9369FA /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21299,7 +21520,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0175CE46F11CDB1ED332E8FB610C328F /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 40BF05914E9030305D89F2DDB61B4961 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21313,45 +21534,48 @@ }; name = Release; }; - 81B8BED02F5297219C229B54F69592DF /* Debug */ = { + 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */; + baseConfigurationReference = 5C8E21CF56ECF5D26E3CEFC6CE23D0B7 /* RCTTypeSafety.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; + GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTTypeSafety; + PRODUCT_NAME = RCTTypeSafety; + 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; }; - 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { + 83397D6AC147BB15D1360B863354BE6E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F575C8650BBDED7E79AA166FA59769C2 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 72DC67D55BF955781FEB320C292DE8A5 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; + PRODUCT_MODULE_NAME = EXAppLoaderProvider; + PRODUCT_NAME = EXAppLoaderProvider; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -21361,35 +21585,32 @@ }; name = Debug; }; - 83397D6AC147BB15D1360B863354BE6E /* Debug */ = { + 838876AA21C7F1C33A4F3D6C59B023F5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D372A6256A180734764DF20625898BFE /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXAppLoaderProvider; - PRODUCT_NAME = EXAppLoaderProvider; - 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"; }; name = Debug; }; 83B8667023CCABE7930FECF4308F42C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E51EAC008EF7B39A2EDBA5F14D745AF /* RNBootSplash.xcconfig */; + baseConfigurationReference = B37C4AC903FF4D9F541F94B2BFF6486F /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21415,7 +21636,7 @@ }; 83D51B373BC655474060B7059374A055 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA683C170779FFDEE242620DABFEDC8E /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 875CED08558AC67D42F00C1878FB41D3 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21431,7 +21652,7 @@ }; 85F758BB2896EF75F72B6F2A77364175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C80AF392BE3B7212CEF7609AF13ECC9B /* EXHaptics.xcconfig */; + baseConfigurationReference = 7032494EE9DCCE7D8E2EC9F4109FFC32 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21483,7 +21704,7 @@ }; 88FCAFE7B06BCEC0AC4CA29D98C90803 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B93032BDA0337DF6E7074A0FF7560925 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 3D4E1404C1D332BB3FA51EC98F4F1E84 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21533,7 +21754,7 @@ }; 911D20316B507B8E73EBD2ADE090E8EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3ECE4F39FA7A516671A9C4C8D25B768 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 8E2E934DDF76140368BC00776843D7CE /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21558,7 +21779,7 @@ }; 917A20C7C8D878581AC4A8285097017A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7117E78C426E35F3503896BB53C1081F /* Yoga.xcconfig */; + baseConfigurationReference = DC9B55A67EB94A81F103AD786D371F01 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21584,7 +21805,7 @@ }; 921CB93956632503338319DD71FF15A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F707EE176FC3B12911567C699484964B /* RNFastImage.xcconfig */; + baseConfigurationReference = 47031CDDF031ACBD8398A58FFE1F5C17 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21609,7 +21830,7 @@ }; 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA683C170779FFDEE242620DABFEDC8E /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 875CED08558AC67D42F00C1878FB41D3 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21624,7 +21845,7 @@ }; 9379E6366D9E11C636D1E54575E216EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F575C8650BBDED7E79AA166FA59769C2 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 5C8E21CF56ECF5D26E3CEFC6CE23D0B7 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21676,7 +21897,7 @@ }; 94E3653223086209F995373532C8F7EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47F9153723C28D449693AC21F0268045 /* React-jsi.xcconfig */; + baseConfigurationReference = 4AD67A70327FDCCC913898360E063F69 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21724,33 +21945,9 @@ }; name = Debug; }; - 96F2FB8FFF7CDB2FC34D933600C83B4C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 9798DF63F7267FE1AD56F263EADD5B6A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABE765A6A7C399E3A90685CE47136030 /* RNScreens.xcconfig */; + baseConfigurationReference = 2F68C060D7E824747CDC2B29175E6A80 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21775,7 +21972,7 @@ }; 98D1BE1C631327534141623ED69DFAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 692A0BEAB532D50C39FCC91D745FC49C /* EXFileSystem.xcconfig */; + baseConfigurationReference = 440F9327BBBB2ACFF6B3F2B310F7F738 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21801,7 +21998,7 @@ }; 9A3174FDB1F4445ADEA8F35751AD8207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FAFDA568BD6E4671BD4C57316F349F0 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 464ABCA0B3B2C3388680CD5C5E480E3A /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21826,7 +22023,7 @@ }; 9B80322166315DE06CF92ECB3BE31E88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AFFB27207A0900BF2C038D349B11237 /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 5A5B58AC596FF1D31119BC9BB74E7A65 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21852,7 +22049,7 @@ }; 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 40535AA392D12A73F01C4509C5AE5135 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = C5BC0C904AFEEEB35C99FCC32B2A1B5A /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21867,7 +22064,7 @@ }; 9D25004EDED3EA338107FA6F993E40BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A9E54B8C06A1BBE8C3A3BF8BC2F5EFD /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 3408483C86C5FC83F26C6296D16EBAEB /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21908,7 +22105,7 @@ }; 9D7C7C3A1425C18171275C2A383FA8CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C605A06228EE75A8AC667EB6CE5A7240 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 06F614576935AA84BD0BBDDED3E4D8CF /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21959,7 +22156,7 @@ }; 9EACAE2DF1FB29D6CD5849750D0E945D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F707EE176FC3B12911567C699484964B /* RNFastImage.xcconfig */; + baseConfigurationReference = 47031CDDF031ACBD8398A58FFE1F5C17 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21985,7 +22182,7 @@ }; 9F252DECF660AD99C57FE172DC3377CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EC615EF4BA05E27B26ADE753138A38B /* KeyCommands.xcconfig */; + baseConfigurationReference = 442C6BF9F30352725CF6D5AA0170FC26 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22010,7 +22207,7 @@ }; 9FF84870B7F6FDF9150FDD60E6D57C4F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B2104564763E95CBABB7E689023F689 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 19894FB1CFA58E290D9BE9891F271CE4 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22036,7 +22233,7 @@ }; A071A0C7DF65F1D9E326DD3CE2DE8C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 84C2DB33F45684C2910CEF1476050604 /* ReactCommon.xcconfig */; + baseConfigurationReference = 8D9AD324C45816C8695A7CB64332E1F3 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22061,7 +22258,7 @@ }; A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01218DADF8441BABFC26F82C320D15AB /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 07BD51791FF14F83F4B4155C0721655A /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22076,7 +22273,7 @@ }; A2194A79914B5CC215FA2FF1CF8CFCF8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3ECE4F39FA7A516671A9C4C8D25B768 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 8E2E934DDF76140368BC00776843D7CE /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22102,7 +22299,7 @@ }; AA08A4CFB27E8D0764FB1F3E7659D277 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70C0B89F860A1A27231D6E32750D7567 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 8EE4BE67037C8C3B3579ECDCD9B7C2A9 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22128,7 +22325,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0175CE46F11CDB1ED332E8FB610C328F /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 40BF05914E9030305D89F2DDB61B4961 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22143,7 +22340,7 @@ }; AC7D788F43301FFAEDED241C7A7099A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 732AC42D7A5B7B4AF72D1F9811321660 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 7719415B0BAFE759FB2C8D5C5C9369FA /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22168,7 +22365,7 @@ }; AEE4C1B4604FAAC1DEA8D5FF30CD56C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B35A24C2CDA563C390E77B4DAED2636 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 86A8EE1D2F8B8AEB69DAEF21A92DBBD4 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22193,7 +22390,7 @@ }; B006F308D2A947732D25BF32E328BD7C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60F004405BDCCF4A63E5BFA40B429733 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 8DDF27115B4335EEEE7D7F690F0929AD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22283,7 +22480,7 @@ }; B1B7713286195D091EC5BC6F27BD5581 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDB5468A37ED6CD36055E9C4F71ED5BE /* ReactNativeART.xcconfig */; + baseConfigurationReference = 3FC26F772864A9B9CAB72B4AA4920881 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22308,7 +22505,7 @@ }; B4E87D0668029199CD617DB2DDE97D86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98186FFD7D98FD7CF4FC31BD0D29EA5C /* react-native-slider.xcconfig */; + baseConfigurationReference = B91734D380A03F1D9351ACC9D1C82700 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22334,7 +22531,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F53966696F8F67C32E2F9F18A15E391 /* RCTRequired.xcconfig */; + baseConfigurationReference = 9FD3B24148510FB345B7C0D354BD4114 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22374,7 +22571,7 @@ }; B93AD636A7701AACBF5C0DEB8249D15D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73C73917746D1C706402084F66480D3C /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 91233D5077C4615EE4975D911982145A /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22400,7 +22597,7 @@ }; BD044681D243E0E09FBA04ACF21FA123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABE765A6A7C399E3A90685CE47136030 /* RNScreens.xcconfig */; + baseConfigurationReference = 2F68C060D7E824747CDC2B29175E6A80 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22426,7 +22623,7 @@ }; BE5AE6E1F2B58CFF3217A86780F6336C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F89338F87AA150D3B5F4A46980653AA7 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 35740ABD1AD7634DE1517E7555C91E16 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22442,7 +22639,7 @@ }; BF89345BE7A481AA4055FF310B7F3956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED77A1547567C8ABCEBCA42CA62907C4 /* RNLocalize.xcconfig */; + baseConfigurationReference = 361B885668026CB8D0F97C254A166261 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22468,7 +22665,7 @@ }; BFB2316A669B0D479BA6634A0904B083 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B608E8E88ED36982C76F60D52EC50FCD /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 17B3808D010EAE5E4DA1D386D6CA94D6 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22494,7 +22691,7 @@ }; C128C18739AA9067D388429C13824733 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D2F8C828587E15FDC75ABF6E30BEFBF /* FBLazyVector.xcconfig */; + baseConfigurationReference = E2B42E3ABAEFC26524EE67261B0E6AD6 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22509,7 +22706,7 @@ }; C1413F798E37FBF0F0B0CBF49398107C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A95659DAB37834A199DC8808A20E14C /* EXConstants.xcconfig */; + baseConfigurationReference = 982A8DF71C07BCCAE7B7645DFE00F523 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22533,9 +22730,33 @@ }; name = Debug; }; + C4A58C9319E3DA87F1A91B8BE250DBDB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; C675F1101EC56FF48D0EAAF987511073 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D7A9380AE8FEC9A05B657440AAAB8A6 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A7C79A7C3E9D40D9FFAB49F0F16F188D /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22560,7 +22781,7 @@ }; C68F8BE3073459D980E297CA1951C3DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B608E8E88ED36982C76F60D52EC50FCD /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 17B3808D010EAE5E4DA1D386D6CA94D6 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22585,7 +22806,7 @@ }; C98D8B49BBAC01E66E5B47ACF2088B9B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B60C73AC99DD05CEA3593C13D5CA201 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = D819E5A0AA43744CCC765B8DF944EA08 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22611,7 +22832,7 @@ }; C9AD4422D1F772604AC286D0A6DF4189 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CFCBF330D602E8E5A458555B4D444E73 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = D3F4AF856E6308B210B2E961297B1E8F /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22637,7 +22858,7 @@ }; C9E113D47DEE6500FA656727AD637A71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E33360EBA3D9E551A9A45C8345B497EB /* RNRootView.xcconfig */; + baseConfigurationReference = 2094B17B932F0291907A328EF66C43DE /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22662,7 +22883,7 @@ }; CBAC48129BCC71255BE1413BD06DFB43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C97A8C4E24533E6F1A769F1393A7BE80 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 9E908FB25C09AAC8998A28B761484348 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22688,7 +22909,7 @@ }; CD26F4BEB83F26811BF1081A76FAA47F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CFCBF330D602E8E5A458555B4D444E73 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = D3F4AF856E6308B210B2E961297B1E8F /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22713,7 +22934,7 @@ }; CE8DC3E07CF4B74826C24052D8BFDF83 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B60C73AC99DD05CEA3593C13D5CA201 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = D819E5A0AA43744CCC765B8DF944EA08 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22738,7 +22959,7 @@ }; D04F94085B40D8D4779EBFD0F4383CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B5FD04302A048CD337ADEAC861C20CF /* React-Core.xcconfig */; + baseConfigurationReference = C75E1C5FEF410A767A34D685A2AB9BDE /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22764,7 +22985,7 @@ }; D17FDDE9E8075FCA5001DB700CFDC7EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FA7BB063A2FEEF9F7383458D3622559 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 7E23BA7020ED443E0AD49AF24EE2A911 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22790,7 +23011,7 @@ }; D2A71B68B86874314BDCFFB39ACE9B3B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D632F7FEE702D28967F0D0C60DF3140 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 8B5ADC31FD186B9A7FF39AB89C8645E1 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22806,7 +23027,7 @@ }; D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C21AFD8A32D52BF98E6EDE9DFBFF698 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C49A6D45889861923633D0598A51764C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22876,7 +23097,7 @@ }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60F004405BDCCF4A63E5BFA40B429733 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 8DDF27115B4335EEEE7D7F690F0929AD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22944,7 +23165,7 @@ }; DB3E7A155C245721FC07D01632F0CFAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C80AF392BE3B7212CEF7609AF13ECC9B /* EXHaptics.xcconfig */; + baseConfigurationReference = 7032494EE9DCCE7D8E2EC9F4109FFC32 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22971,7 +23192,7 @@ }; DB9E714E74F88B6DD317822487883DBA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C605A06228EE75A8AC667EB6CE5A7240 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 06F614576935AA84BD0BBDDED3E4D8CF /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22997,7 +23218,7 @@ }; DE4E0DAFF0236084703632955B393B89 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F53966696F8F67C32E2F9F18A15E391 /* RCTRequired.xcconfig */; + baseConfigurationReference = 9FD3B24148510FB345B7C0D354BD4114 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23012,7 +23233,7 @@ }; DE8CEC7E031F3505797998B9F3C37A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47F9153723C28D449693AC21F0268045 /* React-jsi.xcconfig */; + baseConfigurationReference = 4AD67A70327FDCCC913898360E063F69 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23038,7 +23259,7 @@ }; DF099D9819C5D304192EBE7A7475E55A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AFFB27207A0900BF2C038D349B11237 /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 5A5B58AC596FF1D31119BC9BB74E7A65 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23063,7 +23284,7 @@ }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B18B92EB4C6BC1EA79F7368F0F2C1A4 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 6AA8B96581DBD6338E1DB28BFB424ABE /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23104,7 +23325,7 @@ }; E651B8F553C5C42CD9C5F0480D01A3A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98186FFD7D98FD7CF4FC31BD0D29EA5C /* react-native-slider.xcconfig */; + baseConfigurationReference = B91734D380A03F1D9351ACC9D1C82700 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23129,7 +23350,7 @@ }; E7C01DC159749822F32A915919D90ECF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3D9D482398AC78F2A144C249F57F6DC /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 4DCDF3A402BAF65DD8D8E38015B8FAAF /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23155,7 +23376,7 @@ }; EAD69AF5DEF01031F1B45B5E1FB65899 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06E89AE5A60D35CD6E9119CECA641AC3 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = CA70C3AE3EBEFFB8882CD01A76450570 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23180,7 +23401,7 @@ }; EB9D4FF27A66AB5460886EA1D7F6EF2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EF8719BF2F9E361B490C32CAB4032C6 /* react-native-video.xcconfig */; + baseConfigurationReference = C572D6C900A5E509B5FEA33C4BFF7C16 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23205,7 +23426,7 @@ }; EF0788D08C339FE1FB8A20A21A46A640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73C73917746D1C706402084F66480D3C /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 91233D5077C4615EE4975D911982145A /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23228,32 +23449,9 @@ }; name = Debug; }; - EF1D12410859C5CEF9E6777BFA893CDB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; EFF46113088B01826DDB9EE5A92D5CDF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FAFDA568BD6E4671BD4C57316F349F0 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 464ABCA0B3B2C3388680CD5C5E480E3A /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23304,7 +23502,7 @@ }; F4BB0B9A68137AA0D4D3ED480DBFFA5A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9157AC9BAE95C58196307C25D94827B /* RNGestureHandler.xcconfig */; + baseConfigurationReference = B59D6B83B401C1016A27DA8E04B77A90 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23329,7 +23527,7 @@ }; F5413AE83955B591D3DA4DC3663AFCB5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDB5468A37ED6CD36055E9C4F71ED5BE /* ReactNativeART.xcconfig */; + baseConfigurationReference = 3FC26F772864A9B9CAB72B4AA4920881 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23380,7 +23578,7 @@ }; F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C21AFD8A32D52BF98E6EDE9DFBFF698 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C49A6D45889861923633D0598A51764C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23395,7 +23593,7 @@ }; FA402AD52FB31D9F7215703DB1B44B09 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D372A6256A180734764DF20625898BFE /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 72DC67D55BF955781FEB320C292DE8A5 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23437,7 +23635,7 @@ }; FBFFAAAD143D5203AF55B1DFDE1C9F19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EF8719BF2F9E361B490C32CAB4032C6 /* react-native-video.xcconfig */; + baseConfigurationReference = C572D6C900A5E509B5FEA33C4BFF7C16 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23463,7 +23661,7 @@ }; FC71C31E2668416B9072953D27DC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C098929F9618F49264B1CD79900CA2E0 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = A761313D967005DBA593B9F9E2FB63FD /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23515,7 +23713,7 @@ }; FF9F97A496BA9B674F13E18785C6F22B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7117E78C426E35F3503896BB53C1081F /* Yoga.xcconfig */; + baseConfigurationReference = DC9B55A67EB94A81F103AD786D371F01 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23595,6 +23793,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 0DCB99CA1C0B79F310F8AEEB7B494725 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 34CC05D51BE3AA681913CC55971BA356 /* Debug */, + 5A70168852102FB6EFAF03E874BE9A18 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 0E0B32A05BDE4BA67DD4C68899104B05 /* Build configuration list for PBXNativeTarget "RNRootView" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23730,6 +23937,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 3A16A273C5DA5820A2CAA82DE38345E6 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 838876AA21C7F1C33A4F3D6C59B023F5 /* Debug */, + C4A58C9319E3DA87F1A91B8BE250DBDB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 3D5939C0C27781D52DF259FBEE230A70 /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24072,6 +24288,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A3A2A6898A170D522E0B11C485B6E5C8 /* Build configuration list for PBXNativeTarget "RNDateTimePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5021E076026902F8042B602ED2AB1FDD /* Debug */, + 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A508DCBBFBBE5ACA7CF4A44DCDCE09EC /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24324,15 +24549,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E47D60E8E0B0707B4ABC8E48926A265B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EF1D12410859C5CEF9E6777BFA893CDB /* Debug */, - 96F2FB8FFF7CDB2FC34D933600C83B4C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; E5BC68AB16B6DC94B663DF3BAFB64236 /* Build configuration list for PBXNativeTarget "ReactNativeART" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24342,15 +24558,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EAE71BB1E5653DB871E4334CDBD79EA4 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 81B8BED02F5297219C229B54F69592DF /* Debug */, - 7AAE39893BFECD9C5E55AA19A4E3BC55 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; ED4A26BFADE81FBE92EA4F7647C8409C /* Build configuration list for PBXNativeTarget "React-jsi" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index a1cfb0ed8a..ab99728566 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 @@ -1776,6 +1776,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNDateTimePicker + +MIT License + +Copyright (c) 2019 React Native Community + +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. + + ## RNDeviceInfo The MIT License (MIT) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index bc76ae2f85..13a409926e 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 @@ -1901,6 +1901,37 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2019 React Native Community + +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 + RNDateTimePicker + Type + PSGroupSpecifier + FooterText The MIT License (MIT) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index c430ff986f..e767a41662 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index c430ff986f..e767a41662 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index a1cfb0ed8a..ab99728566 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 @@ -1776,6 +1776,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNDateTimePicker + +MIT License + +Copyright (c) 2019 React Native Community + +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. + + ## RNDeviceInfo The MIT License (MIT) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index bc76ae2f85..13a409926e 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 @@ -1901,6 +1901,37 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2019 React Native Community + +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 + RNDateTimePicker + Type + PSGroupSpecifier + FooterText The MIT License (MIT) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index c30279f38d..c7269e95a6 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index c30279f38d..c7269e95a6 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-dummy.m b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-dummy.m new file mode 100644 index 0000000000..b04b429f16 --- /dev/null +++ b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RNDateTimePicker : NSObject +@end +@implementation PodsDummy_RNDateTimePicker +@end diff --git a/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch new file mode 100644 index 0000000000..beb2a24418 --- /dev/null +++ b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker.xcconfig b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker.xcconfig new file mode 100644 index 0000000000..bfb22f96fc --- /dev/null +++ b/ios/Pods/Target Support Files/RNDateTimePicker/RNDateTimePicker.xcconfig @@ -0,0 +1,11 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNDateTimePicker" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@react-native-community/datetimepicker +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 c57c3dc17f..3f210bb46b 100644 --- a/package.json +++ b/package.json @@ -26,8 +26,10 @@ "@nozbe/watermelondb": "0.15.0", "@react-native-community/art": "^1.0.4", "@react-native-community/cameraroll": "^1.3.0", + "@react-native-community/datetimepicker": "^2.1.0", "@react-native-community/slider": "2.0.5", - "@rocket.chat/sdk": "1.0.0-alpha.31", + "@rocket.chat/sdk": "1.0.0-alpha.41", + "@rocket.chat/ui-kit": "^0.2.0-alpha.25", "bugsnag-react-native": "2.23.2", "commonmark": "git+https://github.com/RocketChat/commonmark.js.git", "commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git", @@ -70,11 +72,13 @@ "react-native-localize": "1.3.1", "react-native-mime-types": "^2.2.1", "react-native-modal": "11.5.3", + "react-native-modalize": "^1.3.6", "react-native-navigation-bar-color": "^1.0.0", "react-native-notifications": "^2.0.6", "react-native-orientation-locker": "1.1.6", "react-native-picker-select": "6.3.3", "react-native-platform-touchable": "^1.1.1", + "react-native-popover-view": "^2.0.5", "react-native-progress": "^4.0.3", "react-native-reanimated": "1.4.0", "react-native-responsive-ui": "^1.1.1", @@ -99,7 +103,7 @@ "rn-extensions-share": "^2.3.10", "rn-fetch-blob": "0.11.2", "rn-root-view": "^1.0.3", - "rn-user-defaults": "^1.7.0", + "rn-user-defaults": "1.7.0", "semver": "6.3.0", "snyk": "1.210.0", "strip-ansi": "5.2.0", diff --git a/patches/@react-native-community+datetimepicker+2.1.0.patch b/patches/@react-native-community+datetimepicker+2.1.0.patch new file mode 100644 index 0000000000..c114e612b8 --- /dev/null +++ b/patches/@react-native-community+datetimepicker+2.1.0.patch @@ -0,0 +1,65 @@ +diff --git a/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.m b/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.m +index ad3a9b3..1c347bd 100644 +--- a/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.m ++++ b/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePicker.m +@@ -25,6 +25,8 @@ - (instancetype)initWithFrame:(CGRect)frame + [self addTarget:self action:@selector(didChange) + forControlEvents:UIControlEventValueChanged]; + _reactMinuteInterval = 1; ++ [self performSelector:@selector(setHighlightsToday:) ++ withObject:[NSNumber numberWithBool:NO]]; + } + return self; + } +@@ -38,6 +40,20 @@ - (void)didChange + } + } + ++-(UIColor *)colorFromHexString:(NSString *)hexString ++{ ++ unsigned rgbValue = 0; ++ NSScanner *scanner = [NSScanner scannerWithString:hexString]; ++ [scanner setScanLocation:1]; // bypass '#' character ++ [scanner scanHexInt:&rgbValue]; ++ return [UIColor colorWithRed:((rgbValue & 0xFF0000) >> 16)/255.0 green:((rgbValue & 0xFF00) >> 8)/255.0 blue:(rgbValue & 0xFF)/255.0 alpha:1.0]; ++} ++ ++- (void)setColor:(NSString *)color ++{ ++ [self setValue:[self colorFromHexString:color] forKey:@"textColor"]; ++} ++ + - (void)setDatePickerMode:(UIDatePickerMode)datePickerMode + { + [super setDatePickerMode:datePickerMode]; +diff --git a/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.m b/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.m +index 661e1f1..771c0c4 100644 +--- a/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.m ++++ b/node_modules/@react-native-community/datetimepicker/ios/RNDateTimePickerManager.m +@@ -39,5 +39,6 @@ - (UIView *)view + RCT_EXPORT_VIEW_PROPERTY(onChange, RCTBubblingEventBlock) + RCT_REMAP_VIEW_PROPERTY(mode, datePickerMode, UIDatePickerMode) + RCT_REMAP_VIEW_PROPERTY(timeZoneOffsetInMinutes, timeZone, NSTimeZone) ++RCT_REMAP_VIEW_PROPERTY(color, color, NSString) + + @end +diff --git a/node_modules/@react-native-community/datetimepicker/src/datetimepicker.ios.js b/node_modules/@react-native-community/datetimepicker/src/datetimepicker.ios.js +index 3b25e16..4bf210a 100644 +--- a/node_modules/@react-native-community/datetimepicker/src/datetimepicker.ios.js ++++ b/node_modules/@react-native-community/datetimepicker/src/datetimepicker.ios.js +@@ -69,6 +69,7 @@ export default class Picker extends React.Component { + mode, + minuteInterval, + timeZoneOffsetInMinutes, ++ textColor + } = this.props; + + invariant(value, 'A date or time should be specified as `value`.'); +@@ -92,6 +93,7 @@ export default class Picker extends React.Component { + onChange={this._onChange} + onStartShouldSetResponder={() => true} + onResponderTerminationRequest={() => false} ++ color={textColor} + /> + + ); diff --git a/patches/@rocket.chat+sdk+1.0.0-alpha.31.patch b/patches/@rocket.chat+sdk+1.0.0-alpha.41.patch similarity index 92% rename from patches/@rocket.chat+sdk+1.0.0-alpha.31.patch rename to patches/@rocket.chat+sdk+1.0.0-alpha.41.patch index 8e73bf1ef3..9dfff7688e 100644 --- a/patches/@rocket.chat+sdk+1.0.0-alpha.31.patch +++ b/patches/@rocket.chat+sdk+1.0.0-alpha.41.patch @@ -20,7 +20,7 @@ index 5b7dc21..49f1af5 100644 set: function (obj) { this._headers = obj; diff --git a/node_modules/@rocket.chat/sdk/lib/drivers/ddp.js b/node_modules/@rocket.chat/sdk/lib/drivers/ddp.js -index e3510c7..e951959 100644 +index e3510c7..e3216cc 100644 --- a/node_modules/@rocket.chat/sdk/lib/drivers/ddp.js +++ b/node_modules/@rocket.chat/sdk/lib/drivers/ddp.js @@ -110,6 +110,7 @@ tiny_events_1.EventEmitter.prototype.removeAllListeners = function (event) { @@ -50,11 +50,14 @@ index 99eb828..8c99307 100644 export declare let department: string; +export declare let customHeaders: object; diff --git a/node_modules/@rocket.chat/sdk/lib/settings.js b/node_modules/@rocket.chat/sdk/lib/settings.js -index 822c286..15f2688 100644 +index 822c286..ce8f805 100644 --- a/node_modules/@rocket.chat/sdk/lib/settings.js +++ b/node_modules/@rocket.chat/sdk/lib/settings.js -@@ -30,3 +30,4 @@ exports.token = process.env.LIVECHAT_TOKEN || ''; +@@ -29,4 +29,6 @@ exports.dmCacheMaxAge = 1000 * parseInt(process.env.DM_ROOM_CACHE_MAX_AGE || '10 + exports.token = process.env.LIVECHAT_TOKEN || ''; exports.rid = process.env.LIVECHAT_ROOM || ''; exports.department = process.env.LIVECHAT_DEPARTMENT || ''; - //# sourceMappingURL=settings.js.map ++// Headers settings +exports.customHeaders = {}; + //# sourceMappingURL=settings.js.map +\ No newline at end of file diff --git a/patches/react-native-picker-select+6.3.3.patch b/patches/react-native-picker-select+6.3.3.patch new file mode 100644 index 0000000000..23181cdb44 --- /dev/null +++ b/patches/react-native-picker-select+6.3.3.patch @@ -0,0 +1,30 @@ +diff --git a/node_modules/react-native-picker-select/src/index.js b/node_modules/react-native-picker-select/src/index.js +index 4f50605..6df9757 100644 +--- a/node_modules/react-native-picker-select/src/index.js ++++ b/node_modules/react-native-picker-select/src/index.js +@@ -135,7 +135,7 @@ export default class RNPickerSelect extends PureComponent { + } + + return { +- ...(itemsChanged ? { items } : {}), ++ ...(itemsChanged ? { items: !isEqual(selectedItem, {}) ? items.filter(item => item.value !== null) : items } : {}), + ...(selectedItemChanged ? { selectedItem } : {}), + }; + } +@@ -146,6 +146,7 @@ export default class RNPickerSelect extends PureComponent { + constructor(props) { + super(props); + ++ + const items = RNPickerSelect.handlePlaceholder({ + placeholder: this.props.placeholder, + }).concat(this.props.items); +@@ -157,7 +158,7 @@ export default class RNPickerSelect extends PureComponent { + }); + + this.state = { +- items, ++ items: !isEqual(selectedItem, {}) ? items.filter(item => item.value !== null) : items, + selectedItem, + showPicker: false, + animationType: undefined, diff --git a/storybook/stories/StoriesSeparator.js b/storybook/stories/StoriesSeparator.js index 207db5107a..8b1b9b3530 100644 --- a/storybook/stories/StoriesSeparator.js +++ b/storybook/stories/StoriesSeparator.js @@ -19,7 +19,7 @@ const Separator = ({ title, style, theme }) => ( styles.separator, { color: themes[theme].titleText, - backgroundColor: themes[theme].auxiliaryBackground + backgroundColor: themes[theme].backgroundColor }, style ]} diff --git a/storybook/stories/UiKitMessage.js b/storybook/stories/UiKitMessage.js new file mode 100644 index 0000000000..cdf058f1c8 --- /dev/null +++ b/storybook/stories/UiKitMessage.js @@ -0,0 +1,431 @@ +import React from 'react'; +import { ScrollView, StyleSheet, SafeAreaView } from 'react-native'; + +import { UiKitMessage } from '../../app/containers/UIKit'; +import StoriesSeparator from './StoriesSeparator'; + +// eslint-disable-next-line react/prop-types +const Separator = ({ title }) => ; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff' + }, + padding: { + paddingHorizontal: 16 + } +}); + +export default () => ( + + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section' + } + }]) + } + + + { + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + Overflow' + }, + accessory: { + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Option 1', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Option 2', + emoji: true + }, + value: 'value-1' + }, + { + text: { + type: 'plain_text', + text: 'Option 3', + emoji: true + }, + value: 'value-2' + }, + { + text: { + type: 'plain_text', + text: 'Option 4', + emoji: true + }, + value: 'value-3' + } + ] + } + } + ]) + } + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + Image' + }, + accessory: { + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'plants' + } + }]) + } + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + button' + }, + accessory: { + type: 'button', + text: { + type: 'plain_text', + text: 'button' + } + } + }]) + } + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + select' + }, + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'button' + } + }, { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + }] + } + }]) + } + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + DatePicker' + }, + accessory: { + type: 'datepicker', + initial_date: '1990-04-28', + placeholder: { + type: 'plain_text', + text: 'Select a date', + emoji: true + } + } + }]) + } + + + { + UiKitMessage([{ + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + select' + }, + accessory: { + type: 'multi_static_select', + options: [{ + text: { + type: 'plain_text', + text: 'button' + }, + value: 1 + }, { + text: { + type: 'plain_text', + text: 'opt 1' + }, + value: 2 + }, { + text: { + type: 'plain_text', + text: 'opt 2' + }, + value: 3 + }, { + text: { + type: 'plain_text', + text: 'opt 3' + }, + value: 4 + }] + } + }]) + } + + + { + UiKitMessage([{ + type: 'image', + title: { + type: 'plain_text', + text: 'Example Image', + emoji: true + }, + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'Example Image' + }]) + } + + + { + UiKitMessage([{ + type: 'context', + elements: [{ + type: 'image', + title: { + type: 'plain_text', + text: 'Example Image', + emoji: true + }, + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'Example Image' + }, + { + type: 'mrkdwn', + text: 'context' + } + ] + }]) + } + + + { + UiKitMessage([{ + type: 'actions', + elements: [ + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Approve' + }, + style: 'primary', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + } + ] + }]) + } + + + { + UiKitMessage([ + { + type: 'section', + fields: [ + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + } + ] + }]) + } + + + { + UiKitMessage([{ + type: 'actions', + elements: [ + { + type: 'conversations_select', + placeholder: { + type: 'plain_text', + text: 'Select a conversation', + emoji: true + } + }, + { + type: 'channels_select', + placeholder: { + type: 'plain_text', + text: 'Select a channel', + emoji: true + } + }, + { + type: 'users_select', + placeholder: { + type: 'plain_text', + text: 'Select a user', + emoji: true + } + }, + { + type: 'static_select', + placeholder: { + type: 'plain_text', + text: 'Select an item', + emoji: true + }, + options: [ + { + text: { + type: 'plain_text', + text: 'Excellent item 1', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Fantastic item 2', + emoji: true + }, + value: 'value-1' + }, + { + text: { + type: 'plain_text', + text: 'Nifty item 3', + emoji: true + }, + value: 'value-2' + }, + { + text: { + type: 'plain_text', + text: 'Pretty good item 4', + emoji: true + }, + value: 'value-3' + } + ] + } + ] + }]) + } + + +); diff --git a/storybook/stories/UiKitModal.js b/storybook/stories/UiKitModal.js new file mode 100644 index 0000000000..ddbfab6a63 --- /dev/null +++ b/storybook/stories/UiKitModal.js @@ -0,0 +1,564 @@ +import React from 'react'; +import { ScrollView, StyleSheet, SafeAreaView } from 'react-native'; + +import { UiKitModal, UiKitComponent } from '../../app/containers/UIKit'; +import { KitContext, defaultContext } from '../../app/containers/UIKit/utils'; +import StoriesSeparator from './StoriesSeparator'; + +// eslint-disable-next-line react/prop-types +const Separator = ({ title }) => ; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff' + }, + padding: { + paddingHorizontal: 16 + } +}); + +export default () => ( + + + + { + UiKitModal([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Rocket.Chat is free, unlimited and open source* 🚀\nIf you have any doubt ask to @rocketcat' + } + }, + { + type: 'divider' + }, + { + type: 'section', + fields: [ + { + type: 'mrkdwn', + text: '*Text 1*\nDescription, Mussum Ipsum, cacilds vidis litro' + }, + { + type: 'mrkdwn', + text: '*Text 2*\nDescription, Mussum Ipsum, cacilds vidis litro' + } + ] + }, + { + type: 'section', + fields: [ + { + type: 'mrkdwn', + text: '*Text 3*\nDescription, Mussum Ipsum, cacilds vidis litro' + }, + { + type: 'mrkdwn', + text: '*Text 4*\nDescription, Mussum Ipsum, cacilds vidis litro' + } + ] + } + ]) + } + + + { + UiKitModal([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Bruno Quadros*,\nPlease review your details for your *travel expense*.\nExpense no. *DA921*.' + }, + accessory: { + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' + } + }, + { + type: 'divider' + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Date:*\n11/02/2020' + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Category:*\nTravel' + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Cost:*\n$150.00 USD' + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Notes:*\nWebSummit Conference' + } + } + ]) + } + + + { + UiKitModal([ + { + type: 'input', + element: { + type: 'plain_text_input' + }, + label: { + type: 'plain_text', + text: 'Outgoing Title', + emoji: true + }, + hint: { + type: 'plain_text', + text: 'Pick something unique!', + emoji: true + } + }, + { + type: 'input', + element: { + type: 'datepicker', + initial_date: '1990-04-28', + placeholder: { + type: 'plain_text', + text: 'Select a date', + emoji: true + } + }, + label: { + type: 'plain_text', + text: 'Set a date', + emoji: true + } + }, + { + type: 'input', + element: { + type: 'multi_static_select', + options: [{ + text: { + type: 'plain_text', + text: 'John' + }, + value: 1 + }, { + text: { + type: 'plain_text', + text: 'Dog' + }, + value: 2 + }] + }, + label: { + type: 'plain_text', + text: 'Share with...', + emoji: true + } + } + ]) + } + + + { + UiKitModal([ + { + type: 'context', + elements: [{ + type: 'mrkdwn', + text: 'Task: ZOL-994' + }] + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Update Spec final assets' + }, + accessory: { + type: 'button', + text: { + type: 'plain_text', + text: 'Change' + } + } + }, + { + type: 'divider' + }, + { + type: 'input', + element: { + type: 'plain_text_input', + multiline: true + }, + placeholder: { + type: 'plain_text', + text: 'Write Something', + emoji: true + }, + label: { + type: 'plain_text', + text: 'Notes', + emoji: true + }, + hint: { + type: 'plain_text', + text: 'Please take the time to compose something short', + emoji: true + }, + description: { + type: 'plain_text', + text: 'Describe your update', + emoji: true + } + } + ]) + } + + + { + UiKitModal([ + { + type: 'image', + title: { + type: 'plain_text', + text: 'Example Image', + emoji: true + }, + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + alt_text: 'Example Image' + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'How could be the life in Mars?' + } + }, + { + type: 'context', + elements: [ + { + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' + }, + { + type: 'mrkdwn', + text: 'November 25, 2019' + } + ] + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Next stop, Mars!*\nMussum Ipsum, cacilds vidis litro abertis. Admodum accumsan disputationi eu sit. Vide electram sadipscing et per. Diuretics paradis num copo é motivis de denguis. Mais vale um bebadis conhecidiss, que um alcoolatra anonimis. Aenean aliquam molestie leo, vitae iaculis nisl.' + } + } + ]) + } + + + { + UiKitModal([{ + type: 'input', + element: { + type: 'plain_text_input' + }, + label: { + type: 'plain_text', + text: 'Title', + emoji: true + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Details' + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'TypeL Task' + } + }, { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + }] + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Project: Space (winter)' + } + }, { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + }] + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Priority (optional)' + } + }, { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + }] + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Assinee (optional)' + } + }, { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + }] + } + }, + { + type: 'input', + element: { + type: 'plain_text_input', + multiline: true + }, + placeholder: { + type: 'plain_text', + text: 'Write Something', + emoji: true + }, + label: { + type: 'plain_text', + text: 'Description', + emoji: true + } + }]) + } + + + { + UiKitModal([ + { + type: 'context', + elements: [{ + type: 'mrkdwn', + text: 'Due today' + }] + }, + { + type: 'divider' + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Finish interface componests (3 hours)' + }, + accessory: { + blockId: 'overflow-1', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'English Class (1 hour)' + }, + accessory: { + blockId: 'overflow-2', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Send an email to John (15min)' + }, + accessory: { + blockId: 'overflow-3', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } + } + ]) + } + + + + + + + + + + + + + + + + + +); diff --git a/storybook/stories/index.js b/storybook/stories/index.js index 125467abd4..4e8f826180 100644 --- a/storybook/stories/index.js +++ b/storybook/stories/index.js @@ -6,6 +6,8 @@ import { storiesOf } from '@storybook/react-native'; import RoomItem from './RoomItem'; import Message from './Message'; +import UiKitMessage from './UiKitMessage'; +import UiKitModal from './UiKitModal'; // import RoomViewHeader from './RoomViewHeader'; // Change here to see themed storybook @@ -25,9 +27,15 @@ const store = createStore(reducers); storiesOf('RoomItem', module) .addDecorator(story => {story()}) - .add('list', () => ); + .add('list roomitem', () => ); storiesOf('Message', module) - .add('list', () => ); + .add('list message', () => ); + +storiesOf('UiKitMessage', module) + .add('list uikitmessage', () => ); +storiesOf('UiKitModal', module) + .add('list UiKitModal', () => ); + // FIXME: I couldn't make these pass on jest :( // storiesOf('RoomViewHeader', module) // .add('list', () => ); diff --git a/yarn.lock b/yarn.lock index f67cb8297b..34e241df60 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1549,6 +1549,13 @@ wcwidth "^1.0.1" ws "^1.1.0" +"@react-native-community/datetimepicker@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/datetimepicker/-/datetimepicker-2.1.0.tgz#4e3413462cbbe5c48fab6cebd422835031cdf7b9" + integrity sha512-InktUrx0/4JTy1YsgswljgID7oB3L8wkFobRhnLGWPExSsNHeecGW2/nBP31ZaOPHcjVWhpOQMZt0zDpKfGE/Q== + dependencies: + invariant "^2.2.4" + "@react-native-community/slider@2.0.5": version "2.0.5" resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-2.0.5.tgz#2efd009ff083e4321fc9f0ebf380a3d3f5d8121f" @@ -1622,10 +1629,10 @@ resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz#0e81ce56b4883b4b2a3001ebe1ab298b84237204" integrity sha512-afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg== -"@rocket.chat/sdk@1.0.0-alpha.31": - version "1.0.0-alpha.31" - resolved "https://registry.yarnpkg.com/@rocket.chat/sdk/-/sdk-1.0.0-alpha.31.tgz#d810645f0894d384d27737efe6ee18955db7c9a7" - integrity sha512-+ScMW4+Ik8n0WK1suqAI03ZFivwzwyJZeLnOXtX9hDzpRN4UOXCGh/dAhlTjS3/oaF3lmwjF00s4+UUMZBN51w== +"@rocket.chat/sdk@1.0.0-alpha.41": + version "1.0.0-alpha.41" + resolved "https://registry.yarnpkg.com/@rocket.chat/sdk/-/sdk-1.0.0-alpha.41.tgz#8fcae2885786bec56a56b6d9a8cccaa365b77364" + integrity sha512-jQ+/exEQMOv+bwH+yzPTC0oJGIKj/AlMc95IvWAn/vHDLjjS3aGzpIpZhBwsMOBVvb/5N8rnq6kEleCkEJk28g== dependencies: js-sha256 "^0.9.0" lru-cache "^4.1.1" @@ -1633,6 +1640,11 @@ tiny-events "^1.0.1" universal-websocket-client "^1.0.2" +"@rocket.chat/ui-kit@^0.2.0-alpha.25": + version "0.2.0-alpha.26" + resolved "https://registry.yarnpkg.com/@rocket.chat/ui-kit/-/ui-kit-0.2.0-alpha.26.tgz#139e337bc8e751ecd5e61e7a07e563792c37d002" + integrity sha512-UBsuntc/W/s545WJGUZlG2TyrrCI59REhRWcgIR/Ueb3qkh/DuhdtK6zjVH1y0M+tLlkrIgtEAsoatj55nkWVA== + "@snyk/composer-lockfile-parser@1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@snyk/composer-lockfile-parser/-/composer-lockfile-parser-1.0.3.tgz#4b703883ec36f3cec63c64355031e06698c771f5" @@ -9430,6 +9442,11 @@ react-native-modal@^9.0.0: prop-types "^15.6.2" react-native-animatable "^1.2.4" +react-native-modalize@^1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/react-native-modalize/-/react-native-modalize-1.3.6.tgz#1a8651f673dbaccb9ebef908688bbd72b7790470" + integrity sha512-omYD+bPpugO7XPZ4pvPIaltw8d4Es0ZcRfu8VVslYAJT74t5IxSd6NrtL3nw/i+TKZo+CTdK4d0hbgBiyt+mMw== + react-native-navigation-bar-color@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/react-native-navigation-bar-color/-/react-native-navigation-bar-color-1.0.0.tgz#04ff752a58049af93ceea9ccf266b8d3fbc6514a" @@ -9460,6 +9477,13 @@ react-native-platform-touchable@^1.1.1: resolved "https://registry.yarnpkg.com/react-native-platform-touchable/-/react-native-platform-touchable-1.1.1.tgz#fde4acc65eea585d28b164d0c3716a42129a68e4" integrity sha1-/eSsxl7qWF0osWTQw3FqQhKaaOQ= +react-native-popover-view@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/react-native-popover-view/-/react-native-popover-view-2.0.5.tgz#402767a7ef791cb5ec5c035f51755e579b0eaee3" + integrity sha512-F/GJxaRdmpHPX/rXBgeGkKRB3t7v8rS5ysEclSNcXtBe00rkhCNq74h0WKomQDPM1LYPETZ76mXIfHylEU7Awg== + dependencies: + react-native-safe-area-view "^0.14.6" + react-native-progress@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/react-native-progress/-/react-native-progress-4.0.3.tgz#0020a9ce9fa5cb14c7aac8f993b31f27a7ff2150" @@ -9480,7 +9504,7 @@ react-native-responsive-ui@^1.1.1: dependencies: lodash "^4.17.4" -react-native-safe-area-view@^0.14.1: +react-native-safe-area-view@^0.14.1, react-native-safe-area-view@^0.14.6: version "0.14.8" resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.8.tgz#ef33c46ff8164ae77acad48c3039ec9c34873e5b" integrity sha512-MtRSIcZNstxv87Jet+UsPhEd1tpGe8cVskDXlP657x6rHpSrbrc+y13ZNXrwAgGNNhqQNX7UJT68ZIq//ZRmvw== @@ -10242,7 +10266,7 @@ rn-root-view@^1.0.3: resolved "https://registry.yarnpkg.com/rn-root-view/-/rn-root-view-1.0.3.tgz#a2cddc717278cb2175fb29b7c006e407b7f0d0e2" integrity sha512-BIKm8hY5q8+pxK9B5ugYjqutoI9xn2JfxIZKWoaFmAl1bOIM4oXjwFQrRM1e6lFgzz99MN6Mf2dK3Alsywnvvw== -rn-user-defaults@^1.7.0: +rn-user-defaults@1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/rn-user-defaults/-/rn-user-defaults-1.7.0.tgz#8d1b79657dec3977e8f8983814b8591821f77236" integrity sha512-Qo6sIH8wldmQ0oOMMvljec4WOa/a1Up1pdatoXZGaPG1gl8OKgKH5HPKyddcABYtxPeBUTPVzCxP/6S6wPCqGQ== From 3683b8936a3227d8ebdb60a7e5bca64f62fd479f Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 11 Feb 2020 11:09:14 -0300 Subject: [PATCH 2/5] [IMPROVEMENT] Use reselect (#1696) --- app/containers/MessageBox/EmojiKeyboard.js | 2 +- app/containers/MessageBox/ReplyPreview.js | 2 +- app/containers/MessageBox/index.js | 9 +++----- app/lib/methods/sendFileMessage.js | 6 +---- app/notifications/inApp/index.js | 11 ++++----- app/selectors/login.js | 8 +++++++ app/views/AdminPanelView/index.js | 11 +++++---- app/views/AttachmentView.js | 8 +++---- app/views/CreateChannelView.js | 8 +++---- app/views/DirectoryView/index.js | 8 +++---- app/views/LanguageView/index.js | 3 ++- app/views/MessagesView/index.js | 9 +++----- app/views/NewMessageView.js | 8 +++---- app/views/ProfileView/index.js | 12 +++------- app/views/ReadReceiptView/index.js | 11 ++++----- app/views/RoomActionsView/index.js | 8 +++---- app/views/RoomInfoView/index.js | 8 +++---- app/views/RoomMembersView/index.js | 8 +++---- app/views/RoomView/Header/RightButtons.js | 3 ++- app/views/RoomView/Header/index.js | 7 +++--- app/views/RoomView/ReactionPicker.js | 2 +- app/views/RoomView/index.js | 9 +++----- app/views/RoomsListView/index.js | 27 +++++++++++----------- app/views/SearchMessagesView/index.js | 9 +++----- app/views/SelectedUsersView.js | 8 +++---- app/views/SetUsernameView.js | 3 ++- app/views/SettingsView/index.js | 3 ++- app/views/ShareListView/index.js | 8 +++---- app/views/ShareView/index.js | 6 ++--- app/views/SidebarView/index.js | 12 +++------- app/views/ThreadMessagesView/index.js | 9 +++----- package.json | 1 + yarn.lock | 5 ++++ 33 files changed, 111 insertions(+), 141 deletions(-) create mode 100644 app/selectors/login.js diff --git a/app/containers/MessageBox/EmojiKeyboard.js b/app/containers/MessageBox/EmojiKeyboard.js index 6f65d6fe4b..f8bc13019b 100644 --- a/app/containers/MessageBox/EmojiKeyboard.js +++ b/app/containers/MessageBox/EmojiKeyboard.js @@ -17,7 +17,7 @@ export default class EmojiKeyboard extends React.PureComponent { constructor(props) { super(props); const state = store.getState(); - this.baseUrl = state.settings.Site_Url || state.server ? state.server.server : ''; + this.baseUrl = state.server.server; } onEmojiSelected = (emoji) => { diff --git a/app/containers/MessageBox/ReplyPreview.js b/app/containers/MessageBox/ReplyPreview.js index 97d0cd5b72..54d872ebda 100644 --- a/app/containers/MessageBox/ReplyPreview.js +++ b/app/containers/MessageBox/ReplyPreview.js @@ -92,7 +92,7 @@ ReplyPreview.propTypes = { const mapStateToProps = state => ({ useMarkdown: state.markdown.useMarkdown, Message_TimeFormat: state.settings.Message_TimeFormat, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' + baseUrl: state.server.server }); export default connect(mapStateToProps)(ReplyPreview); diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index a9cdb4be00..1c99ddc2bb 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -44,6 +44,7 @@ import { } from './constants'; import CommandsPreview from './CommandsPreview'; import { Review } from '../../utils/review'; +import { getUserSelector } from '../../selectors/login'; const imagePickerConfig = { cropping: true, @@ -881,13 +882,9 @@ class MessageBox extends Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + baseUrl: state.server.server, threadsEnabled: state.settings.Threads_enabled, - user: { - id: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token - }, + user: getUserSelector(state), FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize }); diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 5113391586..6297d645f3 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -28,13 +28,9 @@ export async function cancelUpload(item) { export function sendFileMessage(rid, fileInfo, tmid, server, user) { return new Promise(async(resolve, reject) => { try { - const serversDB = database.servers; - const serversCollection = serversDB.collections.get('servers'); - const serverInfo = await serversCollection.find(server); - const { id: Site_Url } = serverInfo; const { id, token } = user; - const uploadUrl = `${ Site_Url }/api/v1/rooms.upload/${ rid }`; + const uploadUrl = `${ server }/api/v1/rooms.upload/${ rid }`; const xhr = new XMLHttpRequest(); const formData = new FormData(); diff --git a/app/notifications/inApp/index.js b/app/notifications/inApp/index.js index c03f2093d1..9c56239734 100644 --- a/app/notifications/inApp/index.js +++ b/app/notifications/inApp/index.js @@ -16,6 +16,7 @@ import { removeNotification as removeNotificationAction } from '../../actions/no import sharedStyles from '../../views/Styles'; import { ROW_HEIGHT } from '../../presentation/RoomItem'; import { withTheme } from '../../theme'; +import { getUserSelector } from '../../selectors/login'; const AVATAR_SIZE = 48; const ANIMATION_DURATION = 300; @@ -72,8 +73,7 @@ class NotificationBadge extends React.Component { static propTypes = { navigation: PropTypes.object, baseUrl: PropTypes.string, - token: PropTypes.string, - userId: PropTypes.string, + user: PropTypes.object, notification: PropTypes.object, window: PropTypes.object, removeNotification: PropTypes.func, @@ -173,7 +173,7 @@ class NotificationBadge extends React.Component { render() { const { - baseUrl, token, userId, notification, window, theme + baseUrl, user: { id: userId, token }, notification, window, theme } = this.props; const { message, payload } = notification; const { type } = payload; @@ -227,9 +227,8 @@ class NotificationBadge extends React.Component { } const mapStateToProps = state => ({ - userId: state.login.user && state.login.user.id, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - token: state.login.user && state.login.user.token, + user: getUserSelector(state), + baseUrl: state.server.server, notification: state.notification }); diff --git a/app/selectors/login.js b/app/selectors/login.js new file mode 100644 index 0000000000..6bbba8b9f8 --- /dev/null +++ b/app/selectors/login.js @@ -0,0 +1,8 @@ +import { createSelector } from 'reselect'; + +const getUser = state => state.login.user || {}; + +export const getUserSelector = createSelector( + [getUser], + user => user +); diff --git a/app/views/AdminPanelView/index.js b/app/views/AdminPanelView/index.js index 1fc0ba0216..3bda33ffe4 100644 --- a/app/views/AdminPanelView/index.js +++ b/app/views/AdminPanelView/index.js @@ -11,6 +11,7 @@ import styles from '../Styles'; import { themedHeader } from '../../utils/navigation'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; +import { getUserSelector } from '../../selectors/login'; class AdminPanelView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => ({ @@ -21,12 +22,12 @@ class AdminPanelView extends React.Component { static propTypes = { baseUrl: PropTypes.string, - authToken: PropTypes.string, + token: PropTypes.string, theme: PropTypes.string } render() { - const { baseUrl, authToken, theme } = this.props; + const { baseUrl, token, theme } = this.props; if (!baseUrl) { return null; } @@ -35,7 +36,7 @@ class AdminPanelView extends React.Component { ); @@ -43,8 +44,8 @@ class AdminPanelView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - authToken: state.login.user && state.login.user.token + baseUrl: state.server.server, + token: getUserSelector(state).token }); export default connect(mapStateToProps)(withTheme(AdminPanelView)); diff --git a/app/views/AttachmentView.js b/app/views/AttachmentView.js index 8b86ece697..e89893d202 100644 --- a/app/views/AttachmentView.js +++ b/app/views/AttachmentView.js @@ -19,6 +19,7 @@ import { formatAttachmentUrl } from '../lib/utils'; import RCActivityIndicator from '../containers/ActivityIndicator'; import { SaveButton, CloseModalButton } from '../containers/HeaderButton'; import { isAndroid } from '../utils/deviceInfo'; +import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ container: { @@ -142,11 +143,8 @@ class AttachmentView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - } + baseUrl: state.server.server, + user: getUserSelector(state) }); export default connect(mapStateToProps)(withTheme(AttachmentView)); diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 3b19fb9e6c..7856473539 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -23,6 +23,7 @@ import { SWITCH_TRACK_COLOR, themes } from '../constants/colors'; import { withTheme } from '../theme'; import { themedHeader } from '../utils/navigation'; import { Review } from '../utils/review'; +import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ container: { @@ -365,16 +366,13 @@ class CreateChannelView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + baseUrl: state.server.server, error: state.createChannel.error, failure: state.createChannel.failure, isFetching: state.createChannel.isFetching, result: state.createChannel.result, users: state.selectedUsers.users, - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - } + user: getUserSelector(state) }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/DirectoryView/index.js b/app/views/DirectoryView/index.js index 0f91b2caaa..51c7b4f2b8 100644 --- a/app/views/DirectoryView/index.js +++ b/app/views/DirectoryView/index.js @@ -23,6 +23,7 @@ import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; import styles from './styles'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; class DirectoryView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => { @@ -253,11 +254,8 @@ class DirectoryView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - }, + baseUrl: state.server.server, + user: getUserSelector(state), isFederationEnabled: state.settings.FEDERATION_Enabled }); diff --git a/app/views/LanguageView/index.js b/app/views/LanguageView/index.js index df5ffd18e1..ca2efb8667 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -18,6 +18,7 @@ import Separator from '../../containers/Separator'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; const LANGUAGES = [ { @@ -185,7 +186,7 @@ class LanguageView extends React.Component { } const mapStateToProps = state => ({ - userLanguage: state.login.user && state.login.user.language + userLanguage: getUserSelector(state).language }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index 4736f394f9..49aeb8713b 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -17,6 +17,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { withSplit } from '../../split'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; const ACTION_INDEX = 0; const CANCEL_INDEX = 1; @@ -306,12 +307,8 @@ class MessagesView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token - }, + baseUrl: state.server.server, + user: getUserSelector(state), customEmojis: state.customEmojis }); diff --git a/app/views/NewMessageView.js b/app/views/NewMessageView.js index e16f3d8ca6..2140df18b0 100644 --- a/app/views/NewMessageView.js +++ b/app/views/NewMessageView.js @@ -23,6 +23,7 @@ import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; import { themedHeader } from '../utils/navigation'; +import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ safeAreaView: { @@ -227,11 +228,8 @@ class NewMessageView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - } + baseUrl: state.server.server, + user: getUserSelector(state) }); export default connect(mapStateToProps)(withTheme(NewMessageView)); diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index 3121db989b..e130568820 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -31,6 +31,7 @@ import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; class ProfileView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => ({ @@ -497,16 +498,9 @@ class ProfileView extends React.Component { } const mapStateToProps = state => ({ - user: { - id: state.login.user && state.login.user.id, - name: state.login.user && state.login.user.name, - username: state.login.user && state.login.user.username, - customFields: state.login.user && state.login.user.customFields, - emails: state.login.user && state.login.user.emails, - token: state.login.user && state.login.user.token - }, + user: getUserSelector(state), Accounts_CustomFields: state.settings.Accounts_CustomFields, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' + baseUrl: state.server.server }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.js index d5d90fcd13..bd58e6906c 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.js @@ -15,6 +15,7 @@ import StatusBar from '../../containers/StatusBar'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; import { themes } from '../../constants/colors'; +import { getUserSelector } from '../../selectors/login'; class ReadReceiptView extends React.Component { static navigationOptions = ({ screenProps }) => ({ @@ -26,8 +27,7 @@ class ReadReceiptView extends React.Component { navigation: PropTypes.object, Message_TimeFormat: PropTypes.string, baseUrl: PropTypes.string, - userId: PropTypes.string, - token: PropTypes.string, + user: PropTypes.object, theme: PropTypes.string } @@ -92,7 +92,7 @@ class ReadReceiptView extends React.Component { renderItem = ({ item }) => { const { - Message_TimeFormat, userId, baseUrl, token, theme + Message_TimeFormat, user: { id: userId, token }, baseUrl, theme } = this.props; const time = moment(item.ts).format(Message_TimeFormat); return ( @@ -167,9 +167,8 @@ class ReadReceiptView extends React.Component { const mapStateToProps = state => ({ Message_TimeFormat: state.settings.Message_TimeFormat, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - userId: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token + baseUrl: state.server.server, + user: getUserSelector(state) }); export default connect(mapStateToProps)(withTheme(ReadReceiptView)); diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index 18e4a05796..7f60e6e671 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -24,6 +24,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; import { CloseModalButton } from '../../containers/HeaderButton'; +import { getUserSelector } from '../../selectors/login'; class RoomActionsView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => { @@ -523,11 +524,8 @@ class RoomActionsView extends React.Component { } const mapStateToProps = state => ({ - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - }, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + user: getUserSelector(state), + baseUrl: state.server.server, jitsiEnabled: state.settings.Jitsi_Enabled || false }); diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index ada9df185a..1df5566bbf 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -19,6 +19,7 @@ import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; const PERMISSION_EDIT_ROOM = 'edit-room'; @@ -309,11 +310,8 @@ class RoomInfoView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - }, + baseUrl: state.server.server, + user: getUserSelector(state), Message_TimeFormat: state.settings.Message_TimeFormat }); diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index 40b59d2985..74e4bf6a84 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -24,6 +24,7 @@ import ActivityIndicator from '../../containers/ActivityIndicator'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; import { themes } from '../../constants/colors'; +import { getUserSelector } from '../../selectors/login'; const PAGE_SIZE = 25; @@ -287,11 +288,8 @@ class RoomMembersView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - } + baseUrl: state.server.server, + user: getUserSelector(state) }); export default connect(mapStateToProps)(withTheme(RoomMembersView)); diff --git a/app/views/RoomView/Header/RightButtons.js b/app/views/RoomView/Header/RightButtons.js index 87a4d6d153..b1c6e90d29 100644 --- a/app/views/RoomView/Header/RightButtons.js +++ b/app/views/RoomView/Header/RightButtons.js @@ -4,6 +4,7 @@ import { connect } from 'react-redux'; import { CustomHeaderButtons, Item } from '../../../containers/HeaderButton'; import database from '../../../lib/database'; +import { getUserSelector } from '../../../selectors/login'; class RightButtonsContainer extends React.PureComponent { static propTypes = { @@ -102,7 +103,7 @@ class RightButtonsContainer extends React.PureComponent { } const mapStateToProps = state => ({ - userId: state.login.user && state.login.user.id, + userId: getUserSelector(state).id, threadsEnabled: state.settings.Threads_enabled }); diff --git a/app/views/RoomView/Header/index.js b/app/views/RoomView/Header/index.js index 4911be2d3a..145e22792f 100644 --- a/app/views/RoomView/Header/index.js +++ b/app/views/RoomView/Header/index.js @@ -8,6 +8,7 @@ import Header from './Header'; import RightButtons from './RightButtons'; import { withTheme } from '../../../theme'; import RoomHeaderLeft from './RoomHeaderLeft'; +import { getUserSelector } from '../../../selectors/login'; class RoomHeaderView extends Component { static propTypes = { @@ -86,9 +87,9 @@ const mapStateToProps = (state, ownProps) => { let status; const { rid, type } = ownProps; if (type === 'd') { - if (state.login.user && state.login.user.id) { - const { id: loggedUserId } = state.login.user; - const userId = rid.replace(loggedUserId, '').trim(); + const user = getUserSelector(state); + if (user.id) { + const userId = rid.replace(user.id, '').trim(); status = state.activeUsers[userId]; } } diff --git a/app/views/RoomView/ReactionPicker.js b/app/views/RoomView/ReactionPicker.js index 1c158ab9aa..3a10b3fcb6 100644 --- a/app/views/RoomView/ReactionPicker.js +++ b/app/views/RoomView/ReactionPicker.js @@ -83,7 +83,7 @@ class ReactionPicker extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' + baseUrl: state.server.server }); export default responsive(connect(mapStateToProps)(withSplit(ReactionPicker))); diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 5e91b54efe..df8b5dffe3 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -49,6 +49,7 @@ import { import ModalNavigation from '../../lib/ModalNavigation'; import { Review } from '../../utils/review'; import RoomClass from '../../lib/methods/subscriptions/room'; +import { getUserSelector } from '../../selectors/login'; import { CONTAINER_TYPES } from '../../lib/methods/actions'; const stateAttrsUpdate = [ @@ -940,11 +941,7 @@ class RoomView extends React.Component { } const mapStateToProps = state => ({ - user: { - id: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token - }, + user: getUserSelector(state), appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', useRealName: state.settings.UI_Use_Real_Name, isAuthenticated: state.login.isAuthenticated, @@ -952,7 +949,7 @@ const mapStateToProps = state => ({ Message_TimeFormat: state.settings.Message_TimeFormat, useMarkdown: state.markdown.useMarkdown, customEmojis: state.customEmojis, - baseUrl: state.settings.baseUrl || state.server ? state.server.server : '', + baseUrl: state.server.server, Message_Read_Receipt_Enabled: state.settings.Message_Read_Receipt_Enabled }); diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 468370a7ea..fb72085acb 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -59,6 +59,7 @@ import { } from '../../commands'; import { MAX_SIDEBAR_WIDTH } from '../../constants/tablet'; import { withSplit } from '../../split'; +import { getUserSelector } from '../../selectors/login'; const SCROLL_OFFSET = 56; const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12; @@ -148,10 +149,11 @@ class RoomsListView extends React.Component { static propTypes = { navigation: PropTypes.object, - userId: PropTypes.string, - username: PropTypes.string, - token: PropTypes.string, - baseUrl: PropTypes.string, + user: PropTypes.shape({ + id: PropTypes.string, + username: PropTypes.string, + token: PropTypes.string + }), server: PropTypes.string, searchText: PropTypes.string, loadingServer: PropTypes.bool, @@ -700,10 +702,12 @@ class RoomsListView extends React.Component { const { width } = this.state; const { - userId, - username, - token, - baseUrl, + user: { + id: userId, + username, + token + }, + server, StoreLastMessage, theme, split @@ -730,7 +734,7 @@ class RoomsListView extends React.Component { token={token} rid={item.rid} type={item.t} - baseUrl={baseUrl} + baseUrl={server} prid={item.prid} showLastMessage={StoreLastMessage} onPress={() => this._onPressItem(item)} @@ -815,11 +819,8 @@ class RoomsListView extends React.Component { } const mapStateToProps = state => ({ - userId: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token, + user: getUserSelector(state), server: state.server.server, - baseUrl: state.settings.baseUrl || state.server ? state.server.server : '', searchText: state.rooms.searchText, loadingServer: state.server.loading, showServerDropdown: state.rooms.showServerDropdown, diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 9b03ccb92a..c7c102ff52 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -19,6 +19,7 @@ import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; +import { getUserSelector } from '../../selectors/login'; class SearchMessagesView extends React.Component { static navigationOptions = ({ screenProps }) => ({ @@ -167,12 +168,8 @@ class SearchMessagesView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token - }, + baseUrl: state.server.server, + user: getUserSelector(state), customEmojis: state.customEmojis }); diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index 82055075d3..530b7e3d71 100644 --- a/app/views/SelectedUsersView.js +++ b/app/views/SelectedUsersView.js @@ -25,6 +25,7 @@ import { themes } from '../constants/colors'; import { animateNextTransition } from '../utils/layoutAnimation'; import { withTheme } from '../theme'; import { themedHeader } from '../utils/navigation'; +import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ safeAreaView: { @@ -305,13 +306,10 @@ class SelectedUsersView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + baseUrl: state.server.server, users: state.selectedUsers.users, loading: state.selectedUsers.loading, - user: { - id: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token - } + user: getUserSelector(state) }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/SetUsernameView.js b/app/views/SetUsernameView.js index 4c3c37abbb..93d31829f4 100644 --- a/app/views/SetUsernameView.js +++ b/app/views/SetUsernameView.js @@ -21,6 +21,7 @@ import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import { isTablet } from '../utils/deviceInfo'; +import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ loginTitle: { @@ -161,7 +162,7 @@ class SetUsernameView extends React.Component { const mapStateToProps = state => ({ server: state.server.server, - token: state.login.user && state.login.user.token + token: getUserSelector(state).token }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 17cd34ef02..022b11663d 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -36,6 +36,7 @@ import { LISTENER } from '../../containers/Toast'; import EventEmitter from '../../utils/events'; import { appStart as appStartAction } from '../../actions'; import { onReviewPress } from '../../utils/review'; +import { getUserSelector } from '../../selectors/login'; const SectionSeparator = React.memo(({ theme }) => ( ({ server: state.server, - token: state.login.user && state.login.user.token, + token: getUserSelector(state).token, useMarkdown: state.markdown.useMarkdown, allowCrashReport: state.crashReport.allowCrashReport }); diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index bb254c421e..d16b9c8fe1 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -87,7 +87,6 @@ class ShareListView extends React.Component { static propTypes = { navigation: PropTypes.object, server: PropTypes.string, - baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string, theme: PropTypes.string @@ -301,7 +300,7 @@ class ShareListView extends React.Component { renderItem = ({ item }) => { const { - userId, token, baseUrl, theme + userId, token, server, theme } = this.props; return ( ({ userId: share.user && share.user.id, token: share.user && share.user.token, - server: share.server, - baseUrl: share ? share.server : '' + server: share.server })); export default connect(mapStateToProps)(withTheme(ShareListView)); diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 049adfeef4..f555233190 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -48,7 +48,7 @@ class ShareView extends React.Component { username: PropTypes.string.isRequired, token: PropTypes.string.isRequired }), - baseUrl: PropTypes.string.isRequired + server: PropTypes.string }; constructor(props) { @@ -104,7 +104,7 @@ class ShareView extends React.Component { sendMediaMessage = async() => { const { rid, fileInfo, file } = this.state; - const { baseUrl: server, user } = this.props; + const { server, user } = this.props; const { name, description } = file; const fileMessage = { name, @@ -293,7 +293,7 @@ const mapStateToProps = (({ share }) => ({ username: share.user && share.user.username, token: share.user && share.user.token }, - baseUrl: share ? share.server : '' + server: share.server })); export default connect(mapStateToProps)(withTheme(ShareView)); diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index 7a83fb9ef0..08b6931eae 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -22,6 +22,7 @@ import database from '../../lib/database'; import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; import { withSplit } from '../../split'; +import { getUserSelector } from '../../selectors/login'; const keyExtractor = item => item.id; @@ -297,15 +298,8 @@ class Sidebar extends Component { const mapStateToProps = state => ({ Site_Name: state.settings.Site_Name, - user: { - id: state.login.user && state.login.user.id, - language: state.login.user && state.login.user.language, - status: state.login.user && state.login.user.status, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token, - roles: state.login.user && state.login.user.roles - }, - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + user: getUserSelector(state), + baseUrl: state.server.server, loadingServer: state.server.loading }); diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index 6a953340cf..33001d9150 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -25,6 +25,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; import ModalNavigation from '../../lib/ModalNavigation'; +import { getUserSelector } from '../../selectors/login'; const Separator = React.memo(({ theme }) => ); Separator.propTypes = { @@ -348,12 +349,8 @@ class ThreadMessagesView extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', - user: { - id: state.login.user && state.login.user.id, - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token - }, + baseUrl: state.server.server, + user: getUserSelector(state), useRealName: state.settings.UI_Use_Real_Name, customEmojis: state.customEmojis }); diff --git a/package.json b/package.json index 3f210bb46b..e1a01006ea 100644 --- a/package.json +++ b/package.json @@ -100,6 +100,7 @@ "redux-immutable-state-invariant": "^2.1.0", "redux-saga": "1.1.3", "remove-markdown": "^0.3.0", + "reselect": "^4.0.0", "rn-extensions-share": "^2.3.10", "rn-fetch-blob": "0.11.2", "rn-root-view": "^1.0.3", diff --git a/yarn.lock b/yarn.lock index 34e241df60..03ef111731 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10147,6 +10147,11 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= +reselect@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" + integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== + resize-observer-polyfill@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" From e588c1fc0883e34d9e72d7575351d80fef81d664 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Feb 2020 12:43:35 -0300 Subject: [PATCH 3/5] [FIX] Notification in Android API level less than 24 (#1692) --- .../reactnative/CustomPushNotification.java | 106 +++++++++++------- 1 file changed, 65 insertions(+), 41 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/CustomPushNotification.java b/android/app/src/main/java/chat/rocket/reactnative/CustomPushNotification.java index 5258c0b905..07cab5e5b5 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/CustomPushNotification.java +++ b/android/app/src/main/java/chat/rocket/reactnative/CustomPushNotification.java @@ -94,8 +94,12 @@ protected Notification.Builder getNotificationBuilder(PendingIntent intent) { Bundle bundle = mNotificationProps.asBundle(); String notId = bundle.getString("notId", "1"); + String title = bundle.getString("title"); + String message = bundle.getString("message"); notification + .setContentTitle(title) + .setContentText(message) .setContentIntent(intent) .setPriority(Notification.PRIORITY_HIGH) .setDefaults(Notification.DEFAULT_ALL) @@ -143,8 +147,14 @@ private void notificationIcons(Notification.Builder notification, Bundle bundle) int smallIconResId = res.getIdentifier("ic_notification", "mipmap", packageName); - notification - .setSmallIcon(smallIconResId); + Gson gson = new Gson(); + Ejson ejson = gson.fromJson(bundle.getString("ejson", "{}"), Ejson.class); + + notification.setSmallIcon(smallIconResId); + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) { + notification.setLargeIcon(getAvatar(ejson.getAvatarUri())); + } } private void notificationChannel(Notification.Builder notification) { @@ -179,52 +189,66 @@ private void notificationColor(Notification.Builder notification) { } private void notificationStyle(Notification.Builder notification, int notId, Bundle bundle) { - Notification.MessagingStyle messageStyle; - String title = bundle.getString("title"); - - Gson gson = new Gson(); - Ejson ejson = gson.fromJson(bundle.getString("ejson", "{}"), Ejson.class); + List bundles = notificationMessages.get(Integer.toString(notId)); - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P) { - messageStyle = new Notification.MessagingStyle(""); - } else { - Person sender = new Person.Builder() - .setKey("") - .setName("") - .build(); - messageStyle = new Notification.MessagingStyle(sender); - } + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) { + Notification.InboxStyle messageStyle = new Notification.InboxStyle(); + if (bundles != null) { + for (int i = 0; i < bundles.size(); i++) { + Bundle data = bundles.get(i); + String message = data.getString("message"); - messageStyle.setConversationTitle(title); + messageStyle.addLine(message); + } + } - List bundles = notificationMessages.get(Integer.toString(notId)); + notification.setStyle(messageStyle); + } else { + Notification.MessagingStyle messageStyle; + + Gson gson = new Gson(); + Ejson ejson = gson.fromJson(bundle.getString("ejson", "{}"), Ejson.class); + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P) { + messageStyle = new Notification.MessagingStyle(""); + } else { + Person sender = new Person.Builder() + .setKey("") + .setName("") + .build(); + messageStyle = new Notification.MessagingStyle(sender); + } - if (bundles != null) { - for (int i = 0; i < bundles.size(); i++) { - Bundle data = bundles.get(i); - - long timestamp = data.getLong("time"); - String message = data.getString("message"); - String username = data.getString("username"); - String senderId = data.getString("senderId"); - String avatarUri = data.getString("avatarUri"); - - String m = extractMessage(message, ejson); - - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P) { - messageStyle.addMessage(m, timestamp, username); - } else { - Person sender = new Person.Builder() - .setKey(senderId) - .setName(username) - .setIcon(Icon.createWithBitmap(getAvatar(avatarUri))) - .build(); - messageStyle.addMessage(m, timestamp, sender); + String title = bundle.getString("title"); + messageStyle.setConversationTitle(title); + + if (bundles != null) { + for (int i = 0; i < bundles.size(); i++) { + Bundle data = bundles.get(i); + + long timestamp = data.getLong("time"); + String message = data.getString("message"); + String username = data.getString("username"); + String senderId = data.getString("senderId"); + String avatarUri = data.getString("avatarUri"); + + String m = extractMessage(message, ejson); + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P) { + messageStyle.addMessage(m, timestamp, username); + } else { + Person sender = new Person.Builder() + .setKey(senderId) + .setName(username) + .setIcon(Icon.createWithBitmap(getAvatar(avatarUri))) + .build(); + messageStyle.addMessage(m, timestamp, sender); + } } } - } - notification.setStyle(messageStyle); + notification.setStyle(messageStyle); + } } private void notificationReply(Notification.Builder notification, int notificationId, Bundle bundle) { From 836683591cd41d0c36a6690e9dd5357259ef73de Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Feb 2020 12:56:06 -0300 Subject: [PATCH 4/5] [IMPROVEMENT] Send tmid on slash commands and media (#1698) --- app/containers/MessageBox/index.js | 21 +++++++++++++-------- app/lib/rocketchat.js | 8 ++++---- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 1c99ddc2bb..063e7669dc 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -343,7 +343,9 @@ class MessageBox extends Component { onPressCommandPreview = (item) => { const { command } = this.state; - const { rid } = this.props; + const { + rid, tmid, message: { id: messageTmid }, replyCancel + } = this.props; const { text } = this; const name = text.substr(0, text.indexOf(' ')).slice(1); const params = text.substr(text.indexOf(' ') + 1) || 'params'; @@ -354,7 +356,8 @@ class MessageBox extends Component { try { const { appId } = command; const triggerId = generateTriggerId(appId); - RocketChat.executeCommandPreview(name, params, rid, item, triggerId); + RocketChat.executeCommandPreview(name, params, rid, item, triggerId, tmid || messageTmid); + replyCancel(); } catch (e) { log(e); } @@ -500,7 +503,7 @@ class MessageBox extends Component { sendMediaMessage = async(file) => { const { - rid, tmid, baseUrl: server, user + rid, tmid, baseUrl: server, user, message: { id: messageTmid }, replyCancel } = this.props; this.setState({ file: { isVisible: false } }); const fileInfo = { @@ -512,7 +515,8 @@ class MessageBox extends Component { path: file.path }; try { - await RocketChat.sendFileMessage(rid, fileInfo, tmid, server, user); + replyCancel(); + await RocketChat.sendFileMessage(rid, fileInfo, tmid || messageTmid, server, user); Review.pushPositiveEvent(); } catch (e) { log(e); @@ -647,7 +651,7 @@ class MessageBox extends Component { submit = async() => { const { - onSubmit, rid: roomId + onSubmit, rid: roomId, tmid } = this.props; const message = this.text; @@ -661,7 +665,7 @@ class MessageBox extends Component { } const { - editing, replying + editing, replying, message: { id: messageTmid }, replyCancel } = this.props; // Slash command @@ -677,7 +681,8 @@ class MessageBox extends Component { const messageWithoutCommand = message.replace(/([^\s]+)/, '').trim(); const [{ appId }] = slashCommand; const triggerId = generateTriggerId(appId); - RocketChat.runSlashCommand(command, roomId, messageWithoutCommand, triggerId); + RocketChat.runSlashCommand(command, roomId, messageWithoutCommand, triggerId, tmid || messageTmid); + replyCancel(); } catch (e) { log(e); } @@ -694,7 +699,7 @@ class MessageBox extends Component { // Reply } else if (replying) { const { - message: replyingMessage, replyCancel, threadsEnabled, replyWithMention + message: replyingMessage, threadsEnabled, replyWithMention } = this.props; // Thread diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index c48be72d68..ddb1dea810 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -1009,10 +1009,10 @@ const RocketChat = { rid, updatedSince }); }, - runSlashCommand(command, roomId, params, triggerId) { + runSlashCommand(command, roomId, params, triggerId, tmid) { // RC 0.60.2 return this.sdk.post('commands.run', { - command, roomId, params, triggerId + command, roomId, params, triggerId, tmid }); }, getCommandPreview(command, roomId, params) { @@ -1021,10 +1021,10 @@ const RocketChat = { command, roomId, params }); }, - executeCommandPreview(command, params, roomId, previewItem, triggerId) { + executeCommandPreview(command, params, roomId, previewItem, triggerId, tmid) { // RC 0.65.0 return this.sdk.post('commands.preview', { - command, params, roomId, previewItem, triggerId + command, params, roomId, previewItem, triggerId, tmid }); }, _setUser(ddpMessage) { From ebe36cdc00abf50fa16c9190bd29000fb8052349 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Feb 2020 13:00:58 -0300 Subject: [PATCH 5/5] [FIX] Unhandled action on UIKit (#1703) --- app/containers/UIKit/utils.js | 34 +++++++++++------- app/lib/methods/actions.js | 66 ++++++++++++++++------------------- 2 files changed, 52 insertions(+), 48 deletions(-) diff --git a/app/containers/UIKit/utils.js b/app/containers/UIKit/utils.js index 172a0d8009..80b23399ac 100644 --- a/app/containers/UIKit/utils.js +++ b/app/containers/UIKit/utils.js @@ -29,13 +29,17 @@ export const useBlockContext = ({ loading, setLoading, error, value, language }, async({ value }) => { setLoading(true); - await action({ - blockId, - appId: appId || appIdFromContext, - actionId, - value, - viewId - }); + try { + await action({ + blockId, + appId: appId || appIdFromContext, + actionId, + value, + viewId + }); + } catch (e) { + // do nothing + } setLoading(false); }]; } @@ -44,12 +48,16 @@ export const useBlockContext = ({ loading, setLoading, value, error, language }, async({ value }) => { setLoading(true); - await state({ - blockId, - appId, - actionId, - value - }); + try { + await state({ + blockId, + appId, + actionId, + value + }); + } catch (e) { + // do nothing + } setLoading(false); }]; }; diff --git a/app/lib/methods/actions.js b/app/lib/methods/actions.js index ce4e127f8d..4d35e91554 100644 --- a/app/lib/methods/actions.js +++ b/app/lib/methods/actions.js @@ -1,8 +1,6 @@ import random from '../../utils/random'; import EventEmitter from '../../utils/events'; import Navigation from '../Navigation'; -import { showErrorAlert } from '../../utils/info'; -import I18n from '../../i18n'; const TRIGGER_TIMEOUT = 5000; @@ -112,43 +110,41 @@ export function triggerAction({ const { userId, authToken } = this.sdk.currentLogin; const { host } = this.sdk.client; - // we need to use fetch because this.sdk.post add /v1 to url - const result = await fetch(`${ host }/api/apps/ui.interaction/${ appId }/`, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - 'X-Auth-Token': authToken, - 'X-User-Id': userId - }, - body: JSON.stringify({ - type, - actionId, - payload, - container, - mid, - rid, - triggerId, - viewId - }) - }); - try { - const { type: interactionType, ...data } = await result.json(); - handlePayloadUserInteraction(interactionType, data); - - if (data.success) { - return resolve(); + // we need to use fetch because this.sdk.post add /v1 to url + const result = await fetch(`${ host }/api/apps/ui.interaction/${ appId }/`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'X-Auth-Token': authToken, + 'X-User-Id': userId + }, + body: JSON.stringify({ + type, + actionId, + payload, + container, + mid, + rid, + triggerId, + viewId + }) + }); + + try { + const { type: interactionType, ...data } = await result.json(); + return resolve(handlePayloadUserInteraction(interactionType, data)); + } catch (e) { + // modal.close has no body, so result.json will fail + // but it returns ok status + if (result.ok) { + return resolve(); + } } - - return reject(); } catch (e) { - if (result.status !== 200) { - showErrorAlert(I18n.t('Oops')); - return reject(); - } + // do nothing } - - return resolve(); + return reject(); }); }