From 15c12f89010b87bf110ab62fa2ea7c8aca87aaed Mon Sep 17 00:00:00 2001 From: Ezequiel de Oliveira Date: Tue, 25 Aug 2020 17:04:18 -0300 Subject: [PATCH] [FIX] Logout from custom oauth (#2377) * New field in table of users Signed-off-by: Ezequiel De Oliveira * Saving when the user logged in with email and password Signed-off-by: Ezequiel De Oliveira * Saving login method info Signed-off-by: Ezequiel De Oliveira * Ask for the user to clear cookies Signed-off-by: Ezequiel De Oliveira * Fix lint Signed-off-by: Ezequiel De Oliveira * Removing loginMethod from redux and add I18n Signed-off-by: Ezequiel De Oliveira * Using async/await instead of then/catch Signed-off-by: Ezequiel De Oliveira * Fix lint Signed-off-by: Ezequiel De Oliveira * Pods * Added dismissText on showConfirmationAlert * Fix iOS * Rename function * I18n tweaks Co-authored-by: Diego Mello --- app/containers/MessageActions/index.js | 2 +- app/i18n/locales/en.js | 4 + app/i18n/locales/pt-BR.js | 4 + app/lib/database/model/User.js | 2 + app/lib/database/model/serversMigrations.js | 11 + app/lib/database/schema/servers.js | 5 +- app/lib/rocketchat.js | 13 +- app/sagas/login.js | 4 +- app/utils/info.js | 11 +- app/views/NewServerView.js | 2 +- app/views/RoomActionsView/index.js | 2 +- app/views/RoomMembersView/index.js | 2 +- app/views/RoomsListView/ServerDropdown.js | 2 +- app/views/RoomsListView/index.js | 2 +- app/views/SettingsView/index.js | 47 +- ios/Podfile.lock | 6 + .../react-native-cookies/RNCookieManagerIOS.h | 1 + .../react-native-cookies/RNCookieManagerIOS.h | 1 + .../react-native-cookies.podspec.json | 25 + ios/Pods/Manifest.lock | 6 + ios/Pods/Pods.xcodeproj/project.pbxproj | 19221 ++++++++-------- .../Pods-NotificationService.debug.xcconfig | 2 +- .../Pods-NotificationService.release.xcconfig | 2 +- ...ods-RocketChatRN-acknowledgements.markdown | 25 + .../Pods-RocketChatRN-acknowledgements.plist | 31 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 + ...s-ShareRocketChatRN-acknowledgements.plist | 31 + .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../react-native-cookies-dummy.m | 5 + .../react-native-cookies-prefix.pch | 12 + .../react-native-cookies.debug.xcconfig | 12 + .../react-native-cookies.release.xcconfig | 12 + package.json | 1 + yarn.lock | 7 + 37 files changed, 10010 insertions(+), 9552 deletions(-) create mode 120000 ios/Pods/Headers/Private/react-native-cookies/RNCookieManagerIOS.h create mode 120000 ios/Pods/Headers/Public/react-native-cookies/RNCookieManagerIOS.h create mode 100644 ios/Pods/Local Podspecs/react-native-cookies.podspec.json create mode 100644 ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.debug.xcconfig create mode 100644 ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.release.xcconfig diff --git a/app/containers/MessageActions/index.js b/app/containers/MessageActions/index.js index ff4c4dbf..0ce32bb7 100644 --- a/app/containers/MessageActions/index.js +++ b/app/containers/MessageActions/index.js @@ -268,7 +268,7 @@ const MessageActions = React.memo(forwardRef(({ const handleDelete = (message) => { showConfirmationAlert({ message: I18n.t('You_will_not_be_able_to_recover_this_message'), - callToAction: I18n.t('Delete'), + confirmationText: I18n.t('Delete'), onPress: async() => { try { logEvent(events.ROOM_MSG_ACTION_DELETE); diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 267a6a4d..50f2d2f6 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -131,6 +131,10 @@ export default { Channels: 'Channels', Chats: 'Chats', Call_already_ended: 'Call already ended!', + Clear_cookies_alert: 'Do you want to clear all cookies?', + Clear_cookies_desc: 'This action will clear all login cookies, allowing you to login into other accounts.', + Clear_cookies_yes: 'Yes, clear cookies', + Clear_cookies_no: 'No, keep cookies', Click_to_join: 'Click to Join!', Close: 'Close', Close_emoji_selector: 'Close emoji selector', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 0216ab84..e289f6ab 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -135,6 +135,10 @@ export default { Change_language_loading: 'Alterando idioma.', Call_already_ended: 'A chamada já terminou!', Clear_cache_loading: 'Limpando cache.', + Clear_cookies_alert: 'Você quer limpar seus cookies?', + Clear_cookies_desc: 'Esta ação limpará todos os cookies de login permitindo que você faça login em outras contas.', + Clear_cookies_yes: 'Sim, limpar cookies', + Clear_cookies_no: 'Não, manter cookies', Click_to_join: 'Clique para participar!', Close: 'Fechar', Close_emoji_selector: 'Fechar seletor de emojis', diff --git a/app/lib/database/model/User.js b/app/lib/database/model/User.js index 5535ef44..3d7a7cf2 100644 --- a/app/lib/database/model/User.js +++ b/app/lib/database/model/User.js @@ -18,5 +18,7 @@ export default class User extends Model { @field('statusText') statusText; + @field('login_email_password') loginEmailPassword; + @json('roles', sanitizer) roles; } diff --git a/app/lib/database/model/serversMigrations.js b/app/lib/database/model/serversMigrations.js index 86995e5c..0e26fb63 100644 --- a/app/lib/database/model/serversMigrations.js +++ b/app/lib/database/model/serversMigrations.js @@ -48,6 +48,17 @@ export default schemaMigrations({ ] }) ] + }, + { + toVersion: 7, + steps: [ + addColumns({ + table: 'users', + columns: [ + { name: 'login_email_password', type: 'boolean', isOptional: true } + ] + }) + ] } ] }); diff --git a/app/lib/database/schema/servers.js b/app/lib/database/schema/servers.js index 11c115ad..9ff0baaf 100644 --- a/app/lib/database/schema/servers.js +++ b/app/lib/database/schema/servers.js @@ -1,7 +1,7 @@ import { appSchema, tableSchema } from '@nozbe/watermelondb'; export default appSchema({ - version: 6, + version: 7, tables: [ tableSchema({ name: 'users', @@ -12,7 +12,8 @@ export default appSchema({ { name: 'language', type: 'string', isOptional: true }, { name: 'status', type: 'string', isOptional: true }, { name: 'statusText', type: 'string', isOptional: true }, - { name: 'roles', type: 'string', isOptional: true } + { name: 'roles', type: 'string', isOptional: true }, + { name: 'login_email_password', type: 'boolean', isOptional: true } ] }), tableSchema({ diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index d21398aa..64a5c2ca 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -348,10 +348,10 @@ const RocketChat = { return this.post('users.forgotPassword', { email }, false); }, - loginTOTP(params) { + loginTOTP(params, loginEmailPassword) { return new Promise(async(resolve, reject) => { try { - const result = await this.login(params); + const result = await this.login(params, loginEmailPassword); return resolve(result); } catch (e) { if (e.data?.error && (e.data.error === 'totp-required' || e.data.error === 'totp-invalid')) { @@ -390,7 +390,9 @@ const RocketChat = { }; } - return this.loginTOTP(params); + const loginEmailPassword = true; + + return this.loginTOTP(params, loginEmailPassword); }, async loginOAuthOrSso(params) { @@ -398,7 +400,7 @@ const RocketChat = { reduxStore.dispatch(loginRequest({ resume: result.token })); }, - async login(params) { + async login(params, loginEmailPassword) { const sdk = this.shareSDK || this.sdk; // RC 0.64.0 await sdk.login(params); @@ -414,7 +416,8 @@ const RocketChat = { customFields: result.me.customFields, statusLivechat: result.me.statusLivechat, emails: result.me.emails, - roles: result.me.roles + roles: result.me.roles, + loginEmailPassword }; return user; }, diff --git a/app/sagas/login.js b/app/sagas/login.js index 1b40c84b..f98a06e7 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -122,11 +122,13 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { language: user.language, status: user.status, statusText: user.statusText, - roles: user.roles + roles: user.roles, + loginEmailPassword: user.loginEmailPassword }; yield serversDB.action(async() => { try { const userRecord = await usersCollection.find(user.id); + u.loginEmailPassword = userRecord?.loginEmailPassword; await userRecord.update((record) => { record._raw = sanitizedRaw({ id: user.id, ...record._raw }, usersCollection.schema); Object.assign(record, u); diff --git a/app/utils/info.js b/app/utils/info.js index 8114ef2a..685b2f94 100644 --- a/app/utils/info.js +++ b/app/utils/info.js @@ -3,17 +3,20 @@ import I18n from '../i18n'; export const showErrorAlert = (message, title, onPress = () => {}) => Alert.alert(title, message, [{ text: 'OK', onPress }], { cancelable: true }); -export const showConfirmationAlert = ({ message, callToAction, onPress }) => ( +export const showConfirmationAlert = ({ + title, message, confirmationText, dismissText = I18n.t('Cancel'), onPress, onCancel +}) => ( Alert.alert( - I18n.t('Are_you_sure_question_mark'), + title || I18n.t('Are_you_sure_question_mark'), message, [ { - text: I18n.t('Cancel'), + text: dismissText, + onPress: onCancel, style: 'cancel' }, { - text: callToAction, + text: confirmationText, style: 'destructive', onPress } diff --git a/app/views/NewServerView.js b/app/views/NewServerView.js index 01ab944c..8ddebdd6 100644 --- a/app/views/NewServerView.js +++ b/app/views/NewServerView.js @@ -246,7 +246,7 @@ class NewServerView extends React.Component { handleRemove = () => { showConfirmationAlert({ message: I18n.t('You_will_unset_a_certificate_for_this_server'), - callToAction: I18n.t('Remove'), + confirmationText: I18n.t('Remove'), onPress: this.setState({ certificate: null }) // We not need delete file from DocumentPicker because it is a temp file }); } diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index 13070fb4..4d16e97b 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -471,7 +471,7 @@ class RoomActionsView extends React.Component { const { room: { rid } } = this.state; showConfirmationAlert({ message: I18n.t('Would_you_like_to_return_the_inquiry'), - callToAction: I18n.t('Yes'), + confirmationText: I18n.t('Yes'), onPress: async() => { try { await RocketChat.returnLivechat(rid); diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index cb6c7b7d..e7829dbd 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -153,7 +153,7 @@ class RoomMembersView extends React.Component { message: I18n.t(`The_user_${ userIsMuted ? 'will' : 'wont' }_be_able_to_type_in_roomName`, { roomName: RocketChat.getRoomTitle(room) }), - callToAction: I18n.t(userIsMuted ? 'Unmute' : 'Mute'), + confirmationText: I18n.t(userIsMuted ? 'Unmute' : 'Mute'), onPress: () => this.handleMute(user) }); } diff --git a/app/views/RoomsListView/ServerDropdown.js b/app/views/RoomsListView/ServerDropdown.js index 7eeda332..0f49cef8 100644 --- a/app/views/RoomsListView/ServerDropdown.js +++ b/app/views/RoomsListView/ServerDropdown.js @@ -170,7 +170,7 @@ class ServerDropdown extends Component { remove = server => showConfirmationAlert({ message: I18n.t('This_will_remove_all_data_from_this_server'), - callToAction: I18n.t('Delete'), + confirmationText: I18n.t('Delete'), onPress: async() => { this.close(); try { diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 17413540..8279c6ca 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -704,7 +704,7 @@ class RoomsListView extends React.Component { if (user?.statusLivechat !== 'available') { showConfirmationAlert({ message: I18n.t('Omnichannel_enable_alert'), - callToAction: I18n.t('Yes'), + confirmationText: I18n.t('Yes'), onPress: async() => { try { await RocketChat.changeLivechatStatus(); diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 5f14d09c..faea2598 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -6,6 +6,7 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import AsyncStorage from '@react-native-community/async-storage'; import FastImage from '@rocket.chat/react-native-fast-image'; +import CookieManager from '@react-native-community/cookies'; import { logout as logoutAction } from '../../actions/login'; import { selectServerRequest as selectServerRequestAction } from '../../actions/server'; @@ -39,7 +40,9 @@ import EventEmitter from '../../utils/events'; import { appStart as appStartAction, ROOT_LOADING } from '../../actions/app'; import { onReviewPress } from '../../utils/review'; import SafeAreaView from '../../containers/SafeAreaView'; +import database from '../../lib/database'; import { isFDroidBuild } from '../../constants/environment'; +import { getUserSelector } from '../../selectors/login'; const SectionSeparator = React.memo(({ theme }) => ( @@ -69,25 +72,54 @@ class SettingsView extends React.Component { static propTypes = { navigation: PropTypes.object, - server: PropTypes.object, + server: PropTypes.object, allowCrashReport: PropTypes.bool, toggleCrashReport: PropTypes.func, theme: PropTypes.string, isMasterDetail: PropTypes.bool, logout: PropTypes.func.isRequired, selectServerRequest: PropTypes.func, + user: PropTypes.shape({ + roles: PropTypes.array, + id: PropTypes.string + }), appStart: PropTypes.func } + checkCookiesAndLogout = async() => { + const { logout, user } = this.props; + const db = database.servers; + const usersCollection = db.collections.get('users'); + try { + const userRecord = await usersCollection.find(user.id); + if (!userRecord.loginEmailPassword) { + showConfirmationAlert({ + title: I18n.t('Clear_cookies_alert'), + message: I18n.t('Clear_cookies_desc'), + confirmationText: I18n.t('Clear_cookies_yes'), + dismissText: I18n.t('Clear_cookies_no'), + onPress: async() => { + await CookieManager.clearAll(true); + logout(); + }, + onCancel: () => { + logout(); + } + }); + } else { + logout(); + } + } catch { + // Do nothing: user not found + } + } + handleLogout = () => { logEvent(events.SE_LOG_OUT); showConfirmationAlert({ message: I18n.t('You_will_be_logged_out_of_this_application'), - callToAction: I18n.t('Logout'), - onPress: () => { - const { logout } = this.props; - logout(); - } + confirmationText: I18n.t('Logout'), + onPress: this.checkCookiesAndLogout }); } @@ -95,7 +127,7 @@ class SettingsView extends React.Component { logEvent(events.SE_CLEAR_LOCAL_SERVER_CACHE); showConfirmationAlert({ message: I18n.t('This_will_clear_all_your_offline_data'), - callToAction: I18n.t('Clear'), + confirmationText: I18n.t('Clear'), onPress: async() => { const { server: { server }, appStart, selectServerRequest @@ -377,6 +409,7 @@ class SettingsView extends React.Component { const mapStateToProps = state => ({ server: state.server, + user: getUserSelector(state), allowCrashReport: state.crashReport.allowCrashReport, isMasterDetail: state.app.isMasterDetail }); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index fdb932d5..396f8179 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -370,6 +370,8 @@ PODS: - React - react-native-cameraroll (4.0.0): - React + - react-native-cookies (4.0.0): + - React - react-native-document-picker (3.5.3): - React - react-native-jitsi-meet (2.1.1): @@ -589,6 +591,7 @@ DEPENDENCIES: - react-native-appearance (from `../node_modules/react-native-appearance`) - react-native-background-timer (from `../node_modules/react-native-background-timer`) - "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)" + - "react-native-cookies (from `../node_modules/@react-native-community/cookies`)" - react-native-document-picker (from `../node_modules/react-native-document-picker`) - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-mmkv-storage (from `../node_modules/react-native-mmkv-storage`) @@ -742,6 +745,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-background-timer" react-native-cameraroll: :path: "../node_modules/@react-native-community/cameraroll" + react-native-cookies: + :path: "../node_modules/@react-native-community/cookies" react-native-document-picker: :path: "../node_modules/react-native-document-picker" react-native-jitsi-meet: @@ -911,6 +916,7 @@ SPEC CHECKSUMS: react-native-appearance: 0f0e5fc2fcef70e03d48c8fe6b00b9158c2ba8aa react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4 react-native-cameraroll: ae0a7c0cc8462508855707ff623b1e789b692865 + react-native-cookies: d79e5015a5d3a38e08f5cb39c4948532be7e9c2b react-native-document-picker: 825552b827012282baf4b7cbf119d3b37a280c90 react-native-jitsi-meet: f89bcb2cfbd5b15403b9c40738036c4f1af45d05 react-native-mmkv-storage: 48729fe90e850ef2fdc9d3714b7030c7c51d82b0 diff --git a/ios/Pods/Headers/Private/react-native-cookies/RNCookieManagerIOS.h b/ios/Pods/Headers/Private/react-native-cookies/RNCookieManagerIOS.h new file mode 120000 index 00000000..336944fb --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-cookies/RNCookieManagerIOS.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/cookies/ios/RNCookieManagerIOS/RNCookieManagerIOS.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-cookies/RNCookieManagerIOS.h b/ios/Pods/Headers/Public/react-native-cookies/RNCookieManagerIOS.h new file mode 120000 index 00000000..336944fb --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-cookies/RNCookieManagerIOS.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/cookies/ios/RNCookieManagerIOS/RNCookieManagerIOS.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-cookies.podspec.json b/ios/Pods/Local Podspecs/react-native-cookies.podspec.json new file mode 100644 index 00000000..9d1b7d76 --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-cookies.podspec.json @@ -0,0 +1,25 @@ +{ + "name": "react-native-cookies", + "version": "4.0.0", + "summary": "Cookie Manager for React Native", + "homepage": "https://github.com/react-native-community/cookies#readme", + "license": "MIT", + "authors": { + "Jason Safaiyeh": "safaiyeh@protonmail.com" + }, + "source": { + "git": "git@github.com:react-native-community/cookies.git", + "tag": "v4.0.0" + }, + "requires_arc": true, + "platforms": { + "ios": "7.0" + }, + "preserve_paths": "*.framework", + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index fdb932d5..396f8179 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -370,6 +370,8 @@ PODS: - React - react-native-cameraroll (4.0.0): - React + - react-native-cookies (4.0.0): + - React - react-native-document-picker (3.5.3): - React - react-native-jitsi-meet (2.1.1): @@ -589,6 +591,7 @@ DEPENDENCIES: - react-native-appearance (from `../node_modules/react-native-appearance`) - react-native-background-timer (from `../node_modules/react-native-background-timer`) - "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)" + - "react-native-cookies (from `../node_modules/@react-native-community/cookies`)" - react-native-document-picker (from `../node_modules/react-native-document-picker`) - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-mmkv-storage (from `../node_modules/react-native-mmkv-storage`) @@ -742,6 +745,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-background-timer" react-native-cameraroll: :path: "../node_modules/@react-native-community/cameraroll" + react-native-cookies: + :path: "../node_modules/@react-native-community/cookies" react-native-document-picker: :path: "../node_modules/react-native-document-picker" react-native-jitsi-meet: @@ -911,6 +916,7 @@ SPEC CHECKSUMS: react-native-appearance: 0f0e5fc2fcef70e03d48c8fe6b00b9158c2ba8aa react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4 react-native-cameraroll: ae0a7c0cc8462508855707ff623b1e789b692865 + react-native-cookies: d79e5015a5d3a38e08f5cb39c4948532be7e9c2b react-native-document-picker: 825552b827012282baf4b7cbf119d3b37a280c90 react-native-jitsi-meet: f89bcb2cfbd5b15403b9c40738036c4f1af45d05 react-native-mmkv-storage: 48729fe90e850ef2fdc9d3714b7030c7c51d82b0 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 8bf8d989..07b30765 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -220,97 +220,98 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EE8BD9D121CD7DCB1FF164E88971D6 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 20953006648FCA7D3E6AB8BFB0E02E4A /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = E0EA818B7CF9967D76BDBDD74940564E /* BugsnagCrashReport.m */; }; - 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D80AE373FC2798EA3AE13E79AEDFCDB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C886AE4138A4F9CDAB06A835C9FA12C /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DB85926F66B2A4873EFE09F0DECAF9 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B6EB01D6DFD25955838BD7A81BD27 /* UMNativeModulesProxy.m */; }; + 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */; }; + 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 284D0BD80F7C7263935C9B333C8C7128 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEDFF0CE53E9D577F3D7A453DD6D566 /* Flipper-dummy.m */; }; - 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 91A57ED6E8D884ADC9A6BF08290E518C /* BugsnagMetaData.m */; }; + 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DF6DD654C7B0A5974A812BDF1651F8 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C8CCEED996EDD1C840C18ABDB43B3FE2 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6915F0E2EB304BA1935966DC0A4CC28 /* SDImageIOCoder.m */; }; - 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BF89BDA1ACC3195F40CCFF436CAAED /* RNImageCropPicker-dummy.m */; }; + 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 21F3594DFCA45CA204AC184CC6A1914B /* README.md */; }; - 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 19AFB95A91D3FDCF31AEF6218AC259E7 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E61516147E350A335181DADF7D69B54 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 015407F52047D4BB0CD74C289D230C37 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 084E16E8ADA877574CEFCADB0A2E393C /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDD396784B06D41218C1A68D7B420A3C /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = B5748CB2AAAB927F22B385581467F17F /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6057CB753D22B49D3B6D49899E4819EF /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01CD4E5B223049012C390E0A9D903D47 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E30BCF4DA423CAEDE6ED4073EF2A63 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 106165C45E0317EB7ABC82DD367CB99A /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF71B9C09ABC64B0D9A46BCE4FA0278 /* BugsnagCollections.m */; }; - 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C6300E881728F8CF35D40641CCBEE3B /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */; }; + 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F31F3B4D718BB4FFF5B66BD7227845CE /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C8C64BF31A681D4543C73482131964B /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0226A47450E4759F2CAEFA6307E1F0AA /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60AE6989A5796CB59E49FB60BA6975D2 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 591D5CE70F0224E56390E436F0C0F733 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 812A96082CF253DD45C204A145030104 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2583B5136BA9F9BDB0FA0CBB20BDCC76 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0299350CB081F499B3F68F98995EB87B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CADD08B73E2965179229D42D64F18DB /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6119BA2FD711FFDFE0A1E52C6BC3CCA1 /* 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"; }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7254E18DE87EA152AF8F9300DF7C38AC /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD988D67BB23F05086B6AE2FA5B32E9 /* 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"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5B1C9755B9FD9C7BB41BFEE70F6DAC /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1F43611A98AD82B4CBB574250B56D5 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2E2C86F58A2C06A7A53CD7A30C6172 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6219D0009BCF31A711488F8CDC5076D0 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 033521D8D361BD79929F1C97CF0F357F /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D211109B139C4F112758357ACA1723A /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CF77E3065652047D6A490602EBF425C /* BugsnagReactNative-dummy.m */; }; + 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CC0FF8649FB8EAD461676E8C9E66EA /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D183125734277AC9BDA2F5AB4AC29A24 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E764AFAAF641A4FE37695C79504E5759 /* SDDiskCache.m */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F66D2702499EC09BD8569800380308 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 48700365D910E7342D98964C607737A0 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 637D8D1046415EBB7A82B18D024458D0 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DFEF596FEB2963925123BB9BCB943EDA /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = CE1B1D122BC33C2979EF3AD8FF9B2C6E /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 78958D1821C95F3354BE422BC63B8D57 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 30280E5221530CEAB4B03E7F25862BD4 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43861D198567296F1D650D6805EE04 /* REAAllTransitions.m */; }; + 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */; }; + 0460C7FECB81F811BEB1818BA224D99A /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04719857696529B56B628EEB24832846 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC456DA880CCB4C69A228EC88B34D5E /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0494039227D103B7AAC3831F672658FA /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB1783AAD2EB476B425C7E30DCF5B5C /* FIRCLSHandler.m */; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 992F321CB4568B26B5C1CF22009BF270 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049AAF4CC8018611586F09D6C80F8257 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 56A05E6E745281FC8E38CEF381D72BA5 /* FIRCLSReportUploader.m */; }; - 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0871E83AF52711F4AD1D7EC9A4AB3A4C /* React-RCTBlob-dummy.m */; }; + 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */; }; 04A740155830EC1680E2A670DA44A6DB /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A29F8028A89602700407D094ED630714 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6DC7A56F46C2112721188E13D736639 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D2C5934A468F8D6EDB7AE6D0EDF05B /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B447D3BD54E8181F21506C099D8894 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 04087178A8AEEDAEB563FA17125B9FE9 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A21FADACE1F2797514A803DA0320BD79 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0523D1360C55FFDE017637629B3FCAF9 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5492EE69D6815A8CC646ED50CC3904 /* 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"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 581A57A5C014FB5079350A89F7FCFF0A /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 12797FC69B985D90312EDCE7ECAB876E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B13463CE34BBCB8B266C1D76A2696ADC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9147902687EC685DC7A0853698C3F430 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9AC738BFCE6F9FB9C927423AC662D8B /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 05994EDE667F3671AAEA30F159E2DECC /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A27549C6E0EC15515609E01AFCE7938C /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CA1F65AB048F7CF75E75CFBA0FE1BB /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ADF26B88AB64806E1798B085254B958 /* ARTRadialGradient.m */; }; + 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE7DEE152750D82905E5832F1204F44 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A830A63EB2E8514AC5D3C09FE3CCDCB7 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEEE13E5F6B5E2C02CD4F4BA783D628 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B2893702A7AE0EE6CE82C97E8B04B27 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A966C2CDD7579B225F47BC2239EB02F /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF23AA1A985FE7AA0EA26D6310EF410 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C7EF17E92FE2D4B046659B2C319AE8 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5FF0E2960DD887E13264A53C9E651B /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0647B334661340B8A9F52EABF062C3EB /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 029CD850ACBBD3E4731687B582DC3129 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADD6EEC74318B8FC73905C199941380 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0671A194118212DB483A5FD27359EB7F /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D7EF236CE7D5CE2A1C72FF683F2061C /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7240003015AD6D0B4C11205B6C845F /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA481B9ADC7761E5D17F53B727F5616 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A82CDB88107436DD2D192B9F33EB9FB /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06A772C7BFB80B6E55DF65040D74E8A4 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DDBFA43E5FEA69E2EE892A2AE4B33AF /* FIRStackFrame.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1937A7452A3C0AC9EDC3543CCD8F6484 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7916C36E951F7C1C6CABEC68000A34F3 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 91DBC6A1E416E2CFD76FA9F6A6C67DD0 /* de.lproj */; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 42817937F1E875A7A8871155D62D0947 /* de.lproj */; }; 0720A634389F76C008A98F1F46D26EF9 /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = FF958E28492C2570BC0408228DC7BC00 /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D516947EFE99A8E6D7374748A59FEC /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2284E5DA42D24A8ABC297F049439F808 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 075E4EEBCB43B2419651CE229A433CF2 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC8611EA20C4E9E9125A4EB162777B5 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 075F9805B68154AF1104DF613BE6F9D9 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A4062230649EB3CAC5B2271CDFEFD865 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -318,61 +319,61 @@ 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C41ED7C5AC74BCF1865059403971088 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBEEEEE744AD9DCD6162B1C52F82FDB2 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18A13DCC135781C94C0CF101CD05E3F3 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B5464E016C06A4508A341FB839654EC5 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FEDD1BC76F5318F87A8A9A5E3782606E /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07529568832E5F59795ECB0DCC40DFDA /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 37EA124FCA0ED645EE4CD92EEA1BD069 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = EADD707806ED13D6903BA0F5D24DBCD2 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0836D50C23B6C79A014622260B9EFA1C /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3DD2346D2A8EC698CFE0B7382E1E3C /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 267CB5D5CC6EEB55D13D01B7E6864A1B /* SDWebImageCacheSerializer.m */; }; - 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1EBC0B183795115E28663C823648369 /* React-CoreModules-dummy.m */; }; + 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F67AB790E6701A850EF3960C5E1CDD /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3267DF92F2D0C054BF37F2705566C /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0894285A268123E4663539350F7BECCE /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 722EBAC60CB81A25403068B5AA96488F /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08B0382FA655BC8A478519E647F57BC9 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B97EA2F8977F3CEAF07603545096EF /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8BFAABE911D0257D142DF57EFBB406 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; 092C950C1019A899132F1EC1C1973824 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0CC6987EC71C4BA637274C9ECABE2A /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7E34DF6B49E2A767E056271CAADC831C /* es.lproj */; }; - 095F243E283FACA2F1B0A12BC5B75D11 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = 5064FC9D762EC64CC35AEA5F824F6B06 /* contents.xcworkspacedata */; }; - 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F974DFE549E05ED2EA2BC451ED73D222 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BDF605201112541ED81426885684670B /* es.lproj */; }; + 095F243E283FACA2F1B0A12BC5B75D11 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */; }; + 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FDD40201F0C41EE6AEFC14203F65DE8 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF4D481885ECC4328D5D6CEB1D010E6 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFC77F4A5A209D32104BFFA64ECA5D1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D6227F545FD087DA36FB43B07B8100C /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52B0111728A81A7F015E84FA28C08909 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0A109664C716840070D6862DC4ED5845 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12CDF115C8E984969B1745E1B99C5D5E /* glog-dummy.m */; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A4D4864EFF83C585A5F6649A04C15C12 /* ARTTextManager.m */; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D54CD2B7E9D3D2968B6808528891D0 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDBEAC98C62EB4400B7F64634450AA4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A454CAB13E4FEC1DF54BE5ABE8D173A /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8982A7DC531ADA3AEE86AC93C775649D /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 9137DE80A4B6278CE8314E0665C508FC /* BugsnagSessionTrackingPayload.m */; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF85799A90CD0293E64FAF057EEF5B7 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BE21B6BFACFEA6E6A2689D9EDFCFA4 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E97F53C6598883B1C6699D8D00924794 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0AAB1B87F449356F2FFC7DA7EE5D381F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 22543CFC8553BDC4AC26E293C01A5569 /* da-DK.lproj */; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 3765694BD8A7931EF9AA151B8BFFB135 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AD1DA52CE1FEB97B05BA9D8CB63C1B6 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = E904FB44E0F60263FFEEF3F0CAABEB07 /* GDTCORClock.m */; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 797B76318FBB9F8DCF996160D4C79A6C /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B28BAE0A1B8550D2DE2D68527158680 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A3D1A76F4A5CF45A49B858F6A0DF324 /* FIRCLSCrashedMarkerFile.c */; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA876504656FABC90F13B3308000FC0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B3B883A30022727522781E6FFE17758 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8EC24129B4FA709297C0376D4F3DB49C /* fi.lproj */; }; - 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3925EEC2D7C61026533E0154C4D7D572 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 696159D6CC4669CD010CD022345B21F8 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 783F492CB119986B44C6D820A0E8A4F9 /* BSG_KSCrashSentry_MachException.c */; }; + 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8D6BF68006D1D9BE7E063B4872D84B /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 0B9E2306C3BE47E02155DE8E960D6B32 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E99880D429EB1D95CA9C9481A7723A /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA0EF3446FDDC7C7A7A5106D12014C3 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0BA4F97CB6DECFE49F6A541777FF8519 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 774A3866A31D76FF0046D1135E862EED /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA35140A87FA2AF61FBA6763B8A3B3B /* EXAppleAuthentication.m */; }; + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */; }; 0C422C71ADB99EA5FF5E5CA56F042C62 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DE6DCB5CB77FF2318201E0DF4BA34F /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3588C1837DCE8B57766EF26179A0C7C1 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C5F5CE1AA1ADA700992ACE372336053 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = EC658CB13F117CB132ED545C56448294 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CC9A6A17727216556B0AEF0E6F9FD71 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 206620D07945C79E7CC4286575682243 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C3338AD03FDE32FDBEF73D073DD11DEF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F410FF0BB5E0374104F6E01F589707E1 /* SDImageCoderHelper.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC4454EFBF16CBF99EB76DBADF5AC6F /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 81766F98093BA351E98CB69984609C69 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = B08F408CCA7E09F164029244AF013E1F /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F5ADCE45257284099E6DEC502C5FCBFD /* RNFBSharedUtils.m */; }; + 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 465882AA71039061DF7EAF94045B05B5 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DCD335B1EC7E097FA1E6D89B16A4A24 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = E685501A18B691A78AE63802778A8DC4 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 0DDEA131FBC532835F8E259FD7654AD2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A3E8E3FFC84CC4831A5883942616F125 /* en.lproj */; }; @@ -380,10 +381,10 @@ 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37EC3FDE845C5437D57F971031211C33 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0E103FDA6751439951C099EB863C4E9C /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5765AAB98C6396F70703386F034304A8 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = A64B9EBCFC5B834095183ABF0C4B1D6E /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 26820C24813B74EC02F3E78390E76315 /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A6D710792A77CDAA54EC7C75C1668B /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E218A685D54E67E63B15EE57AF9B96C /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F9643D2F853CD41A855F0FDCB49280 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D7CDB907FAA70C5E5D76AFD49DF8E7 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E44162EAE5447439FEBD9619932914D /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5B0DC5A3DB374E8AECD4DEE739D781 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B2D0E582086F68A8B110AE777A2DE5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DF756AD67125EB16F06106BF5E7483 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -391,81 +392,81 @@ 0EA0900779E7C8425C830DB6CAAD784A /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FC7CB00AEB28FEBFD5D8AFC620F9F0 /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EA52076C94A2F4EBDAE61FF2D24E451 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8F9DFC3E9F233FD5B82DA468FFE387 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EAE708844B871B5D9FCE1F1F5243BDF /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BB69159A9E7534B5DC700DC21108F8F8 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F16E7ADC4C026ADE02A4F59231C14F8 /* QBAlbumsViewController.m */; }; + 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */; }; 0F04757773EB94AFA230379602288218 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE831D13D49F2CD1A4D84E28E855FCA /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C10FF1C8CA51216269475E4076D75 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DD73F23E8E47F3810615C46B94DF58 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC7FC17AB389D472D0513E74ED376054 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = B901F19FEF43BC84CE222EC37A41FA3E /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E05FCFBEC97296860E5891BC985B8BE9 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0F5BC7FB75842C4DF7D6CAA2276D412C /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 204BF9F230931D6B8A99E4488DD5A2C0 /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AACD3FBB555A4A9D3B69E444327A4B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F77D37E6759126835EF8EBD3D566FB6 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 26CA0968F6DB5D4F3978C98664823F04 /* FIRDependency.m */; }; 0F96B9773F1A3A400AF5F4BE07F633F8 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9A405F82D82FA8A50DE20C1F529C0E82 /* ms.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5262A96869073E1B25783F9E6FCE1685 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F98158F902E7F94336F3562407C8BB /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB2B3CA01250FB7926FCCAE2B028D75 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5FC4247F0BB39E819B3CA773180AA /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B097595BCE54A13A315BF6390808171 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE20EBF34F908C0A8BAEE151FE31368 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBC2D81BD34067AA7ACBEEEF55C8EB6 /* FIRCLSOnboardingOperation.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B38E379A16354B1527B0C98E5DB7B2E3 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = A52DED6EABDCA6B67A0AC1036133D298 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8422E787FE9A4E8B91AA77749C6C08 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A2B137CF8290FD43E9A9552820EA2F1F /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6656F58967C010370695EDFC5C939AFA /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BFB8CE2985921B4231D11015731350 /* React-jsinspector-dummy.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCCC178323BEB8B5FBB40FAC84D7E80 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFAEF5638AA5214DE537E972803CB0A /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10F42CB440BAE106EBDDC8B9823FA2FF /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = FD92AE5268A7E9BFFCD0B589DA132519 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9BF74DA58AB4B8C2F083D4E9F01F56 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9AF1361A986ACE87D792E1F1853DFBD /* Yoga-dummy.m */; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9DB9B33169804F44FB8B9867315459 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CEDFB8123EB6971DBDD6FB633B151B0 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC050E57AE90094F1AA4D333891B6B4 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAEC3E15B35CB17E97232B53F3FD5B4 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF3B2AD497316A495A9B1133DF766F4 /* BSG_RFC3339DateTool.m */; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBEF8C2CCA558C1AA7C747627D492A6 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D82B8FB337C61F8A6F0723377FDABA44 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 119EA7D5009DCF867F066ABA035BD82A /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BBF5ED6E7690FA18D4B7A816F99EA92 /* FirebaseCoreDiagnostics-dummy.m */; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 60CAB32A34B8454CE801473BB49046D2 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11C1F06E5DAC4DB374846E51300D5020 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF4907F0B1E21B74D2FBCBA5A4FBDB7 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 130AD96653DFB0B85D96782F91BE1413 /* SDImageCache.m */; }; 11D6807CF168126D40A15178C9E04FCD /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C9337079C479AAA349F5708DD01725 /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 906166F8F6237D4A6C79C75455EC449A /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 12464BBD06FDEF5F9162798A1EC56544 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEC4C534A6D3D670A75EBA4EDD819D6 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC14891B5FD7522C15ABA97701A22043 /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4850C151CD224548F62146DCD1C8CC /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C236D982E19542DB9B9900D5B138F /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = E06DD6CA85AA045EF82D4CC12E425AAC /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8840248FA393A26F5DDAB7D0B2FB3635 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F65FB03B85510F0B6531AF44EE9976 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92EE95B93364400F2FC3510053427587 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A294E318618A97FF297AE1D68EB73C1A /* SDWebImageDownloaderDecryptor.m */; }; - 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A7BD13E3626B368D600C550A048FF4F /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 132446A286BF65E4A71E3B8B41D13299 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = A6307680F6EC7F7048B72294B68290E0 /* FIRCLSCodeMapping.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B34CF81E97EE6356F87B13D2F7D9C67 /* SDImageAPNGCoder.m */; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3DB85865D79F4A726C43AAF5A91103 /* SDWeakProxy.m */; }; 138BB5EE73A73F506971CFAF6C344BD9 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A919D11DDD00D385BEF1F93B4617E820 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D45C9B339C3901B3AA0E27B74381F0C /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF55FF0DE5C7727BD4B69263E69875E0 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 141304222E862C8824241BED6D8D4341 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD73B37A1B1D19DFA67134D35AB9518 /* 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"; }; }; - 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E4825A9FF053375A1A1311B9F07F11B2 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 54418F66A8596E74D65814550846C0C0 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5203742332341C0090DE075D3F7A6699 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = B465936D467BDA0138F2F1E491FA9478 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 662665FE9F09E2A8AB99BADB2B35EF08 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 937253B4856F1DE53A7FD910DA71B5FE /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BF08A5A72A796E0D7578924045CF8A3B /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC6AEC8EF1DF26E4985963D7A898F3CF /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A23C92A017240FF7D7732EF5965310 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7E52F36B031DE941983559CDB42F562 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A2ABDB1E2A4ABB4C6D29042FA3186B /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2347BCCA21DAA5052BA753E0EFDF4E /* FBLPromise+Always.m */; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 768E2C7B161AE5447DF5BE0DF31527DD /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A9C9610BD8C7330ECA0BA0F7847340 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 45285BDC1BE6A2B4446854BEBD3F9B64 /* GDTCCTCompressionHelper.m */; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 144101C0AEEEB344D88EA4FEE7E49167 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD396C56ADD49C2490D8B950A3BBEB7B /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = E629269C56160A63C9FDB64C83F087F9 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 671699EF7F9403ACBBC723CCAB1F01AB /* ARTLinearGradient.m */; }; - 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F5D2B9D9020F8F195D9275074CA98D /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */; }; + 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1545F3BAB2FDEE69BA16660BB26F0F86 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BBB2B4EF78325EA09088754BC73C97 /* TOCropOverlayView.m */; }; 154E9DA70771C2E787FB4A467761F308 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = A3090845172D72D4D19ECD5800982FA9 /* FBLPromise+Async.m */; }; 15606F80BC53DF8E81548C3DCB0107FA /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DA82FF7F1C63B1FD40CB5EF1745FAF /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -476,79 +477,79 @@ 15CBDB6170625FC29B5013BB2F3898E1 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC5033AF0CAFB17D2BD347A0CD9E3BA /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 566D950549D6BD2E8E75319C81486A88 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = EA9468C11766D5C3D4163A788CF50BA3 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D76541F0D3782A99778EE6EF0B51FE2E /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 161A3959A3DB59623C050A727C8E8C81 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BC65CAE7875248D14C21132FFC785A51 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17E9E0B6C3740B4B51812D7D83B84C50 /* React-RCTSettings-dummy.m */; }; - 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 75D76880A73AB23E0BE5F072C04A8479 /* BSGConnectivity.m */; }; - 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC113C0EF7B82E21A0472CC6E26E39E /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C520CA3686165532684A995B2A1558E /* RNPushKit.m */; }; + 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */; }; + 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */; }; + 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */; }; 166362512425813E6A6B7A462CE14ACB /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9242EEAF4956D0A3E9005B662766EC /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 9698A308246F9C475EFC0CF7FA7A64DD /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA86E4662B26C8A93FA761E0A51269B /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4123590FC530BF1BD285D9CC3CE36F /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 106A0E6452DBB4A050E3FCA45B2B8607 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F8D5D48816144BB5C020B3B6E4E980 /* RNFBAnalyticsModule.m */; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0876550D02B6C214CCCD1558AAB6CC4E /* ARTNodeManager.m */; }; - 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 24878E3C9339288309F57E390D19000B /* RCTConvert+FIROptions.m */; }; + 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */; }; + 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 8177E6FFA8F27C56F779F481512EBDDC /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 079CF9E09E497914994BBDAC32B6D206 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173358C1C847A9165F7F5A72CFD85594 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A01E18194F6EA7B8074FF79ADEFA5DC /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 409A77FBCA194CDF50804A2106A459DB /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 729C5AB3CD55EDFDEBC0668A0EAF2A69 /* REAClockNodes.m */; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 343EA6117AFE0D52C41B73F2E515E0D0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 175CFCD017C7B7EF1E598452DA8878C5 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2147009ACA77C71C0042CE90F8F9FC1D /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08B2539D097083E48F2C410B5C60D66 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DF021651DF127193BEA6500A9FB246 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C148DD9C760727E79E0E7E047ECBAB /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 47399E8B0D6F2C448463580DCD3137AA /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13725C86D54BD76DD9A314DC2FBD6880 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E9107ABDF1DFBB3B3DC9EDDA6574E9 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = D1B8283114C77400CDCD5F8AB179FBF1 /* RNCSafeAreaViewEdges.m */; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 828CE730DE4AC8F4E0336163B9D629F6 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = AFD41F4608390751ACB6E396AFFA0C5E /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7429D080F7516AB8424004612D84AF03 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 807B40C47C86B2CD10A78565F4FA9D18 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2F229DBE2500EC6C68ED6457D17C63 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 08EA9141A6D54736E7B379B028D0DE13 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3A5E967B851BD1E149E3A89F148124 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18EC058224BD741E7A2C93D0450326EE /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D230534FF22D171D1F2799C5C38FB0 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; 190C1CF14FE6C07E6E1D21C2C59D2F0B /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = FBCDC1026DD47968B433DA0A23D88E06 /* FIRCLSInternalLogging.c */; }; - 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D52267A3623C31952EB1951D4E20A0 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193D84D554E98E93C8D2745AF8BF6517 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCB3FA778FA021CE5A437ED92273D4F /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193ED99B119DFEA6FDAD04AEBB176FD6 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 7656942892C161E23A868FBD6692B259 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 58703E196236054882BB78506DE68BA3 /* EXSessionDownloadTaskDelegate.m */; }; + 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 007A425D647F56FBFE1500110E23D2C8 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19793D450FF05EC41C93F7691BD25ADA /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 108B8A013394A4B9DF6805473D14F6D6 /* FBLPromise+Recover.m */; }; 19797D078D86653C59105544484571FF /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A052BB92C70494B7D1908A0A3CEF50 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FF482A8A3F534C5AFE2BE09662E9AC /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71378FC31CB3A783DEA54030CD8E8714 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4940DDDF644EF093529DDFB834F409BE /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 642508DC22DE2C9EEA86FE4D8EE7D2E5 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFCBD3C5BCD71E59B7DF221F564EFC0 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6940223D4FD5D810BCA608690CBBCC /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 53603E349ED12173875E797E6F2F58C8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F0BDAD9EFE406337A2721013B9C95D8 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A3FDE33AD424E36E91196E972FCC4CF /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A255BBF778461528CAAFA14B8CE397B7 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A54A0855A3968A2DF2C0220B9C13AEA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA398306081AC5A2ED74D71C88E5137E /* 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"; }; }; - 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8460F27B31D8F9AE5110D70F179BDF /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B0A197C3C8AC135C935555AD09ADEFC4 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D20C2A57F14F1DEC06D61AB7C64CD4 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE76409F8E09674460079D1762B5D5F /* RCTTextShadowView.m */; }; + 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */; }; 1AA7D50D366D8F1B3C58F9727B5C8899 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAE339C1344DA746DDEC8CFD59BF5AC /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B3F1BE731E11F46959700EBAF6D731F /* EXLocalAuthentication.m */; }; - 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 117CD2973C445BB0B8A315C237CE2B92 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */; }; + 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B06F771B3D386F7800CEFE0F97D93FE /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9451B5759186B2FEFC890E00B66CF3 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E2145A2F41EDC5234E880BB745F19CD2 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE6DEF4CBEF1CE244437B0BD7A057AB /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF53F120C9636363D6E1DF805BA4847 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8483327F317432240A3BF797E981260 /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E1731084B4625473B52CDDD4F4CE46 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = D114B20FEA715F1C042240C758D782F5 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5330812D0A621BACD7B7D952A9E42A82 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B8279E9093EA1C7681DD1E317170B84 /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F012AC6EB22C8B61B124E148E58C29 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B8279E9093EA1C7681DD1E317170B84 /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B83D9440594BDBD1CB4CB3D88411B49 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373838BA43BFCEFAE7F39B409FCC7B47 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = A0631A98F512BEC52F1420E9EBD81DE4 /* RNFBJSON.m */; }; - 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8089CC8AC382F32DD4884D9040CF95 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */; }; + 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = D04A3AACF957C27FB577ECD76C38CE54 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 6504583D3024841C61E23BDA84AB9350 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7461E1C5F7F18D5FF46A3B67FCAB4D49 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -557,40 +558,39 @@ 1BFDD5217348D3483D5A90BCB6167286 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D33C02CF7A42B6C80F082B242AAE211C /* FIRCLSApplicationIdentifierModel.m */; }; 1C09880186DEAD1A272B1DEDF6329BD6 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CB53B86345A65DA0B11B0E880B6E2402 /* FIRInstallationsIIDTokenStore.m */; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = BB34EEE87843613C0628DC3E43C08DB2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45F51FDA868E69F187D9FC22232C3AB2 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B76DDEB4FBB4CA8EE7DB029F225EBBB7 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 1C75E58E5C7129F8CA3F013D567B692A /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E73AA114C896C43757A92D69236139A6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 077BD30C8E48BD860BD0650D25B4E864 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 1CCCDD7A8C6DACEB755AA8EC3AFF7993 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 62FF8DB2CA6E62BC91939C2346AD6B3E /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3DC3601D78D546A2B55CBD7402F0DBC /* ARTShapeManager.m */; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A256F2A26CB704BCD26F3511781A2DC1 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2BE94CEE4DD622DE3A79995DCBB38F80 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 1D15487C39676A373FC9FB8D7C995044 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE8411D003E03C0CF5E8DF1584C5C6AA /* SysUio.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"; }; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 56654F409553C3328B0163C2CCE56603 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF83A7377D693CE9E2B1BBCD4B15792 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D74DE102578CB79908C6B2FC695F3A6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8B2D26280BC86F63522EC0DBB03402 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4496D628C42AAE64D6CBB4BD2768AC /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F254117AE8A15EB507407D054BB90FAC /* EXSessionTaskDelegate.m */; }; - 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CB2BE534C19818CB0A63C474D4387768 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DD2BD9DEBECE1EF526F3C7FF977420C /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 72AC987B22B100B64312A2C13B98D22D /* RCTConvert+REATransition.m */; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */; }; + 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */; }; 1E05E99EE9FA5209A77F929663F8F7DE /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DA753AED7C14FFECBA73E9633D3E3BE3 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = FD83C1873BD8F5D53DBFE09D7C3AC8ED /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B678A2A5D006AEFD812E41736A0304D /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E3E616BD3354F1140C54F1B3E1D86B4 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 690F5784C704DF287B139A9D7C750AAF /* FBLPromise.m */; }; - 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91492957304F8FA228CBFB465E72DA95 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A03CDE512E790DB004FCB666261C690 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = AA6CC12CAB9F7D42AFFE5C260CE9D327 /* RNSScreenContainer.m */; }; + 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */; }; 1EA610E2CE028C7D7BD44F97390E83FD /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = F4676669FD13B7DAB22D0BFFD5491780 /* FBLPromiseError.m */; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 455647DA819AB2181BB6A6A53BEA523B /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A9F6A0C599D88CCE1E7E2D2C89F9104 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C5D5D0AF088A21F9F2904F7B342996 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FFC802CC85DA133D6F76AC932F2850 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F0B02F6CDCBAB83EEFD828AF8D23080 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = CC481CE3D25D4BEA14F4E859A51331BC /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2A398640E810C90476C833CE69A5FC /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9D19849DA0037346A7C2448CD8E052 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4DD47425531889D3309EDF0D15B61B /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 37919E73B926421805715FA31167842E /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBE2C17455A54B13BAB477FD7BB7E2F /* RNNotificationEventHandler.m */; }; + 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */; }; 1FB37A68C4E694C7BB73CC258ECF1F61 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7455879FAED5208B13E584DB0167E954 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 801375BE59492F7CC0A17EE8309DD8C5 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CB0228004BDF55526EF77A96B5DE9C1 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -598,7 +598,7 @@ 200694A4A09DC94362D0B0D12BD4E506 /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64EECB2E8D7EA9669FFFE237B49A3C8 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 2012AB3040CD09E593FE95CA831A1968 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 23057612E2F96F6EA0C08460935202EF /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 207E203D4A0B00504A657AB0917BF71A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 965A9B1B192D2C5521B1E99C0A146FD8 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FAB21A7F60383460ED6C9AD9B679CB /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 20A96CD27D1F65CC277E1D31F919EA44 /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928018B1902ED19163ED0D46E0B78B /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C9D446945ECE405FCF08C06E01CAC6 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20ADF4E535F2FBBC3732C70F1917A1F8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 048103DFC8DAADF4924EEF0E3ACB98B3 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -607,36 +607,37 @@ 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA79E16FC807C133EC7583550C66FAE /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20EB0C959555CA07BD6B61CDDBE11D45 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D77FCCC3D68CE58388AE633913FFA2E /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0C2324472838D2CD186B6034CDB790 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD51AE634C3CA1DDEEAF9944C84FB624 /* RNCMaskedView.m */; }; - 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDBECF15C17BE448A73D31A46C107F7 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = C2E94BB6C228FAFB282EACC9F2ADBFAA /* QBCheckmarkView.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */; }; + 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */; }; 216E9A9FA4AE8BBDB6045325BFDFE318 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A4F25F2D7AFB57D03250BEB9D49F7F /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BCC72616908960A33555F8E2312615D /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF13A52C1805CF080B23ED25D66F46A /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 467C50CC3B7F61CC7FAE84F15E130419 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218C2CD18BC01A0818F35F5E5C5D1DBD /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 262E9C9B6F4347B5DD35E88568FD8D34 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D9920642743684FA0B5BC3C4A9192B25 /* REANodesManager.m */; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */; }; 21CAFEA5CBFCD0604628CA55C0FF3B55 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D828C290E303B1B3631F72A9FB86CD /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CBE4B35B932B5B32DE48A6B3EAE8C5A /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21D99EA5E9B43F6B82DAC00D69D4CA36 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D6234CA033ABFD8DB0D4C4A979F1E9B /* 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"; }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 948B0D78654C4D4224E35DF17A8D7165 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21E3C4C434839DD4C6B1409CA7BAD0D1 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 518BA055FC9DE3C34EFB047C599F309C /* SecureStorage.m */; }; - 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 544E1C89B5009A76214C371D6EB4772C /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E3C4C434839DD4C6B1409CA7BAD0D1 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */; }; + 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A674432C94F3EE2ECEEA35BD0DB182 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 858251DCD9E3940CBA8A7A4311DC088F /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2245EF4DBC275D733C3FCC9F6898C137 /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8732EC9F817772D591B4DAA3C772D474 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAEB1B80B33709735CAA46171F2C305 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 25033FDAD85C7AD9C0FB4D9CE82F9824 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B82D463BD29B4C6AB3DCEDA8619034D /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2EEBD1244327E359E2B5D7901D85136 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 098A8102A7A2650315A84E65070320DA /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 22C7732479406C077704539F33C6B97A /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6BA9C4D13FE5267F6561724E575CAF /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 2033EAA4F936C298EA59D434BB594FB2 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CC90FE0B189BAE2F58DD54E4A55C04 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61AA4648EA2C60E5B8702693A9423CD1 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4F566B9167F8B5C5D3CB768C2CBF6A /* ARTSurfaceViewManager.m */; }; - 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E2F103FBDA0F0C9FA2944FF78C20F8 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */; }; + 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12988D186411E3A76037468305A57D46 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 978853D7DE99A100A1E0B34E3A260704 /* YogaKit-dummy.m */; }; + 2360A033327B7652C6D9880203BD6B92 /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */; }; 237BC0466B44DD5F3E6DA103D60B1F9A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EAC0824FE9BC00556ED59DF1DD9078A7 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2386935D09F479BBB9F295EC266F04B9 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = C208C377500CB45E85C51BF651206F02 /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23B2A8DC0FF17D85A673F766AFFB887C /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C008C1F8B7D5C3D0ABD2E35A1E531BA /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -645,193 +646,193 @@ 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF09CDE71F1FF8C5D5DD40D1CE53E0C /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABD933AB71D28946D5A1ABEBFF45BA /* SDImageCachesManager.m */; }; 23F1FC28AA72EA008BB99CE077D749A1 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 170EA1256DCB7A8BFF4CE9DCA88CCF10 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 661028630A68D382124ABDF8AF9A8FD6 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 57682730C5EEF91CD96A67BBDDCDEA8A /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD0B61330B9878D2A0D152EF587ED4F /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 894E75CFCE337BC472BA115415977912 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B1AE798127CD3569385370EB0CEA8562 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DBE035560D7576C7D2B33D8B7BE372 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6FC01B76455ECC5817D1AA6E0A046F /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E40C90009EAFB8D0C7E7BB34EA6EA3 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24ED81916B4C6C2CC3FEDC51B7243AC3 /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1382387B408898BE667378601E65A0 /* FIRCLSURLSessionDataTask.m */; }; - 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 744F7FC9C5AE5710B56A2B2F3F9D18CA /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6040AA3445538DCFB1FE879336BF1102 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 253B8F7D7A49629E23C0CB07F17B27B8 /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04BA0BD1CC68B0FFFDC1E257AC87BBDF /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1D089D8185A19388DABECB50C95D0E /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D6C5DD3FF13F6A2B8F4624FA65049297 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254DA1EA2D8F42DAEA1F3EFC277AFD99 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 95164075C77A0ED9148AFA34AF9AFCCC /* FIRCLSURLBuilder.m */; }; - 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EC476F3227565D75C9826AF7C8D44A58 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F98158F902E7F94336F3562407C8BB /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39D749A4B1348C9699081C2A129C5607 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 04E2D48433B61B581C56F302C506980F /* RCTBackedTextInputDelegateAdapter.m */; }; + 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C54E2024A58E50FF56C28D2288AA2E0 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 25CDA6B573F9FA265790119B75DE62BD /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 082D79B728F74A2B01212186ED9B5B3A /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0551CD0667E9000E0040D3202265E628 /* fr.lproj */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB22447DEC2C63182FE809DBA4F07E4 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 094B208492CF8A55850C1DF164B54F3D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D54A3464FC502058D8DAEAB77A89182 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2605224350F37496F63ADC7DC13F4AB0 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D2E437AE12824A83B8C1A82F77A3FD2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2609A04370DD9D50963681824D65EDE1 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EBF0B3032A56309C27B438746A70349 /* FBLPromise+Retry.m */; }; - 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8885E57EE811F401B1A6A5B25CF3D0E4 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26554D2B235A4A32E40C7DD6A9BA2A94 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = C7EE0FFF94A2EA052B5C42F5347B57E1 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 172E4EA66F6FA3C4E3A133F4C547335D /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 329C548D9C662F038B5B5394345EB26B /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 026BFA0E4AF05C22DFD523B07111618B /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F6AA080FBF22251EA7A8B7B8C1025703 /* BSG_KSDynamicLinker.c */; }; + 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587D2F17BE183AE3AA2838593FCB33F /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE816F7617BDA7F28220C57AA972CB5 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A540849F2EE5DF78C104A26980E4B083 /* SDWebImagePrefetcher.m */; }; - 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ABCECC63138C11A27583A1F0E866E6D /* QBSlomoIconView.m */; }; - 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A295D416EF762CCB840AD69F9BE8C33 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */; }; + 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C71A6B2DA5B6BE79A7FE5C1F2E6B42 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 72746ECE8BB7706AD18915DE158D52F7 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272D9765D662C5A0128895CF900A1B6B /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 74839CFEA87170B641B5B759C7C8EBEC /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF07638B1990430FC006C40DF347DFBC /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = E00FD01049352AAEB6B96C5E0E25C654 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD5883319A51B95FA97C71A2FDE674A5 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 27AE53BA3B396A44A19ED0A49B99798B /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 542587AD8D684CE26F95275D3D6DCCCF /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 7376B739BEFEFDDE1BE109B7653CC88D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D12134205D8345146AE8EE0CDB6B01 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F7E87473388FF62E1EF44A8044A21A /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D2F28E456BBD5B5949B58110F3F676 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC5FD4C0CE7EEF0F505F247CAEE821D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E66CC7D473469704A38825212367C8D9 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 358EC2B17447DE2EA1730C090D336BFF /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD4FEA2EC50EDDBC720C06975C92FFE /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 280618340058F589CB897A134234D49C /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D680668C4D614965F1C3B7CF16E5FC /* FIRCLSNetworkResponseHandler.m */; }; - 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C35AA5BBA044681A80F04B30B6DF2BD /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D947731042008BDB40A8A6789835E72 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = D3FF49BBB72A385DBC8A6E42EF72A889 /* SDWebImageDownloader.m */; }; - 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A93CBC6237D460CD3B25CF466DD5A78 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 30788B55CDB4C0148D7FE3670AD9DDCB /* RCTConvert+ART.m */; }; + 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */; }; 28B75EC2EF15D6C571BD05A36F78FE38 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 724FAB388B350D55C035622BD40F0C3D /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 05C36B610E67067EB1DF01028DF5B045 /* SDAnimatedImageView+WebCache.m */; }; - 28BD2F6001854C546BDD58774DB9D9C9 /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 862A89EF54BA1168F9F7B6E0A575B091 /* IDStore.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B2DD27811F19B615CB8438E0A9FEB4 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28BD2F6001854C546BDD58774DB9D9C9 /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C8E8C591C46A9D06F786270C1060D5 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = BB95FDE031FB25A2D1B2392B887ED18C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C7E9381645AD62ED99B805756965501 /* BugsnagBreadcrumb.m */; }; + 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9D9A65222FA9A86B8147D0913D4418 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1632D81B9E25D2A642A6AB3039D475B5 /* RNFBAppModule.m */; }; + 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B52E5F294AC830CB71560C2923E82B0E /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3E8EDBFB5EA37FB6FB895A6E3F05229 /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C6DE34A9B04BD83040B031CFC770D1 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5B69ACDE600B57F0CFEF501D0CD65F5 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2987B38812445E03CDA22FA3542465CB /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E0F83B878A2015EE63E9131CE3F4E4 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F03C11EF98B0586785023E492A678A /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CF26B3A572A32E3548A3BF62BBC69F /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B32C813FCD1F6971FA1A058EAC37DC9 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F9F5C2ADF396741AA8B04729145AA5 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23FF7EE257854C1239EFFE1E86057AC1 /* RNRootView-dummy.m */; }; - 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B70AD1FD8919EF72D41C5964FBDBD118 /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */; }; + 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29E521245A004DB310199277B79CA0B0 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E59ED8665250F877CE5436A11220676 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29F867CC77079A89831B16FFA6DC2650 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = A124B205AD056AE7D5175FB2AEFBB3FA /* FIRCLSSettings.m */; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 486F4AA74FF5CFDE0B22AEA2A27428CE /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A0DEF39A6E17704E3036529DA24F634 /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 690512D5B3049B47B2D6F5D44044199F /* FIRCLSPackageReportOperation.m */; }; - 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 49802B6AF77454D25F55FD6EF7221C17 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 204D00FFC11A7DBF8C7243D6A44FBE52 /* react-native-document-picker-dummy.m */; }; - 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C37B64557C975C219559D6C08ECCD0 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */; }; + 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD3466D9D3651B36C3E28D89CD26C97 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C1371CF0CA60745FE6D0CFA7060A59 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CE922B3754DEF832DD70ABE9EF23FC /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A7DBE9DC87F5C81E3903AB4A98AE86 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1E991CC4B64389ECA30647B4B02A1A /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C962D0DC80FED44299F607709C19F307 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1F6427C89945A50F4E08BF8BF414EF /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 176F21493F611F5287867F3BBAEDF283 /* FIRCLSSymbolicationOperation.m */; }; 2B2178E0C1127FA94AF674E20EE28590 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED27D63CA277829D5E58F99430AD316 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A03F3558A88EFBE6C41D5F4D040E4220 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC56A6AFDB3B1D8D1444AF070284180 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = E57CEE4E9E6CBCC8D49BA0D9953325A5 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EBC30E0C0D2525DA018E015BBC326C7 /* BSG_KSCrashCallCompletion.m */; }; + 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E4EFE5ABDFAAE5543E2DC0B5E63800 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB03B26D845EF62566ADDCFA7176A9B7 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2D88A61843F3737848C2E03DD731B9 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C449A9FDFBF4AB6D4736B5436DA11E93 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4338C554EFAE9D867C075E711BBE8E46 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3B255F956C9C6A0E4B6E561C0908A0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C67B195860C64A4CC32AB983E044735 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3BF5D6B72169E95EC76AE52DF6EE74 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A4E7E72061108B2D150068D7ABBEA5 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF33430257562D27ABB73A05C9ED0FD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED870C9ED962185FC40C795711DB2309 /* SDWebImageManager.m */; }; - 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DED45358B07E766205F3EFBB3053004 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9143FB31FA4301876510AD9235A3C234 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F5850370B91FC626DA274DA5B4D8CF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13D3614EDFBBA73048D53A64182FB08E /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = E482E835CC939CBCC465C888790B8F57 /* RNRootViewGestureRecognizer.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */; }; 2CDF546927B5C2B907189A98C7975D20 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 180B5A25AD0875E50337E7AED56B3FC7 /* Folly-dummy.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC26C39986B571E74A37D435B04D8992 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BA44650E4DA05BF923D8D0C78170676 /* BSG_KSMach_x86_64.c */; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 07036B099634A61F7A486FD6AB6D9299 /* UMReactNativeEventEmitter.m */; }; - 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCF5EBC671EDF125EBA2C3BAB139F931 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */; }; + 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D580680A39DA70D8DB124C245133BDF /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F657A85EE3B3EEC36D93838FDAA2691 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2D694F7CE9D45055A16D697A5E1904DC /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 878EB6EEBF09463E2211023187B5CB3E /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4AC0EE0CD8F854C9C29F25A60449683 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 896DFE496A3123614B651C512D768D4B /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2DA35D42BF0B0C032E2F748E77024EF1 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = B4708E70C3180E114A6D1632FEE02F33 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = B60E5A38944754CB0E0FB304F34C7139 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = EECE3236E8E0609B21A685D39122F2B0 /* BSG_KSJSONCodecObjC.m */; }; - 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2524D22CB8F38C41F5E5F2A2C7DDFF26 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5310DE7A9282EA96BBB3F2842D7DFE /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1919218B8F63E04843B4789A349BE8 /* REATransitionValues.m */; }; + 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */; }; + 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D47E74EDA59580CDDFB291043FB6694 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 2E2231D94E15FDF42AE50823012030E6 /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = EE251821BE57AC0A1AEB7709AAB470E9 /* FIRCLSURLSessionDownloadTask.m */; }; - 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F64969505F78D6563284A8631E900736 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F6398AD8936BEFE99D1B77E39D38A53 /* SDAnimatedImage.m */; }; 2E83BF4915475A6156DFD0FECFB1EBED /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBA92B532BE23DFCB3F304972B74DEB /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CDCA41AA9F933074D57720A28E94412 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 71470F0BAA472F5B0C82152E311DD6A1 /* BugsnagHandledState.m */; }; + 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA202053FC287A8CB5D0500F5A2EA2E /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 486C141CD8F90940D6398170558F0B40 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 17EBA0EC648BD8BF27D1C89D95CE415A /* EXAudioSessionManager.m */; }; - 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 079B88B3010CAA3BDF66EDC5B51DA6CF /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08D2C7A96906240E752EFEE9AA160FF6 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = E72DAF582A3F9EA663F151591F59DBCC /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */; }; + 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F0866F00F6C9E03A155240059CAB72F /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = F11B264A0686C7D8C3555BD6888B003A /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F358CCBC15C773B0E8BC8B20277192E /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B556795D8C4553211AD8B77C5E48B1 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA8A54B05081EB535BC185B038426E7 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D26C8EAE6D348021BA0B18A875B000 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF5C295B5F0EF90ACD7DF13EAA6BE5E /* RCTSinglelineTextInputView.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 41190A372C1F0B2BB22D5CFEFCD71099 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FAC55AC7BD8FB1CF23FA3CA8E565835 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A090123081DFFADF3C37F389302B64E2 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 9863C2536B6D6EE6E082E7FC842FB6C8 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B503E31488AE8659F432E15C7319F4FE /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C95887DF54710521A88FD294C10C35F /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 379D18EB4442E35A9EB4EFD0907E472F /* RNCWebViewManager.m */; }; + 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A494A764DF4FE9DAE895F6592A6FEE /* SDWebImageDownloaderConfig.m */; }; - 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F41013165CF5BAFFE81234B51A9D77AA /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FFC3171E324205FFD9FA0A70048475B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA67FB4B490864158D645577BB7D080 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A16BE67B30E1D5B41246BA8E281117C9 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3008E5C197E529C941CA606774D1BEB9 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 4806111C0F5EA9A33CFCBC19A7408D66 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30196E74E25A873E41DC889DA48194FD /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C60919E7EB6F9180A787F54EF850C5 /* FIRLogger.m */; }; - 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E32CBAAFFE8216A04269FF134B5B273F /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3933450B6CBB5C6E3C628F46928CF0AD /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 8280F4060EA2D45A4019E40097D94154 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFC3C5337925929AA6B9B0077D6FFD3 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 096A0A2F847360CF1FCB976B8084BB4C /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 626CC6EC015D37301F18521C042995CD /* RCTConvert+FIRApp.m */; }; + 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */; }; 30987C9C9FEB711061439E1BC000376B /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CB84CC51503D7890C0A68A673FC36BC9 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30A8478C08F9DED3F5CB43A32F5FA1BB /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A80963FBEE1028DEF8C4D32F24614CC4 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 30BB3062E85AB8BC2F42A1DC69B99C92 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA5BB944A0D64D02A3687D8A39FD262 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 747F222DD33F12CE7143A62F540D6332 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = DB4A9736D07811E63B500AF8C0486689 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878B44402143B2E25821AC0F73C2728 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 379E0871E8C66FF621CE516373586224 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B2356ECC6B9ABE8A8CF3488375A6086F /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = A48522EA0A383575734E4397FE6824C1 /* 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"; }; }; - 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D929FE4CABA939AC717AD6BC099A274 /* EXAppleAuthenticationButtonViewManagers.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B10D9AFD6D4338678CF1ED225B93617F /* RNCSlider.m */; }; + 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = B2783E8C8A79BAE9AE51E80D773DDB2D /* 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"; }; }; + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2045932DC3A2534283607C5D26E6E95 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 319A95BB763E66FA343B43AB20D262F3 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8999D50EA985660D0C1EDA6538E48133 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3391B4E3F9BE2D0663AA02FA39A6B896 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9789C35A20945543F451817A8ABB5903 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = AFD02F6A5B255CC437C699658BE9F7F4 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 27ACC469345EE9D21E0DAA14B4CE1E39 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = EB21C78FCA19662901D75D8A58EC4CCC /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C49745BAFD1F99444843FA27BCC0BF55 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4396D8FE810C80A480BB51488E2C274 /* React-RCTAnimation-dummy.m */; }; + 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */; }; 3231393BAD745FA73E9B11102284C616 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8D42A22D682BBDBA66E60052ACC8F3 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D517919CB1B097F3B3B1E486B2A65314 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF5B47DA6C608C1A74A71E0C1C11648 /* RNForceTouchHandler.m */; }; - 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A507C0CAFFA75505C7E301739281A59 /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */; }; + 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 084CC30BDCC156941702CFF69B60F30E /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D04337651E98287D8F25B9E2B933C41 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 453DB2BC6EF01AC50DDD4C1A4994A50F /* EXVideoView.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A713BA4620B719C691AF9CB67ED5756D /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4655489B1F8508C8D8E42A11861B59C6 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A54CE4AFA4A6A499FACA15B3B6CA57 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0B1D61A483077FB4BDBC262DE16D7B /* FIRCLSUserLogging.m */; }; @@ -839,30 +840,30 @@ 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFB1369EC80A9420B57A2C47D31A6BD1 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 32BABA10BB305E71A70A9C7BA52FBC89 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9972B9BC9C002FD13E6707E9A8DBFE6F /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 32D97293EAFBD808BC576FE700BDFB3C /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = B03E7A6B62A8D69B3718D40106CF4404 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63980E49F92190E5FC36DABD9FB0F023 /* React-RCTText-dummy.m */; }; + 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */; }; 32E9548503360012A39909DFBD4C4DD9 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = D64307698B08E25A0B8E329EDF5B215D /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33301592ADEC5F3E21FA07A848C1936C /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 471C8FB7DF0F4F3CFAFB00D4C3C24BD7 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5448220EA7FC470AE752F236EE90E40D /* RCTTextAttributes.m */; }; + 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */; }; 33557DF89B6EF2627D2E41B74146A0B6 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF274C30290A8E7AA8535DB4CC73D04 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 63326DF86E22B325A5B08C049B95D1EE /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61D4B512312F11187441E3F4D2B4857A /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 337E0C9857B179E5EC97369CE3EAFB0F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D9299C179FE609553C48DDAC5354ED8F /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = BC92F5C7572D46E31CDF04CB9FEC4742 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 255917C889220A40D1C74A8CE6D91F63 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33E573075013DE8B348024AA6413D694 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E479C3D615B6CF1D28016626DAEFAF /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 47257137896C296152C0B0E53E0A76B2 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91886489B3266BCADF488AF827094922 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 346F4B24EB2857ECB358657D35350C00 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A52226F2EB3FCF1FF4CEDF15A00E9C /* GDTCORTransformer.m */; }; 34BBD3A50726564B1AE87604F4B74B57 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3181D83556FA3489517437FB958CB6BF /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66092E3A89FCDAA9CC2FFD9ECDFF4E28 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E4A6A92754525376A969E4A16ACD61 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 76518D0F346A22AB0F95C26087ADE5C8 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 514C8672C2545CF1A75541F6EC6423B4 /* RNFetchBlobConst.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF1075E4207285244501E30AE60F2B6 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DA44DECA28FC4BC69FA311437B636338 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35509AB2DE9757199EE5A9A606C9E058 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 06BD537C2CCD93C2293EFEEC85836499 /* pl.lproj */; }; 355DC98B9D06383235582588F35B06E0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D068D916BBBB1CF821F31827B18FADB /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C64622D2FF9BCC7D1F532139C68580CB /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBE801067B9AA91BA4C058EACCDC752 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B52D167651C3523F3B2CAEEF7423B0 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2AE6EC96A84416A005C6100DC9D3D9 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -870,20 +871,20 @@ 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1917B88D75689E8876B6520174F6EB97 /* UIImageView+WebCache.m */; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C768E56EFD93442B8A537D03D2C0EF99 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B6884E848787ECE8DBDAAEBBF4E527D7 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D910A03E2BD03EAE274F7C05E50F5A5 /* ReactCommon-dummy.m */; }; + 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18AC4670DD43EE89F57C05872BB5D2E3 /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 36925435DBBCDF40101DF4DA0D176285 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B1244BFB7C2C546566B5E55BBC1699 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; 369F83F9BB8369497F818766CB6A03E1 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EA283E65F1C71F711C4134E71A771B /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 657B6B2F34BDF60C841519231966EDBB /* RNBootSplash.m */; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D03BE39E1D34EB361F341CDBCE0EC8B /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36DDF82F11162FDDB5256E2A29BD0B4A /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7029FAD1B4E7B93A288461D93ECA3EA6 /* FIRCLSRecordApplication.m */; }; - 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 98632DB487A8965B5FEB5DDBD6DF791C /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37043ABBD4DA0792B89D11FEF04F995F /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B9B9C991B6C06853B8C573A449F3D36 /* TOCropViewController.m */; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EDD75C463805A61CE3A8A8B3F02D62F /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 371CE81054032E91F6F451E02E66EB78 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 044230C5304F3E6B8C7DB6B5FCDC17D2 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = C722D112E1034415060F76D4D4C107F0 /* SDWebImageIndicator.m */; }; - 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = E085E66D7887886A7DD797272EA85B07 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF57F84DCB0CFB86C5A0017BD979E75 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 35837220F1231EFFCA25FBC405F6FC14 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F2F92F78EDA32DE889084648A19D9103 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 377EDD40562D695DDBE096F504D81B53 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD1C40E3EBF951B518DD912933B112E /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -891,9 +892,9 @@ 37A37544801076BF222FC05117B38064 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = A072AB80F980D7FE4CCC2BB9E9D99BBA /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 857B473E21FBBDF59E332A5FD163A7B3 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37B9441E3739C1098D17234DD176AB32 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAE8646B15DEB7323FBDB87255F1019 /* GDTCORFlatFileStorage.m */; }; - 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9693507BA669B54D34BE095FE22B459C /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DF4ED97F36D082123404D0161ED273 /* UIButton+WebCache.m */; }; - 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 70DD0ED2791FDDA1EA8F2C0553EE951B /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B8DACC6EC868535DAB42D32BABD176 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1895FF20474DD5D4B240DC2E8AD0B961 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381582C2E5845132F0F89F4AE7DF0291 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 659F71FBC500FC8143B83A886FF525AD /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -901,98 +902,98 @@ 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BBB53EC3DB6AA6AA25C9D3D328E9200 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 384C6507CCB25DEF38E04A025AC230A7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = E70A19B66B026FB48473A66CF3E9CB52 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6BC9F12658302F121B6F2020AE8C54 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D644F00CE253943CA2D61E7932E7AAAE /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 387EBCA8FD57EDD475BEFE8C73DD1051 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F5F11A6995E23FA806F847374AF55B /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 7105826A2FC29395592A32C5E98A439C /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F79130284FFE31CC621C77B5F336F6 /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */; }; 38F6A79D9937614314F8A612207562CC /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779BE223DE836270C16006E859AF645C /* 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"; }; }; 38F97952C6381271D3B820C7E7FEB828 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 252F20F357703BC3ED2A24EC0FFC9F20 /* FIRInstallationsLogger.m */; }; - 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C16AAC66D67CEF3568F1266F452B1EF7 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62E045829C1BE20F83C7B787A38B5F33 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3903BECE2CB09D1D3A70A5824DE36B4F /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B73E01033F56F4F9DC335F480B01F175 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D0D073BFFD90E161F032E4016B62D9 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 151930E4423F69B7A5159168C3DB1595 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FDB5AC702E5812B74CD37395DA72867 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5D5546E4E9B124EFF83BF5E6A7A285D /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 395DC43E8F602AA23CCD3406971ABE86 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2004B4E40576C4C203A4C5BFDC702C6 /* GoogleUtilities-dummy.m */; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = B53F20CFB59A32F72D9E730386FE3C7B /* RNFetchBlob.m */; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2E711743251592466DE361107441A7 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F5A257D2E21C3F489151D01750DA75 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F470400EBEAA1D8E020157AB664049 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C45C204ACA134AF52D11B8A41D1B43B /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = DED93BDAF48496E43C78B2675D2CCB72 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 830F897DF7AD939E47E8155FB34962DC /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0622FE2CDA6CCD1D6D689EB4C1DB6C /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1189DFD69861669880AEFFC87C9CEC32 /* EXFileSystemAssetLibraryHandler.m */; }; + 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 280AE93CC3396E5BACA7C3D85E999106 /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = C105EC08146FCCE2785CC4DB6C5C4393 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A04E55087F1F61F47FBA0C46CF8C0F68 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6488B2D2AFBC4384652C40B9A5B63B /* QBAlbumCell.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = E2911364068B54AA61531F5F3B39EB58 /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DC8F9EF582F373968C2AB74A0F7189D /* UMAppLoader-dummy.m */; }; + 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 359B99B052DDAC66B0B97187C86BEA36 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C15A7A81200D21B6B197D4B09B45207C /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 277CEA201910B02DC5F2E127BD9E8BD8 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 30183117647A8EBFA12586C19C51951A /* EXFilePermissionModule.m */; }; + 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */; }; 3AEC60479F0C2555169A4EB81C279F92 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 268311C9CFEF146103EE89227C3AF2B8 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFE12ED57A1326BC87C9C5D2E67C402 /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA1F642328FC006E73638E971097208B /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E7E2155201EF39EF2514273042232A /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C07F5F0682EB28343DD522BCF81D34AB /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDB07B532F29B21583DA6417C39D247 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B1F011B902EA943C13BF23FA5AA91B8 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7ED01554864BF8265C2F62B2AB1689 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D34A9DCDE2F562665FE562C08C0FA4B /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BAE4E01CD9ADF01DB764AEB2D2F4B9B4 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 22963DC665AFB9DD4221D121C790D4B3 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C359B5DBA4ACE190A7F72F35A61D1BE3 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC4C2FC787C6989441D30100AF1DA27 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33912B7BEFC9913C52ED717340764985 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0B3CD97CFD9DEE34B5B8E734CC6C2D /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B95DD00BB6C0D9AB86E4191B9BC551F /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC75A8F5B5124B06C4B64D73C06B1C2 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 096AEDC4B5F11BBEA4D0BF93D2818C26 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 534D29CE3C9383C583A3057269CB9F1F /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC7B99C885158580AED5D67E7775727 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEE1FBAD4B96E245CD9AED9D181133D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CA90277E8E4C7BEC5CD2B015A5AE5675 /* pt.lproj */; }; 3BF1615C071DE5B98B2A55135B5E32D4 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CF7CF5EE80EEBFF0913866EF73067D /* FIRInstallationsStore.m */; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AEA309616B0DEB92A68DDF81BF2B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCCB2D65FDA8CA77452B1513BAC7872 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 945D0C00A4CEEC778471BDE6EC8EA3C2 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0A6C8D5D38EBC13F5B8A8F5598FCD6 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BEB1352D9A0F725E7B8D2FF1DDCBA4 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C3EEEA69D03BE23D7A2D4E0A60237BF /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC7121300C3748D152EF165854E476D /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B2660424907E7E1DDC75B058FFA3F8E /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4DEAC15E360E994008B58DBE5A3371 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E70B4B912C3718856B9C9AA6F2A8C6DF /* RNNotificationParser.m */; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8FF700310770E6722C190E33588993 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D795FB70A5FF1D55584FD68256B28653 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B18A0457BBAB21FCCC265D41AA00A7D /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3890A2E9E1D29DF9E05B62849B17B7BD /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AED725F071366514C48F4B5B7FE6F64 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4183BD06849CA1A16C75157F6A8A7827 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CA11DFB93099A0F552AADB56058D1B8 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76F902F856558ECE30D580EC2028139E /* libMMKV.mm */; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA7E759EA59B6DF7EA8476959CAE618 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F62AC197CF55D1A832B996E6FD49EA /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48A8DA835765CEA2F3A4A0F2BA3BB2F6 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E27C351B16B6D0C56C854A347B16CD7 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD9A1F50D09E2EBD8A5C437B1EC94AE /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9352FB7DBE05F5908BBEC7CE1034322B /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C29E69BBAA60B469FDAB2F39671609 /* RCTKeyCommandsManager.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */; }; 3D518EE441B3E33D5846310B922E1EA4 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 255D72B71BDB0BB5FEFE4E338122CF8E /* FIRCLSThreadState.c */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 424F70302F9F47C0194BBB2D77EBF863 /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC5995E8AD9B68CB591E4AFCA27351B /* RNCSafeAreaViewMode.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */; }; 3D730CDE4689268B28E8F06DBE26B123 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = B4FF54CA08915921A79C644F03386D42 /* FIRCLSUnwind_arm.c */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D19397EEA8F7A16C85C82BF80D6D443 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C573CAD70E719BB6148A58884594153 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E11F253C1B79EACC5EEA0071F470DD8 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = C06C463B264BF781C210F9668673FC4C /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3DBE36980A233DC5A133EFA049B5B34B /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCEFF71B1D9E6E5355DDC8CA604AB79 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF4B4DD2CB8C347B93F9CD1D1D64D2C /* FBReactNativeSpec-dummy.m */; }; + 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = BA89430F8B09AA75B3E6F6F35190E02A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E64101FC90134AAB704521D67EC551E /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A80F17EFAE83359F19CB3301D8F0AA /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CD3856553F85B73142E64B3A6A3AED /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D7A1DA4BDABD41055F9FDBBDF780EF /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = EF89D7EE6893861B6EA4BA7986F0BC5F /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD1EDBFB319C1E306DCA5C5300748C5 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1575ABCA38EBA8FDEC0B53579D4D3E10 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 77E2F5181F368F5F02DD7F9C5EDE2FCA /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3F24A3DB577F5F9DE3E7E73B8E06C682 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3198919F3064B327D1044E70E2ED666A /* cct.nanopb.c */; }; 3F49AA173DB0D5F9FD4170902B39752D /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = AD8FC31B2B3A41E2DD01AE5F916D08D4 /* FIRCLSProfiling.c */; }; @@ -1001,64 +1002,64 @@ 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF0F4A8A615BF132A32374BA90CBF6C /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB695259EFD1A6F97D63899C791A673 /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB1EF6C30200767A22935984B6A8E04 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAC43727CED4D3007DAD3D052638B5D /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC54ECC9011F0BC7EAE9E0D0891CCF7 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 782C5193E20173687BDBCC3A97D82B29 /* UMModuleRegistryHolderReactModule.m */; }; + 3FAC43727CED4D3007DAD3D052638B5D /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */; }; 3FC1DB2B2882744E0BC167FC89372873 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4298B632D8662ADA04F5546E967DA855 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD1894616432E8801F4121C9554199B /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D991CF97F8D8407856A570EEC307D224 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5747F11F935B0F7BFFF54F3F89C667EC /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = CB79E96BED7B8CA82FAF3F5D7ED4DB47 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FD38BB00405FC9935354DC865D2EF86C /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA0BCDEE8AF04770C9EB812AE9F2933D /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4023DC41F602B44BAF60408389A2B762 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F95B87CBA8D3DEC656CF9C2135D0B04 /* GULReachabilityChecker.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 482963E68B742542703CB33AA739B756 /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6109E1F1875E47099A00E210146E5DD2 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D469401E7282C56A94687BBD09E5E22 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFEA41A844ABF4DE1C0C6FD75558E64 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 310035D1FB78DE2D64DB8961EFE8ED01 /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 788DF881192CA8C3E14AF7D40F5179A6 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3F9DB0E5B5FF537548C1B2957F1AA3 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B38271B66DBC0D7269A0250EF2A082B /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1406AEFDE1A4D3B267A63FF43CF1B241 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = CCAEEF5103784B8F6521F32C34FD4EA6 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8EBB4B5F45A5138F54DAF266AE2D60 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC693A9F4CEED6BF32C67844621F6AC /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D222508BEDF658D13C92CA937D0A5B0D /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 36216F26D2E9DEC04AE009AD5476C98C /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 95EF4F0CB4513629B5B7DB27B2CDEB42 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; 414724F4692F8D88F49D35C4DCEA4D54 /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4036261C95C8E6831DAB252B7C7B126 /* MMKVCore-dummy.m */; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D00D2DFA3CDC20D63939FD5E53A919C /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31393E962E278B010F84ECB7CD0472E1 /* EXPermissions-dummy.m */; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */; }; 418A80C97BE6673E08EF82021C76B68C /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9930E8BDE14FD0D5625A004F75A0E2D9 /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A2D9D96E2554D5E6D72A75D0E694419 /* EXConstants-dummy.m */; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */; }; 41AA3998B750D854C500181BC0B9D8ED /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A176C2A092D10F8B06080D636307A4 /* FIRCLSProcessReportOperation.m */; }; - 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E60F7E748AD1A7FE5E90EA4646DFDB /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 20408DDDDD8676E9F6B8C4E8AEB3551A /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E882BAB378B024AC3C1C2524F2DDBD9 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F570304EB016E938ADF33BC841967810 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 420B3C745ED37D5791DCF98E843B943F /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 005CF06E44FB4AB2C00E5AE9548BB445 /* StorageGetters.m */; }; - 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E372F16A6F0282078F209A0A3DE776 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420B3C745ED37D5791DCF98E843B943F /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */; }; + 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 424C2747CDE3E0FA36F66B30DC971DAE /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD30613133E75627E8E07B7B22F86AD /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42543A01A17FCDA2A3433623E63433F4 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CBD3DFD7AE046C50C14ADC5555748F /* 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"; }; }; 426010CAC3C039C6F9911BAA2D77B14F /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 452E87A8A1899C42EFBEF4E5BF46216A /* FIRComponent.m */; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCBA980A13E88667208D6B5240409E1 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D20A7D80D8CFABC26E75D42D366E4EE /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EFE9E022D3C85C59A56ED2C97A7DEC8 /* RNNotificationCenterMulticast.m */; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */; }; 42957C970247C82C69F92C08F821066A /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B57121FD848BE72A353E5A4934B38 /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = E63E033A8CDFEBAB16EBE653AA6EA3A5 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EDEA5452550CB951CF4200FD15053EE /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B581F219FDC85A4553A12622AC187B4 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6373E4A04BEC6CBA035060CA99F0CC11 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = B51DCF22D60FF88B6547415A2548B15D /* RCTView+SafeAreaCompat.m */; }; - 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C18E68F81F772E1F1618C49B3BEC99 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */; }; + 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42D6D2B79FF8FC8F0FFEC2AC126ACC37 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8BBBFBF353EA7A6878FBEF5405399E /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DA27E5F1A0ED7C36F0BD979C4FD26 /* RNFBUtilsModule.m */; }; - 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 455FE0721A514775C6E681F0649586CA /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */; }; + 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 467975AFD9EDB1602266121543BE4CBF /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4C2D4833B6422C913419373FFC9CF1 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3B7B5D952279C78CC0490C8F4C222E /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 431778336B1ACE03A58ACD10E0BDAC1D /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D80DD75B0709974E73A04CB390F73D /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 432FA6CECE7A4FDF913C7953D1433AA3 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53E40ABBBFEB903E35684CAD1B0D67 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 261D8EABC1B5ACF4822AA0EBCA0ABE19 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7538D18193E47EF2911EA32F73FC5723 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43506A7BA8EEEBCF95741CDA3B381B87 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F688C15AB5C089BB2293389D03C29E /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C46034AC441CAF5D9E2AFC8218C74065 /* SDWebImageDownloaderResponseModifier.m */; }; @@ -1067,8 +1068,8 @@ 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BB824F4AB5400F724833397906D2FF41 /* SDWebImageTransition.m */; }; 43B78010580505476F3E8FC480770934 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 276F3F91D7A31DD7EED2F990FDE60364 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 065FCC25B084C2FE50C2AB02663D8DE7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43ECD9A5430D7EC2CFB179B8C361077E /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F6A7AFBA804245CAECA51C7B7404355 /* StorageIndexer.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E3E97A18E1377F38EDD619109F1446 /* RNBootSplash-dummy.m */; }; + 43ECD9A5430D7EC2CFB179B8C361077E /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */; }; 441B93B804E191A50943F1C1D8A1B1CF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2202230CEA646EACF64B721865C58DD8 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4438CFBF04202C1F6AA6738A28EDEDAD /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DB1707BC9908C3518722B608F5B223 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3BB7CF7803741C9CF1DCD07692FC497 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -1078,34 +1079,34 @@ 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = BC793B789BC6A2B2ACBBBB5A6E807CF9 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44632E81B6BB000278A79A5F1ED4361B /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A0EA90E932E5FF5DA7235B3B28B11D /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4468D0C7AA98C38510939461FC53E5DC /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 485E3C444F6F2D3117FE1ED31D9B6242 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0ADF9D9CD9EC9CDBA609B43FBB4F9F /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B088A3AC137B7AD179649962D808EBD6 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4562ABCE009528F380B10B8433A6EAB6 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A77F48EC09117C89737776DB4899A4 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B6EDEBC112325BEBA60BE9161C167E /* NSData+EXFileSystem.m */; }; - 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = EFAF9EA035BC8B473F89B78BCFF3C4AB /* Bugsnag.m */; }; + 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */; }; + 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95792416180CB79A3E224367C8411ABF /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF2E48F483BC6372E72A622A3F33401 /* ARTRenderableManager.m */; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F248CA22956534AD12562822B288A0C /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = B054CED19DEECEDFC631A81352C9E462 /* ImageCropPicker.m */; }; - 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB9D765F6C02C20AC24D159103D6A6E1 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */; }; + 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44E626EE32F3CF1BEDA84CBE08DC2091 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = B3622F0BD6A03A834E4E101D1A89D5A2 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D6B664D18299F557A9D45D6AE6F1C85 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D58D3FD3D1F8C6C5B6AEC5FB644233 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 467BF23FF6980B07FCDC81FAC9BC9C5A /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C43F20A92B180AEF7A8C6C7AF12F1A10 /* id.lproj */; }; - 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDCF623BA7B069648767D94FF300111 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468106B01EBD8555D998ED1CB759ECDF /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A629223F976F71639D71C0F1B2F28BB /* FIRCLSRecordBase.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D6BF069F2732F6E9F835891C18E6EF95 /* RNCSliderManager.m */; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */; }; 46E0BC2A484E85D6E84B52B6F14CA502 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B83BB262BBE5BBBE29D484219313691 /* FIRInstallationsVersion.m */; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57E672092DD39DA8E468857221841AB5 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 46FF233827FD9F59855A0707AD6320FE /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1FEDF4CD5DC993AD1D4B0BE98275CF /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D23AD3DCEE35A3E5AF54D2BF5E009D1 /* BSG_KSCrashDoctor.m */; }; + 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B7F2E6D40A0A33BC5C39F075891F642 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8A1A1EAF2C5CD9EF169BC80EB069B8 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 471C1D77368DCD1F99DA320EA6D0893C /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E28D6E1DFC61215A65072B6F3AC8E199 /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E89C7237B3349F0BC8441CEC8099B7 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CA6CF8347107CE885E03EE8C4CE52D /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C0ECEA6BB9843E0D132FE44B9D076816 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A70514A5CED495611D708BF35F217 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FA130D008B802681B6F2F5E96A558A82 /* FIRAEvent+Internal.m */; }; 479616E8106772AFE3286C5456650297 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFC42D3FE10505C8A1F403FE5F1CE2F /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A329911ADA768AC86D452A38D32D53 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E73E820E0E7570C0A536DCF53EE5509 /* FirebaseInstallations-dummy.m */; }; @@ -1114,118 +1115,118 @@ 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC3CCDF257694E48C3C9D1F69E2775C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47DCC3A31F95527F19EA2A2D8821BD8C /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCB6333386C1D0FD59A6F733F4DEC52 /* FIRCLSAsyncOperation.m */; }; 47DF1B6157DA66CE963E27F12D5F442B /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18E4E0618B189BF1F1B0F02FA592A47D /* 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"; }; }; - 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = BB7AAA287C8C1049843DB512B80D2167 /* BSG_KSBacktrace.c */; }; + 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EFA24A2B42781B009412AFED35E2FE0 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47EF034B1DBE29238E4A4A2A9EA3AAC3 /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 404087D898128DB18555B2F000165B9F /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4802E4F018C6CC4ADBD85D68EABDB992 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C73D3BB5E4BEDFCF64752FD0C7FE9F9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48135840D82FBFE9B37FEFB6E39BE512 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1B34730033D942D6C95F3A713F9BF9 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4816EE3AB37CA43C47A9301588D2B926 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3185845707C4DEB03A4A0B0D59B590 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC26500FECF4AB1B8CA66812404EEACA /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF2BA687545FFAD96B628E428424C36 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3C3D246460633B8E7681B3AE2B683D /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = A038B84D33708A323BCFB602B94B3342 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48D745DA56A85F28449CAE5FA9EC6266 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A70C618CB6DBC74508136D1EDF9EF1 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FA4F4A0876C0F4828B223294121BEC4 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C13B453637A18D4F87E4C8159850DB /* EXSessionTaskDispatcher.m */; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F272A6BAB8AED54A66BA10777835DDE1 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5231401CF02666D23907ABEFD844107 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 66B41B6896BBE870A2C8D111635F45BE /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 32748E61FFC7C92EE0AC455FDC59F435 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4994983DAB79F82CB6C7B3FAE8EE090F /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9C63F1F1AD22BD3CF112004A813279 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = D9945CD58191794AD8563C6FEC840837 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6760358F1BD3FC8F858FDB499C36A5AB /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70267AA3D3AEE12F21F1A7876760084 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBFAD01BF20353FC3A0C29ADEB61C615 /* ReactNativeART-dummy.m */; }; - 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 74FBAD16EF30FDC924BE0EFB56FD6B87 /* 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"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */; }; + 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 992A0C44C44C004243A5AE0CE646E74C /* 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"; }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C2327B1E76FEDC5E1BC5D098B75DF3 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 165A5D6A943859F7AC5F5CAD7698DFB6 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86B8AE93FCB0DA330838A9B7B2B4EC14 /* EXResumablesManager.m */; }; + 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4E13714B040A0054DF3CC83A8B504E /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4A2519415417EAC6D02A7450532D6A1C /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B70A573BCA9B6B41C0BA4C0834D5680D /* GULAppDelegateSwizzler.m */; }; - 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 708361AD98622C496D934609AAD7DECE /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87ACC83C68C147641F3FE7984C2D84D6 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = DFD14A7E096A0397252F06145B0E5A2D /* RCTProfileTrampoline-arm64.S */; }; + 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */; }; 4A57D866B6D03E82B4FCA3BA226A8984 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2432E8B9CD3DD7CFA48FBEF88B37FAE /* it.lproj */; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = CACFD3B4D7D3ABE9EF1F6DB866040363 /* UMUtilities.m */; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */; }; 4A7B7B8C3E551805997761CE92916760 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B8B0A5EFCC70AA16059E58D6A0F5686 /* FIRCLSSignal.c */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F89A3999443465AEE687F68B81AE431 /* UMReactFontManager.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */; }; 4ACBE900862827AF5A0FAE7BCBD622C4 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3E342EAF652660551C85D45C60C4C3 /* FBLPromise+Wrap.m */; }; 4AD9CCC85B3778658169C43F329DB13D /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5281D725EF697C3F1C31564DE860D /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AE162265A0182AC50A6C8D4A09E0F1A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D856F7C4A6C153A4CCB62D9682BCB6FC /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B60A63908E158D8558B4CA7B539FC1D0 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = DEFACB854A253400D27888A1E5CC08DC /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = BB735AA59253F87CCF6D4E8061D1B214 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 28A50FB61E64F7087DD199F877950810 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B5EB86DD26EF41F80D4D3BA670D485F0 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 4B78280A70D9BB666FAB125C4D89A8AA /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AF36E09DEF089E3AC8A2CF3A8A811B /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E19D89B2C2E4701FFDACB5E4D7ED6190 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D33CC779D89B078E3BCE411E5728460 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 695B288BD0BEA5E6B089640AB5DB98C2 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FD894F9DA93056AF5ADAE47ECDEAC68D /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = E03EA39FB5B33F23D3D938466661DD67 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18B2C156A8217BBC422049B064443B97 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDCF623BA7B069648767D94FF300111 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F91A8AA68C3D8EC78DEF9F7CFE4653D /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663B2B47DA53BA34C56D1CBC6DCD2D4 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC728135D062FD542E1642F6D3CFC90 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7D7E9EED695E3D5788C7DFE583E0EC /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD9EC209A4AB30125621565D7E5B66B /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B962A3B09146BA12DB89B01038E78F /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CABC19ABA3AF2124349A3F412272F50 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E8976EA262E215049AD45EEAC21C54 /* GULNetworkConstants.m */; }; 4CAEF5061BEBF77B81CBB7A5C4D10871 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4D313D8A49A00FC938EE3BB7005BAAF /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E7DCFD8A4AFC7478930E66C5CEA1E6 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF3B469D09368C4AA87F78EEF21B0AE /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F351E2BA4429656767AF3FA39D69E68 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 616723362C3DB79DB2DA7B7FA93E8404 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D47170710625F3E87D6C45829E93939 /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3570D5A579ACC4AC7D594C3CDA2BC5CE /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 685324F0C256DDFA8F8CD68DA624F92D /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3E26DB46227C02DBE7BCA3D0F2E47A /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D47170710625F3E87D6C45829E93939 /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEF23C7434D886C7B31145EE2C9BB147 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4D7D18F40CFF9411ED36F932141B8A1F /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = DD727325FC40AC53D0E080A5E41E55E9 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B871B29AC1D901A7CD1B1F289AA76646 /* EXSessionResumableDownloadTaskDelegate.m */; }; - 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61E3195F7C25FD9632FC9F74617CC280 /* EXVideoThumbnails-dummy.m */; }; + 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */; }; + 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */; }; 4DB203F1439AD013371B24327625EA5E /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6304289097410B42387B3F2622F04C0A /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = BE0072E587AB07D442D8E866C4321D9E /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D139BC9E108DE20DF1A0C52DE7188BA /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E1389A80549A025F7716E5F0A2E00B9 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CC6772EDF42A0EE1AF458A2D575F4D74 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02290B6692FB3DC0450A6BD5137AE1C9 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3839929F403C2B97F7183148382BF0B2 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E3D47B57A0D93260990272056DED85D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C35CD892B3FFA25DE377E2E2937A40D4 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D78452A62DD6AFC3C3C521F35B8DD7C /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4A8E7D4B9681AD961295AC7A482D0A /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC571A141141F6091B06FF183A38007 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 980B298D5BCD8C16C3F0E8541E137A25 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = E8CE7715D6333420A83E113B345FD9CE /* SDAnimatedImageRep.m */; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 392D8F649B573D0B71F6FED94B8ADB3A /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D413EA356D41A308D1FE05DD999DD51 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B66533D254EEE8688D4D571BF460A85 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4F0B3DB66387E10FBEB072D0B679124D /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 39334E3B147A28B2BB778486FF259EF1 /* FIRCLSContext.m */; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2D97964960BE1EB78FEB26FFB22972 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F47CF100481530E6DA413E521C19D03 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = B996C693A38D812D6D4B4A84613FE4F0 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F62FEC993F173EA5B75FB9AFF63D282 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F87D1A058F174B42F92C136D26FCC41 /* FIRInstallations.m */; }; 4F6830E3F6DD8CB7A6306B32FB83D855 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405905D8326629E31F5EAFB935A3EF01 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0210E9FDE6D3CE223268425B5A0FCE26 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B5CE12E9C856E908F500504ABAD1B /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4FA74F8D18F46473F21FB7A68890A156 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DEE9AB9AC721D2590B458D6A97C44D8 /* FIRInstallationsErrorUtil.m */; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DEC0F0DEE8E7A7CAF1A7FCFF5EAD26 /* LNAnimator.m */; }; - 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A2438BE060132EF4A25AD96F16032F /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EDAC5ACB7725E2AF42A171B9B5E299D0 /* REAModule.m */; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */; }; + 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C386215B39976F2E820F9A16C88C6F3 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F17D3220E4C30BE2EE0AB830B75CCD5F /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */; }; 50006F33DE03FBEC223EC914B1421369 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = BB69E3A616A3A69DF7A2CA81DB6B6B89 /* FBLPromise+Timeout.m */; }; 50077FFA928D5FE4958D1CBFA5D63B60 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52DE54239AB0D7C69BE7689F26E4FFA0 /* 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"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FD4CC463B932B69492B9B8CA2FDA286 /* RNLocalize.m */; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */; }; 504624B6461EEC8B924857670A089B16 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F90AEEEE3749DFB3A07AFF8A4804A3 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C501D98FEA1521D7804073FD570645 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A110CFC654B4030D0993E2983532B012 /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2994D9A17BFD3845635A5464DF64D026 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5051BDE8EFA401DF6FD5ADE291764FC5 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FF2806A2FA1A8BA1E9F9E19A2CF205 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFB40693130816D3663EF2FD82D6B22 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FA282DD1579E726B5D9F87AAEDB077 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AAD56FF574E284F5AFAE7608EA372EC /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B6223F41B3CDC9E617CB1AF51B90A9 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14F619F27EC6BCC194E4949C5678266D /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 509FFDC94A9F414B55EB263D94A05932 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D24CB1447F4332B0BD656806045F5A /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DA31411E38B59F058F2A72E0D3B893 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C9650D93DFA6DEF30AE085C411E408 /* RCTTextView.m */; }; + 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */; }; 50BAA98C56B5DF14D716F743171A2981 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 170DE10ABC42423AC407238DF71D2C88 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50F08A7251C4923173965217FD06DD1B /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34EDFC0601787FF6E6B34F444FC4958B /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 50FC2F3A2C5E073897D7CE9A41C1B0ED /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECDD200CF993CB41FDFA3BF409D7DE0 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1233,19 +1234,19 @@ 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = D65C913026B040120C8B88F361644471 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C80FE0090F04E1032603B3F56C4254A5 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D46183B657931FA50A94CDB9A298A10C /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D808B31B6193F0FFAA49F97695BA4E /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 633565FF07E1EA2F970452302215455D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51691AD30B24CE0806DC643ADF71F75F /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EBE2A9E08BDE917D2EA07D3BDF5A00 /* RNConfigReader-dummy.m */; }; + 51691AD30B24CE0806DC643ADF71F75F /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */; }; 519E971486075E2256EBE61AB02CF8CD /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F9459B3044F10D2D74FC214AAB3E3C68 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 567EB2683F79F5C1754B22B0EA5101DC /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C34647C34D21CF4B30AD7722FEEE08A4 /* UIImage+Extension.m */; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D8D6504E5ABA47379B5C27EEA1CCC6 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52084A3423DEFFFF30567B2B525B74E8 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A34DE3E221842CC83469D3E228715AE /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 523C230240B39A6F9B59F789FDC604EF /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B644E8F792C7D96366611784707B904 /* GULUserDefaults.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B3CC1D6BFB09CE852315D68783AF14 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 331430CBE1AD5DB6F0251DA42DF33E66 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 78812300FB3459C3005765BCDA4AECAA /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F9B836809543672AFA1F7643E98628 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000CF15380CA63A5710AC6578740E307 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 52F8EE02DD0245981843DFB67ECCC7CB /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 317F01BDECBC5146ADC88CB6C75D1F83 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8722B9D0CBEA355542FE99C936B63CC1 /* UIImage+Metadata.m */; }; @@ -1254,30 +1255,30 @@ 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB73B975BC128BF092B73F3434D9BD8 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = E407F007D3277FB2D6D3144046A32B0A /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = F144AE35828C9BECC6CF9A680EC9F907 /* UIImage+ExtendedCacheData.m */; }; - 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E02D368AA991FD9818C2E0B617FB8951 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7487231A9D5705D242C2DA39CBACC90E /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 656DFD80961E896C650124823645B1F3 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E97FF3BDA7FA877AA08E7C4A8AC7D85 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5436D7BCC99615EEDABB5378F5D3F69D /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C14C10E415C0FB7E8D386356542A928 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 73427C2B22D89ECCBF3EA77CF17C1302 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBF5527C184CE8B1D439B2077A4B6B9 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FA32D12690DBE4244CBEF4FC560664 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE796E3D7DCC5F9BE8D6FC3566C3A207 /* RCTTextViewManager.m */; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */; }; 55027C288B5EA46BD4E26D342ECAA302 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = FA003619DC99BA599FA4F71F68CD7770 /* FIRInstallationsIDController.m */; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 34035BD0C190B26A0634E24C0E63A8D3 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAD4EA00627682F58A932674A34A7CD /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C19E86038C174C484D42D219E678DAB1 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F2DB13D06542D69EA4B6D188B4DCC5E /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C866DB4963DE027C3A5C558449653B /* RNFBCrashlyticsModule.m */; }; - 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F4BA2D62F40C6E60143B6A2B84DEBB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */; }; + 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6829B2C89A64CE5FB5A5CA1D9D81EF /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6692B8FD79F9BD5FF6D035B9D224E594 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 558BF4D03AA6208D974D9C0157B9ED4E /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A4C6AA6995B678030A535C64E2493C /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5590437394972755BDB7FD9DA85BBF4A /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 805E69C01A0845C589EB05FDD1BDF743 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5591AD18A453D3B2AD2D7DD15B14EA16 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5457C15579961852C2E4BAE3AC7CE1 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B132553B56176DECF6284C474251A6 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A5DE62033605B41B6C9578508197ED /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 47B0637420115E94A5E606433A5CB9A6 /* GDTCORLifecycle.m */; }; - 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3EE3C4B7F736898B30124303E381C3 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55DB238CD9F02F78D1E418B96104D2E2 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 506FCC70C04FCDAF0FFEBB0EA7B20F57 /* 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"; }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AEBC87CEBF5C2C74564537E3E555AC6 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = A1FA99C9A41D79C4EBE972BA7A8CA3AA /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1292,134 +1293,134 @@ 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = CD9FDE20BB6C3A8A95497CBD5EF63471 /* UIImage+GIF.m */; }; 56CC29AA7D6ECAF485F56ACF79A62324 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E95DEDB271798F95980DC4B06279B63E /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CF61E84FD48C3A5881D4531BA2D990 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = E19E13892425E415DA3AA03CE7B08E14 /* libMMKV.mm */; }; - 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BEBEC84E17380EB751F726BAC379C0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FECA2743FEC6FE8A9D991B3ED16B2C5 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4F664889A8E779D64A212931DD712C9 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = D533F060636B8AE2F97CE233A0513FEC /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9054638FF8871861E9C23D6601268C24 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A3D0014B2EFB2235CCE8067329760B /* PTChannel.m */; }; - 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D846EA1B85F0B04D2294871F7B55A06C /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = E3335E54693BED0B26BD4342020C6645 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 579F4CD6E4E3D832752807C6368C5943 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BF270AC328E5EABF4649740D18631529 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB8FA8D851654513510A4DDD8AAD29AF /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 449F342C2751DCD055BE843E0851F4DB /* SDAsyncBlockOperation.m */; }; - 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6D1111ECB6FF8434C3EB83F5DB44F05 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 57E23479ED5C21BA10F35EE9CA6AB38C /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC2BADBC6B01A48B2E76D23BE432B9D /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57E28CD0D39B137CA6BBA829B38F0544 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2497AD2C3A38487B2E6A2C14553F93DE /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46C3F960F2F470828033491C1D3D158F /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 57F2E9384A1C3DCF46CB5242DF03BD36 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C88A49AFD541B73D9A26B8F5D5760A9 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 944D942E113B09A0E9DE0486D1E77562 /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 531D2B71FA6B7E9275671F117385490B /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5876730F42F0DF681374CE70D9F72BE5 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7248EE9263456BF9C65514F5653EC8 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = ED4164C5212E806BB956239B1B30F074 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E5F049A821EDC2FD95AC97BFD87975 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A0D03F97F8754E1F8EC5EAE1911057 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECBB15C0BBC77F5F9CF70A64A07A1F5 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A2842000BC238E4A5FC678C67173DDA8 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A14416A831C60BB7B5F99F3971D040 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E329C27A9B42D3693F968168A55ABE0 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 97FEA7485A09F5353062258212D80D74 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EC53117147F13D4CE7394A0FEEDD14 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 591EB1308889D486345A46D358670D70 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D9EE2128D61E1A9365547872513A7B /* BSG_KSLogger.m */; }; + 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */; }; 58F8448BECF3B722C9B2D56C8C114E7F /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 556BFA2EC56CA0C1FC63839589D38A7E /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 591767BC4095B3A9AE9EEBC3E6F982E5 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAD9AF325DDBD47E912B1050D1E9916 /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F6661BCD5A254890FB784D224325B3EF /* EXSessionUploadTaskDelegate.m */; }; + 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9642778E87FC8AC3F9807B8EE25E64BE /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 594932D21609520B6E215F2681627151 /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = CC059C0AE44FC1A1AA162C66F274F452 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8602DB997C9B9C93ACCE5460D2F804C0 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A3D7CDA267E0078167CF83B1C5BF76 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CB63DE22FDA5E898A09C8967520E51 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990D046CB71FA7ADC5C8823B06A42A3 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC3E2B17B15EB6F478932D93AD53EC7 /* GDTCCTUploader.m */; }; - 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 890A15DFAA3269F1E6B3068E7BD95D69 /* BugsnagApiClient.m */; }; - 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B839FFE31FBF5BBCAA74912A4442C4E0 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */; }; + 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B04B2211ADF548091F1BD6F7397CA8E1 /* SDWebImageDownloaderOperation.m */; }; - 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA45CA4388478E91926C24AD8184866 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB2ADA2F6647DAF1BA35F6D279A64F2 /* UMPermissionsInterface-dummy.m */; }; + 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */; }; 59BB55E1204529CD16E1FAEF746D3318 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = B402A5E83CF2AC341ED741CC58C7188A /* FIRAppAssociationRegistration.m */; }; 59C7F51036C7FC05F1C474145584C867 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2D281233B93C81791D7901BD3F2964 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F214CFDCCE89A85495D226062916CA /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F9D6A740E135D30F84B1EB60183C1F3 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A8A7A840DF2299EAB32476327A690FA /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E420CE57027B3320D62EA03FBEE125B1 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA8D20000B9413674B8673B7CDE2E72C /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = E44F0B0A2654DF06F2373E2AC40C7F1C /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 18343429EC371A0D798414A686989445 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E1A96874575E082922F6133E50001E /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 234D27B3B35A09D366BDE4F3841A6C71 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB858EAA1F43F648D6CF4D0BD8C8AE0 /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60CEB4A382BD7439F09781B449EC63F2 /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 5AD4160A2F0C66183F121D80CE0DC65C /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 769FAB53B4979A07BD4073FD8A4F1FDA /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BBE9032F531E4EC1C6C7DDF23C89F3 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BDE0A216967B3C59EFF86E90E23EF2 /* BugsnagSink.m */; }; - 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DC2211BF9562F6F4C10A0A887E55A0 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */; }; + 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42CADC23AE51C0C0973C83B906D51A90 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 35FAE16347FD77AD4FA13BE95B2EA6EA /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B648720A85B4FD11CA2665BBE8EF6F4 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D35E2CDD2B60CDB96841698F3B78F4 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B97A113684B4D9213FF2A8D21E5E207E /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5225BF2A7F7B61EF9A2558B51FA60513 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5BB2BDF346E8282D6A5E781D6BB77864 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF79ABA691C5D9E7A52BF0F5FEB115A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0A447C357EEF348208F26A570F8EBE /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C39633638470EDC25CA7433DC576ABD /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5CC0C18D289DFF965C99B40EA1A70A /* RNCWebView.m */; }; - 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = A3CFE45A4F15CB1D24932C11C9292E85 /* BSG_KSFileUtils.c */; }; + 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */; }; + 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = E36F12B577D3551BD3858AB7A2A3A2F6 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5BF1A5E804B3CE751BF48DC4A1AE077C /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A993ACDEBFD7E0ED90B4769206BCD30 /* FIRCLSDataParsing.c */; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = D72CB9DC4B38BB6A28E4438C66B379EB /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C44CF29220EBC8283BD04E3DF55ECAA /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C39E2FEE8F0F08EB1148A3DDC2CCAD3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F82EAFB74F63EB62458ADB027AEFC7F /* GDTCOREvent.m */; }; 5C5C304AFD8755D076C199FD1DF4E623 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 412B38AB8ABA12580A6E2542B6393808 /* FBLPromise+Then.m */; }; - 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B5FED3127466CFCE12B1296EA6318FA /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2A2476FB2776F5D7B808A2C5A31C05 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D756115EE2A49A48EA6F6F5EEF2F1AAE /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = C662A9566212F94052EACC10AD44FE80 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D650EB3036130CC0F99273D1E13EB3F2 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CD680AAE0F11E6C94D0E1EED3C01EA4 /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5145977F0E57DB5CB2A88B1FFAD79FB9 /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E080DCF6D040B38C1CD1DF2EFF52F6 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = D03CA44CA8D6720A679EF538EE831E1D /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = A15F613C808A7DF83EAB843ED238BA8B /* EXAVPlayerData.m */; }; - 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4A1368E40CE867E264AB6291AF4258 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */; }; + 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E98B42DD40D4369D494747760E7B00 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7B9CF24D42151901E651FD5524ECAC /* RCTBaseTextInputViewManager.m */; }; - 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 97AA1F288B625A0272830DA8D840D5A7 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F114128E907A0B271B9E581B7429DE9 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F6819397830D723FCF535395C4446A /* RNNotificationCenter.m */; }; - 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B5750F33BD3DC48F03079BF1526E8B6 /* BugsnagSessionTracker.m */; }; - 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3D89E7E25E2144F84984ACA68EA4F3 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */; }; + 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */; }; + 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */; }; + 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 774C2B51FB32A49702C6285EB360644B /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 5D87A3F2F1AFF3C61BCCF12D3FFBB919 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D02B74897288E6885023A05BDF492C /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5D94B0773D7A674CAED8241CC030A3B3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E63150E8640B2039AAA633B49BCFCF35 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CBE4963EB65015C4E9BE84DB25AE408 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B64B80EEDD3D9194429EF5CD2A1F9DAD /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 48DD544A4A0220121B9CAA704FA49F53 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5DA0F137CAFD3FF8D4B8A1605BA3AC12 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E594EEC19882003326320AA9B66CA32 /* TOActivityCroppedImageProvider.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = E7962FF1074F6765366F816E33792380 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6EC151FD8EFC96F9EE0286604A838191 /* QBImagePicker.storyboard */; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 150FDA9F3C99A2574AD5D92EB5202F68 /* RNCSafeAreaShadowView.m */; }; + 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F42428EBE2A581D39BBA5A76C54A6366 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E14F58CA03D0529A4624D7BF7352794 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD7195F3910E7BBF1092BE51F12F91D /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E2F5CF69877E4883E32E45DE05F14EC /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A231A645AD2E00A8FE98B6AE41DB9D /* FIRCLSByteUtility.m */; }; - 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 81997E58DFD39BE48DF769EDEF30A1FC /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E66755E582E9B2BF7DAEB72E960992B /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6549E342A6172E43AD498F2E37383650 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80086B20D034186D33C1375FE9E128E6 /* EXVideoManager.m */; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6957E1C7331CD490BD9C6BCF481CCF /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2859D8A74E85984B3D62DE383B20517D /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC736F5F5CDA57D61E6A6765CC3A096 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3A15D5581EFFB3C30EC9CB006C82880 /* 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"; }; }; + 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38722CCD059CF731E8EB87988132C588 /* 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"; }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF6864156391147F5F50F664D9034C2 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC8492EF48EB02B79B84699D1B99F39 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9F6AC58CF7A8930A08AA3C2F3EF1B4 /* REACondNode.m */; }; - 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13EEDB47087C94BF230FE3C727ADFEB6 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */; }; + 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C0993205E2FC51861E4E74D88F0386 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC98D681B86BEBBFE86C4BE23A0AD3A /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 66A1B5C9B5A580EEC6213EF295CBBE5A /* BSG_KSCrashC.c */; }; - 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 61FB853950F213BE1994835AC2526789 /* BSG_KSMach.c */; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF457D4B63350C2FE526C792412866A5 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */; }; + 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 886D771EBD66B9842FB466D235D11AFD /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DB07E785B2D2E4F11430656ABA77EE83 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6025F4909E87933FAA58496F91F79895 /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CE051EE441FB1A53DB09B59DA174E3 /* FIRCLSFABHost.m */; }; - 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8C051CCF1D32FE5FD1447947982F0BB /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E60F7E748AD1A7FE5E90EA4646DFDB /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A15AC41CA6565459F389839B62A39A /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 084009312EA136C724E559CAE2842EC8 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C62E7C8B92C3475544C1304C7C5443 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60D5387F2D3F4D19D91912339054162E /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 2358E4C41369E72DA278AD42A8221CBD /* FIRCLSURLSessionTask.m */; }; 610145B3177894F2E4C147889AB8B007 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 225455752F6E169BAB78BCDF65CCC8E3 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6137BD4551FE76BF6016B5DDF2572CE7 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5084940063354722127AA25C453D6FF3 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; @@ -1429,102 +1430,102 @@ 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB848245AEFFEBC478657CA8E907E9E5 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6180AC7AB06E1D1D6E01944FA4CFE5C8 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 80594D1255F9F858C24487EA080220EB /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEFC073B804E1E31844C9345AAB122A /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = DB482367CCDA3EF7644CD67EA1F641E4 /* QBAssetCell.m */; }; + 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */; }; 62155DE9CF2AD9385BF11125981D1015 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B2E21284F96DC922A617C4E62DA34C /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CFC93A785C1844A857C11A4940DB17F /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88C3924B860C66DB16F359BAE6CB4A58 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 986DBEC29D4033BC81B8504B155CDCC0 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2E31737282D6D55A193285CC2B879B /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E24704F1B43C47872C83FA3EF020D63 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA94A4C46543CA8BF8CAB0E4C79E992 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2C6A9AD5888A67928FE56FBABC1FF5 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62E6546B51CBC0B58686EFCE779EE529 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DBC109B89F7D5A72A4000B12774106 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62F70755F26BB87C793E3F843FAE38A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8180D9D0600FBB6EFA7C626EDA808A /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B6223F41B3CDC9E617CB1AF51B90A9 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACB07BA438DD46A63C3C2D5D0D6F55B /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE5C5C34D7AC5559328A2A311322501 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D00DE655DF4EFCF2D240F3D033EF7680 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 51908AD46D835320AABC9C81D96F687A /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E22E2AED665251378C43B45AE08032E /* SDWebImageDownloaderRequestModifier.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3C920B8349C2BC219537546757BC104 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6450E79F5C6AFB7273CB9D4497C68DB1 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89429D1E9F98E5621C0D0917AF24680D /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD31703AF83035CD66F6AAABB86F823 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A47FD4FAEB511C0AFB59A51F6D6A3C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBFBB790A83F6914808B3DA1CA67F5F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A6867C7625EEA47C99B617872A539B /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = E93FE57123F6C367D3B0B7B7B97D9975 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84BBD9EECFDDC532701B9676429F63AC /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C842F32AD724F6D4667AFB274A758ADD /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E39F7CE4B77FAE97B47107518D3F547 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BFFEC177CB587C0C1E06AD0231CEBE1F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B6C33FEA3B536CA832586E380533053 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D0E220F2D5B5E0676A13272BDB5264 /* RNDateTimePickerManager.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B1D14BA71FB1347DB1A28BE8DCBF6F /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90D9525835B6AB395CDB85717D5A9F14 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8534B3F49BA9E517B23261DB268B0E /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8674700211CCFA5D9360B3DCC5C57A60 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED0B1D843E6B1401918FC160A37D0BB /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E9E7A3764B17C578D2896BFF1CAB3819 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 658502896B3142F7FB3347E9BFADC949 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = E07970FD2F62E7A4DE75E5F6F791E13E /* FIRCLSdSYM.m */; }; 65897EE734635A15B379D13013361F76 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB51CD73695A6728205C7FD008D4C1C4 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 85482E2C070557F0DAC64B563CD678BA /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 659F452F3A5CE58E34234230015B42B7 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7DF1EF7AC5FF2323FCE17BCD757D5C /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F14516FCAE5971F25D6B28FF89904B6 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65C84548F46F6041AF38A86A11C6DBF7 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC2DC3D0FB74A016AA36240BFF6D984 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0212AD1BA59EBDB927F3B3CE574A2FB0 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2636254F42F58F2C1C77ABFB08F3DCBD /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8B8D3EE9FEF770EA3E9B53FCA5A4B4 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = A34D911B5024A8FAE46EDF359A0B735A /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DC31974AE9F7DCA7FC4F88DA8CBDA9 /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 208B4E659AB8A1C35128F4A68ED6CB67 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6601F8ECA432C1F44DB564CC6B487FAA /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 565351C7D9EC3CA46AEF022A4814280E /* FIRCLSFCRAnalytics.m */; }; - 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FFC802CC85DA133D6F76AC932F2850 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87ACC83C68C147641F3FE7984C2D84D6 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 506DF3D395925462A6CB31F10E0D4ABF /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66487582A75CE11A1FD7B6C7A656D085 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FC14BC25E0E93C7E481559276BB9A3 /* FBLPromise+All.m */; }; 6656A3BDBB5732C65FA4EFE23ED34161 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 09899EEE1275EB46A839E7472C1D1858 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 3768CFE13C9C3B148082565467DE292C /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7E13AFDC5D2CC40492D4340BA0640C /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6670510400FED26761289A853091329C /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2432C8A76487AC835CB14BF897ECF870 /* FIRCLSReport.m */; }; 667B308A0F3FA4A44299B32AE6117AB1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 382B7ED7CC50FCC22787DB5FEAE68964 /* FBLPromise+Await.m */; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F806D732ECB4440DCAC96A045EE05C2 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6FD25ACF2DD6A082A78E21B380F24DE /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BBD17E2257061C54306749D6F782A0A /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 40A2A9441C2073C5C62DF14189442683 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66A7B1236BD884E2137D3FCF330437FF /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A30B52E9C591000F8E2A982098C433 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE0643EA3378DFE88430A4E45C70E561 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1968C29289D13793139555311BE0F758 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 808D5AEA18F38E3F24F5F2EC4FECF644 /* RNLocalize-dummy.m */; }; + 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */; }; 66D68DE034EEBE7CBE544040113C322D /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 36532AC1B65DC9D399C97E41F28ACC54 /* FIRInstallationsItem.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F035BA7D60899A59A77BD8090C7F4423 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66E9F62F5E30226E2AE4FCD8FF6EBB90 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9B22405078EB22D6B97880B7D72BA94 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 66EEB6F1DF23F5A10B2562852F58D32B /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 748EA3EB396179ED935CE176587C6920 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C68857867E7428DA7B276598F5F6D2 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7965D381856406721521103DA1BDCF90 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F4107EB691C1753CB2A9F8D56920179 /* SDImageAssetManager.m */; }; - 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D28E2B05F53F7414E0A3FB1A75786191 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5DAD1FF108FAF1CF115C98B196C0FE41 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F46D2C4EA18AD659465E7C64770227C /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DA676AC0927133C023DB4D3C555A52F7 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E76055CC941B5961D1066A9B83B898 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EB61D181C72318042B364540B702319 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 675BA275D6D0834300AD7B9C224124CF /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6FBE67EA6C7D82BF4E3C55391CC500 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C9FC5EDD931700847087DABAEEFAA0 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67796847D14ADAAC5018A99AAADA7AED /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB612B0E9982AF890DAD9C6D1AE7055 /* GULMutableDictionary.m */; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = DD515B839535C35E78D1654A5B757219 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 679174798499AA4B6CF32E2F96B10D4A /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E526059DE298C4026C050A54B2D6EA6 /* TOCroppedImageAttributes.m */; }; - 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F9129D8DF249E413E64F82408FC3C052 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E8B612897576AECEB807CCB36D99CB1 /* EXImageLoader.m */; }; - 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 19049960F0F903D5C838A3F765A9F404 /* BugsnagUser.m */; }; + 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */; }; + 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = E08F1CE1FFE3CCBAD65DC329839FFEC5 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CE4860C45A1EECB6A574CBAC419AF7 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 524155739FC18AF285E601C5421DF51D /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF220E1D8A9988FAAB4F481EFFB4B45 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4CDB0D9C73E51FFA334B04682922010 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 6843B2F1D94E9E148304314D61C1717E /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DED4D23B0669071B283468905049422 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 684AE69A17E2DD66B5DA5411EF613B6B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 14D6573E2B8E215491914EED243DF4F1 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 107158AEDA420D7D0BB0D17FA8A6EA0F /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 181D663F17AE7BA3F32C41680C739CDD /* EXAppleAuthenticationButton.m */; }; + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 802E746E88582C5B35531B625684F6A6 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 99559E25E4457091FD3799EA6F591DC9 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 679EE78CE2218A00785083968D3493FC /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 3883532CCFB6AAFFAD2F38BCA6B4A0F9 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E1B5B1DA60FB2372F23D4AC3860379 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C60144FAACE184644DB01694A8C6D554 /* FIRInstallationsAuthTokenResult.m */; }; 68E9E3FC76B87B92040D480C1B5E7DBE /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCBA3305D0C7ACCE77288EE92A0701B /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1532,80 +1533,81 @@ 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0C1CDDA67C37CFA92D06224CD0FAA4F /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 691C9AB32E9EE3DD7662DD77BD9EF84A /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 012B713C1CA9852F2D7F841FA563F477 /* FIRBundleUtil.m */; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC23A228A9360E31082397AC2793BDBC /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 273A9F95F24B0E55A32AF14A8C1E12CD /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5331DA9B969A270E440309EDD679944A /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6938ADC737C2BD7B4F258F5C7B259B73 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69B7BCD3BEC75A78828B2A3ADC986885 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E69871B5382F5B39FB85A896684FC1 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 375033BF1816F43387051570E1E5B279 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F41E065574B68F3DF23FF10964A45C /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F43241BC00005D58AABA0BD122B8BAB /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D7932FDBDC43C3BBDF0364EE33D4D9 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E98FD9E9544F3020335ED6379EFC99A3 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C338D468CB64823785703C6D39FEEC8E /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A375F4B1D46A2F4ACE114AA6BE4BADD /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A625D5B1A00836A8D8D0E7AD63B34B02 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E3336526E7697B5B32D58EB57F0E9B0F /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22120B437DE83F29307E3F517E940FD8 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 830C4F640F8687F78E2391C6481BCFFD /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BFCA34CE520AE47C12AB8FE5E89E18 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E2D5BDDC08A1611AE371598671BB5B /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC70626901D88616D1FAD15D39EDEDB /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = EE72FB60DD5C608CE489AB1E2981C371 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC9857D5FAB49484D467CE13309EF44 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F34A4650F7A1ED079B718C89BFA1545E /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1254373F44E1E4D0387E98B7DEF301 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B04D0AE9A03FE30B97B1BCF723F1460 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7F03AEC29DAF692493D9250BD5F37 /* FIRDiagnosticsData.m */; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 371E7EBA4B68DECA2F2E723E8EE42914 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 05AFD5AC20FA42C696EE0AD06F4E7ED8 /* SDImageGIFCoder.m */; }; 6B47BC2235EBB1C34AFB7B781FE49E75 /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED252E21FF7397ABC96B5EF8F34C8E9E /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 07DA72B0E907561B03C33D6C0A51114E /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4232D2FD77BA802AFEEAB02E4A2EA05C /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6B6C5353B590B5F7407E42D993C98BCD /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6931A5E79688F5E3798C562A3BD97709 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B99A522B85248A477007A2F54CEBA1E /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = B4348DCBD70BF95ED2AEB6DDBF395C16 /* NSBezierPath+SDRoundedCorners.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = A59EB6859E98F06D6B27ACDA256F18BE /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 019C9C9440A1FDE2E3F1482D54AE8B55 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = CE87DCCC6ED705AB23259C25612A104F /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B8FEA92ED39FD4AA68B5B1591151B1 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 990F70B96CC4B43314C481D8A39032F2 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A6E82644D6D2487795445909B5948A /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01FF855A319CD8E49C32A606B00E197E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6C1FC05C0464B7AC37B8E5F355C07B64 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7802A0AEC86D9095B84A3308092B8F /* FIRCLSInternalReport.m */; }; - 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B3B0A820A8CB3C626A79961674B639 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E752934C099608793BB304F3E8C6889D /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D38318F50FD0275426F0ECD343B89 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 941C70F45DADE90A44CE03CCB6FA618E /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5D088B7AA2A38C1475B82511FCE848 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 336CEDFFACA0C972208DE707FD79F5B5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F26214F701F10382741E6FA2C6F1E8D /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEFD4F488C804AEC4D80E7A140BEAEB /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0B53B80D1B454491C9231D96BD06EB /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4A9256F4C81DF672287BCF3150920B /* EXVideoThumbnailsModule.m */; }; - 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F01565393F274A95E7F165EBA9B8E11 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 11B53542037E663840FD9FA8BD5F8513 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7864190D18C69C165E4170A9228073D0 /* REAPropsNode.m */; }; - 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A6F9033D23BB0FC3865FA431E5FB6A /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */; }; + 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */; }; + 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 31B9F5606C0A003A29164747152FD690 /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1106A6F9BA7A5ECEC81ED446CC24210A /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D51FABC0C7DF19843155B1C96BF045B /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA2205B0DB48A881AA5FE79F5E2E62A /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = B3ACDDFF33E86B07EC03E8F70F31070B /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6BE3F9307133BD33AA5369A0A212E3 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 187319D1797E7B7B488AB5426C9483C0 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F2BFA9D42C64D5B34BD5545832430EB7 /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D7425907A788D25CB58D6971758201EA /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A289E61D153279A9DCFBD9173687CB3D /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4D89DC055743B6D3C35541C591CF81 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB411ADE790C2510C4E0DAD1B87E5C3 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = A3C7A3754F55AAFA5B4E91F0B9C8830F /* RCTProfileTrampoline-i386.S */; }; + 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */; }; 6DB3261153D3CA274595D307D8F3678E /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3894AD3EAF962787F17B00B35BE4AE /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1924C22D638CB1F31E99537254BB7D00 /* RNCMaskedView-dummy.m */; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C660A0E99EFA410A5F3EDBA9D02D9711 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B141395E864F5DB8674654FF4E361B8A /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E115E2FCA663E2E4FF3E0D84490191E /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = AB1251B8DE91FB9547F8EEA0734C1FC4 /* UMViewManagerAdapterClassesRegistry.m */; }; - 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20968529B02D627571B5FF52DB9FD471 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */; }; + 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBCD274CE6130A2ADD36622E909A653 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FFDAF3C03BDC002EC84E0FDA51480B /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F649EC43C845AFEB276295AEA4BC51 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 431639D851E7F30F69FFC10118B1A28A /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 703311EF445FFC66F07CFCAD563D418A /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3217A87B53EF22776DC07F1BB8099DA2 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 976B5795551A2E7A56C658E34A7FF6C8 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 272C770751661D7921F1846D2ECEF1CF /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1B28017C954B73BC9982A0D26FEEA2 /* RCTCustomInputController.m */; }; - 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFA04668787D4EC7BD181DEAF5872A0 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */; }; + 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BADBF107BDB808A6AB3DC7AA8E630E4A /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 705740F39079D637081BE25367657EAA /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 5691846E62D41417D7ECC5B8CEA51CAA /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = E55740D63FC4B29E894BEDF1F86F2A4F /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1613,39 +1615,39 @@ 70B26E53BF5C575643F9D2AD55DC2D3E /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DA5CF7E18315B69A50B3F8669057D /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C05937C718A1A204DE6AC17B844F985 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70DC9B10E6304A69135CCBE2AB263499 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5D462EB7698BAB22FC3D470A86C03554 /* hu.lproj */; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B2670751A97310AE5AA215BBE20D9645 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7116DD478008088F9138099C5A2DC3AB /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB4E2B4B71D3EA3BE4B3AECA7E68359D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CE49FC9D2024159D9434BACD3A9F92 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F6AEDA79A8AAC0437A28D32567B8E55 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 715A3D8A7C44869FEACE0514D575E18C /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 828CFF4AB4C0EBD7C6C166739540505E /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 719716B54EAF8C50EFDDEBCE1A46A946 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A548B344453E444A4796F7790CF9D8 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C84040C1023CEB270A65997858A7F379 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = EA30B3E3534E7C99F0BDD61195FF0B86 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5591E6B7FACFC8679C48A0C91F2537D5 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E656B69F22332512C361E45801B2FB8 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E62E919A84C7AF61D51E519E1DB1978 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5813ADBAA0C15D71832FB96884529B48 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 71FE63ECC9FB2805DB5D1D76C658C1DF /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D2FE3E0A6EAEBBCC00B5722CD50421 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B4E90A947A43960679E397F59A9CAC /* SDDeviceHelper.m */; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A29C604A57BD42B8900C43C824826EF /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A32E7EA27BFF86EC84B8888A3DE0290 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20195AABBA45654FD56A21DFD0546CFD /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4F446132D23565B4DDE72642E68872 /* RNFlingHandler.m */; }; - 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF25F6F7520013B1BC788524EB63C196 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F9576D5F082D40B434E83008BF800F /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D514F7ABA45792D8BDC4177C29DAD6E /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A891B8AC31C09D2B204B0A70FE8F490 /* BSG_KSCrashSentry_NSException.m */; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */; }; + 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B87BD89FFC807940769C52E39B7D396 /* SDDisplayLink.m */; }; 72A5A01001946EFB25C390868F8F69B8 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = CB17739A753C1166E5F9872137765227 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C45B8DDD9ABCB0C1B7CADF0DC586E9 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 961935ECB499C57F8D4C22EC2E4B497F /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D8041A5C643181CE077EF91E535EB4 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D74F5DE2FE2876BBB51C45F8AF660F /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */; }; 73326E676CD26D5A4B3B135758C839A2 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7876296B34DE0344C1134A5AA1CBADFB /* nl.lproj */; }; - 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D31BF7F2BBFB5B35037EF7540173A5 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A243DF2061DEFDDE291EBD729D7655D /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 560B5DF42CBDBD47BA0CDFCE162BB17B /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 02F819B95D90B8BAE8669D6BFD153598 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B978CE5AB255225FB9E1244B8F9A4B00 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 738DDBFFD505ED31597141E30E3E9C6C /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 38ED227967D423511B8471BC47BF9760 /* FBLPromise+Delay.m */; }; 738F9534366A0B4D79D59BCD8E17CA6E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D212A38E6188F241EA5EFD43E4C8B77 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -1658,25 +1660,24 @@ 7426A4DF508927ED0865330A8F501EA1 /* MemoryFile_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3E9EDA4508F3BA09D91D4FAA35B68E4 /* MemoryFile_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 7438745281FEBCA15582625516C7BEF3 /* AESCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B27F6E993DF24D410A1E20DF23310A0A /* AESCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 743E12102CBDF56F168BB165085C8ED9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = C987DC1C2C3EA4DEE1EE19442D15E17B /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 744043FDA72121C624BBD536EDF67D53 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */; }; 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3C21FF58057D4E5E3C0F365982DD58C /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 74466012CDD86409DB862C1330B47343 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75AA86DAFDDCD07DB9BDB4C748006A0A /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 745339CEE9D0D5A9A8878A4156040AF3 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C5163727A4A172C8A5BC1F4E73A4DD /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 606F1F8206FA2631EC8472ECA0D452D9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F598B1982F8C1C25E05583BDF26E8D /* RNFBAnalytics-dummy.m */; }; - 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA69F4F3BD05094361D999C5E097E90 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B142CD0FFB8FD55EDFA649642009291 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */; }; + 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F78F152FE91303A0E243061A1E2998 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7976DE3D96AC7E782E421031A9128746 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5E3C8A967801A97877FE39C9AB0A62 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5437A481FE459083C85E5B56C9B64AFB /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7511831132AD02DF13E76422ABD73F09 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BBB0AC7C7BD3E24D4B5BCF36443E456 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA32812336906D66EEFCF0358E2C024 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 756B96E7745AFF9E8482BE8A64C04A22 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08051D2A5089A408C5C8CD59BCA08707 /* 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"; }; }; 75988D9D62B888CC305B96425A0E82E9 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = FACEE59B6126610AB5919182FC9F4842 /* FIRCLSCompactUnwind.c */; }; 75B1DEA7C109573B61B0B2E64A230CF4 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DAB6A2124050E4A50E687C0C6ADBA3 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C1DD9CD7BCDED2E5CEAD484F539E30 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1897C43F8AF9278B0BA995ED379EF9BC /* REAEventNode.m */; }; + 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D88FF40C3C206819A95777E179C8465 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7641FF31D196E499F03DB2C7DD7767F0 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 028965E7D68DB3024840F17A1CF938E3 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1165274293DA486B43870F755943D0E8 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1689,119 +1690,118 @@ 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 204AA1F34D0CD579FA1FEA2882DBC382 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF63C27DA331326A58B61F06A0B59F6 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3468E6DF40BE224FB7B5B36C3B42052 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2BA432F71A8DD91B5123E64DCAE060 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6426F1889A9791E3CE94D83466BD1B69 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 774E921F71B6AAF2393C8F193A284BBE /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0B09BA43FBD7AFC8F6086713955F22 /* GDTCCTPrioritizer.m */; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D44806E9198CC0F0E2175D1D92AF59 /* ARTSolidColor.m */; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */; }; 7762E5F80C933C068DA4A4159F8BB3AA /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F444815D1ACE7BF9CB9E1DC1B600F360 /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2A0E7F36CBD96AA86B6CE6DED962A1 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = FD4034D4B159285AA34D05DFF251FBF8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEC4902BF0A2704D790A3260B7E3C2F /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */; }; 77B27E8A50F6A983B614BDBEE2B4C702 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C5E4C0A8413D4F42D209506917181EAA /* ro.lproj */; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3966967B277AC2F3E8AE6BCF38087818 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = A674C6505A3B291E753BAE47C2EFB218 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FB171311E3FFF3799EE2E419CAEF22 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 470EF1B9CCE7AFA44016C5FA4E492987 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF43ED1DCA6FF8F29E4AC95579161DF6 /* 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"; }; }; - 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 226BEBE36B4D0C89FDC323CB3EC1A847 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E994EEBAC182321BD1566AC9E72097FE /* 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"; }; }; + 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EF2F92B9062A1EECCB6E0C9C275D88 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7673F97A0B8CB74FE0DEE39B6AEED401 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2315C3C190483488A8F4D8ECAE972147 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E68C181CA6DFFF620CA0E551DD0813C /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 34ACC58172A5FF16DC138EB1B7DF0ADE /* RCTUITextField.m */; }; + 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2449633F1E0C2F5C501E47997BFF00 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B069438A3A5983AE69EE34D182D84A42 /* RNDateTimePicker-dummy.m */; }; - 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A15611B72EDCF7261B4DD9701CCA4C0 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 5136063FC836B31BA8064BD8AEC7C845 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */; }; + 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64459AA4D1DF8BDFD3F3A69BAE30D27F /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7884F03CF9FA79DBEE75B5EF7658A49C /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 832D92A44D7512814FD76FF6F2D14AF2 /* UIView+Yoga.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 48052199FB109BB2CA9986E3A7E67887 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78A29331837BEDAFA3DB33EA2E609F78 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 722696C1A7A2E6B2AD5F9DA93ED3FE16 /* FIRCoreDiagnosticsConnector.m */; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A19DD955D3BD5CC92BD4C467B640CA3 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA7E46911AE28BE36547F4BAAA49FF8 /* UMModuleRegistryProvider.m */; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */; }; 78FC2758830ABB5CE855643C56F43EAC /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DD819B8A76B525536896B3EA7CDE0E /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7A8628061DCD177FC8C5A697F0135F /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E24640D2265596A85A0FAC291D277509 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E5CE0D154F389D0A9006DCFE8D2C54 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = 60B6275CE5F7D80B0C80254CA5F105D4 /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F59079500F70E8EF795BE4C25D289C9F /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7968BD10264852AA8FD4BA57F5784960 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5038C337F9F4692F1393891BFBA14580 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 43077A161AD964BE047EBD2928AA5E45 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B1AC4695CB8BE38445A32F9D7AB8C9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C804C12BB5483D94BE067F36E5FACE6C /* de.lproj */; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2D5BB702C692DF290B229E14B42714 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BC48E400E1ED2E1C0240E038929D42 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF32756FE29546B636CF6D7509CBA3A /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F56CDC8B5D61606D9B183428F20D7D0F /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBE5B36CD09382E91046AA5604F5156 /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CDB61E056A7D391B5880650C9902FC /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A37AE5487B43F5EE6A9CE1D6F099D47 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF6EBF5BB635669BCED603A25992E8DC /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 614DB9EE5C02F76486B1E159C320BE2A /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A4168BC23C43D1A9C747C037A13AD9F /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 485209EA6D0397BC5BCA057BB7370F2E /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A36DBB413643435E8629151EB8FDC16 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7175193EFAA9CF78B47CEB43DC6278 /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = 5342D7D17B1B53BBD355BC0198B57E68 /* project.pbxproj */; }; + 7A7175193EFAA9CF78B47CEB43DC6278 /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F631A2AFFC433D3B38BDDE03D8404DC5 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58F45912CD5BB643A8BF9E1502089FF5 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDB0A036C878B62CB2C6C33D1E48698 /* 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"; }; }; - 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = A278B0D38AE628106EF8DDE09A9EAAE7 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C64C15D6BC79FCF5CCD31A1C9B16810 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3845F62847242E19C0EE7C3CCBEA4BBB /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0B71563DD435BE29E990FD40338B37 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7D6FA0B612CD4AE1D408202742E242 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = A278D90B54A2BBE0F724E45DED0A0B60 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1058B0F20D3C367979F14EF0242078 /* 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"; }; }; + 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = C56C88D596F7791E65D2EA37041F6B22 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B20A6CB3B0EF8E33D7A99FA68049EBB /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = B23FCC900DEE77A7CB9FC85FEB2D8393 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B4B0B3E7AAB33A80AC2BB45C4CC9E70 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = A41B1B89AADA3EBB33CDDE3B901F241D /* FIRCLSDwarfExpressionMachine.c */; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2CA285C0A6E2486013BAF599AA9B58 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C375199C5FB66581663FA8CB016F62D /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B5423DDC5C2605A11EEB341CAB88BD /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6D9444C71D21458FDDE2F3C027CCED8 /* react-native-cameraroll-dummy.m */; }; + 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5C68C3E06CABDDC5A1124E030379E2 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AFF9FAF94EB8249D1B1287FF2C0FF3B /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6A190183BEE368A85FB4BFAEF80435 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = D66BF8DF3175F73B21D8043E870604B5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11781FC8B970EF2BD34FA55A5B0464DD /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC0F87573DBEFDD0F30001E24463A6 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F92B6663CEAC4B5F3C08886E565F523 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E1C6976BE3E1CA3B110921CEF5DA72D /* 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"; }; }; - 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = E9322CD94ADEA82B250C1BEAFA2663BA /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D10A0B7C4CD81504231DEC178F3312 /* 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"; }; }; + 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 01376D456DEA9117D59A2869FA227E66 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1AB78955A97D0433B735EEA05ED2F4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADA4F6534A98D5CDE31EBF47F865BA5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB5FD753BDF04B117F98821A3370C96E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F94E78779960579BA8E3D95887285D /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 21174BB77457E4F7273613A16BB08744 /* YGLayout.m */; }; - 7C477C1E132AC99C07986F497FFE0624 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF49EF972AFDCEF4147E3631E9E8D1F /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C8725A38E542DCF9E465E8183FED89E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 84AFEB5F65C2E8045DEE3F7DCAD073B6 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C93AFDA40EE94CE37DD2F9066D0D88A /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 96962FA38898F1D7D4495FB7F8ED9007 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4E36166F9116C65ABEE40E76DD6024 /* EXAppleAuthenticationMappings.m */; }; + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F00DB42604AB2AE3D489DB738A4D7C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 458FAE22CB148A3D52B8570D6075120B /* RCTUITextView.m */; }; + 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A88740BFEF9E93420EA41D40E2785CE /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 0537BDAFF12C135EA21B6F94962A9994 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 917F98C847A7B25E7D52D5C48C15980D /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 05C5CAF6C029051A210C459C610E623F /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7503E80611685718A42E1BD074E3DDA6 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7F9D1A896005B07AE306D1E3B8FE24 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D4BDCF275177CE5FFE1206D9D8E99B4 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA6F0E87B63E1232C20D9483BE5FF54 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3AFA96A667389C4CA89E98BB73C2A77 /* 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"; }; }; + 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47499BB309F53E2C9508CE83D0567930 /* 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"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = A3931C325E746C77373C3AE340D4ACBD /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EE02F9950AF7F84CFE06A0047AFCB7 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D7C46AB2EEE8C19958AA671383ABF2F /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF89B85A794B593C2AE74CE7073EE37 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DA1F0C500E346BD807AB7A5BBABFF44 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BA0287D044D84023891A211A1AD730 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5710F0EC3562FB8BAC784F3F73462BD2 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01109537BB47B946A82DC3174B4ED636 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7E2B013649BB99A98F84D89DB9802E80 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37880D003F3EF2EC6BD191F6E5B2A95A /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E866F278BD58D06B8B3E4485D3248A75 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E45F0AEFF0D85679F59C3F4760A67D27 /* REATransition.m */; }; - 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1B6542EC270400ADAEC927CB0E8631 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DFA438BDC14E0082C3D61B882B7B23 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 49BC5C1725241ECECC272897FCC97DD7 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */; }; + 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4FE7D66C99F2D0780E5D79E2950BD0 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EBC5E3CE8245A96F27BA752BA826970 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CF0981CDCF6AD04CB4CBBBF64708A21 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 5170F815269BA25F87E628B2FA0C6F18 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED19ABBF136854713A6A0B531EAEB55 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3756005F3A665301DB75982D9BE67E /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */; }; 7F7D87AE67FE4FA062A758F6C1B6B2B2 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = BF16A1CEAFEB987C690058AAF6133DA7 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E4070477C96CC71FD35538207451BC1D /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = A18B38C4FBD0747CBFB21D6F1FB5D371 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 14167E6E79DDB2D105186D061DF61B3C /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA8164CADC66E4133EA05AA9B8B8B20 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8062FBC86856B74AEB6101746CBA9E3C /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED7836E27AA6987A9009F6A6F03831A /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0113683947F2278F3838BAF591B83056 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -1811,218 +1811,219 @@ 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AD2D5855891003013F45F608D5CD6B4 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9447D505967836D58DBCC077927687D4 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 80D2594A93ECDA477CA76FDC03F368B5 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E291DD718D8678E695D1CB3D12E569E /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F491F6B20464CBEB7C3FCE8826413329 /* RCTInputAccessoryView.m */; }; + 80D80B24E94043C19C5416A8C59E415B /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */; }; + 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4876C0BE018609FE8464CE7E29D818 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 832FCBC92AA32C76BFE1EAC2D56D09E5 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E465634B3191DEAC1DD5194882DE193 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6DC6A2F7A5A7A399F24BF1D784F4BE /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0797D4DAA2370A5E22527A6B4C533CFD /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 815003AAAEED0A9EDD880F60FCFD4281 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = FB209D641C6FF865E464757D6868CBFD /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A41EF9B487EC8CB415C49EAF6C94677 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D9A5A4E8D11F66DBC9985E2385084172 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8239A37AFF72B7EFA62A781E5DEAEAD4 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 54464AF9EE1A9304D6B960FE9DF1EB79 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F95309A50D0B8FD03C98F182AB2F9EFA /* RNCAsyncStorage-dummy.m */; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE2B7253C03CD7155EB7903E06BF55B7 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5893C1031EF50C30EDF56EA0B4249FDB /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 954C19028C0EF32BBAB56BB49FF5319D /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81E1D7AABE1CC4754D5E22DBE883CA12 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6445EA0045D686A18AE86087E3588140 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 318BCBC7C8DDBD935B9B73974ECEF4C4 /* REABlockNode.m */; }; - 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = BA422A71980760825F9A0DC240E593FF /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */; }; + 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DAB733604A3A1625FCA47DDFD1AF471 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 4481E2199E9285DE68947C78FB832DEF /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B044E7381B12A15E93C5D3C018AA9CF5 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ADF6BB4D04AF57DBA445CF07AED2ECD /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 95362C0876B6F247A01415419E797923 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 424E6D77CFA2CCA59312A2F68111BD12 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = F881D6AA1EC6DEBD0DFBE477EE6BD3A9 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82B1A45D03F70BF51889F00D72DDE928 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A67B2DCB63EE65810BD99DD048AFCCFF /* FIRVersion.m */; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F02624BA977AB475D20EBD94C668590 /* UMErrorCodes.m */; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 776AD82841419512C42D473B47874F49 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 88DF92488961630D3C3E6F342E5EDD6F /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82D7D9FA03B146253231143F5569B020 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B2FA3F110E2F5285F8EFD3757E2E7F1 /* crashlytics.nanopb.c */; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 309FD4BB766095C8FFCE8F8CA5ECB8C8 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC1D49C3223D0787BCE5A43FDA89DAC /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96C3EA56CA8D0AD7611923CD09E52544 /* React-RCTNetwork-dummy.m */; }; + 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA4D625CB57F79C19032230C45B48E0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C04E46048936CB670BF56D65CD527221 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = D14272FE2F5771295935154A40285468 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 35275E01F0936419312AC295FA720ABE /* RNCSafeAreaProvider.m */; }; - 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E8317078827A6C535A4D8399ECD26A /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */; }; + 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92672784570B66A01FFF23C2E8A1C554 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E970079CA85C8241712D8B167F2467 /* ARTPattern.m */; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B41E0974D5F18FCCEAEB4B15F97F957A /* SDImageIOAnimatedCoder.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9AA1086980BAA6EDED10FF8817158DA /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0A69416E97C57EA05236CFC7270896 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1C57C3D02AFF465CD48B79CF588ECD /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC9980050C1C0795120E178659C52BE /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B17BA3751D3B4F869EE1A11EC9ED280C /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4678509AA6CA3186B21D19E4C8B205 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8548FCF28295D2197ED3E0D8D2A9AB19 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5018DDC168FC068C8643A56FC722A5 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8551D517FEBFDB14B72550B5C491A237 /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A30242BC57DFE4D332A7228C8E5EC28 /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 2408483E2E11CF11B790E3BBDBF39A38 /* RNNotificationCenterListener.m */; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */; }; 856D7C5079439CFA9892A3B2BE8FB53A /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB163A2BC1DB6F0837718EA750350CD /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85915C6348F10913C13E024F19C98432 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C0188C57BAAF282D715EABD4FA421E95 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D80AE373FC2798EA3AE13E79AEDFCDB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CBFD8F076A8032BAA13550F10D0C41 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85DCDD24B749409A38B46B60F58C8738 /* MMKV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E154263C03A8FE7B11DB3AE33D33F99B /* MMKV-dummy.m */; }; - 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 2062A0554B981B87731E4363CC860887 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = E758096D3F1B58B131EAE8EE951FDDF2 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0ADCCD9872B693F95E35EA36CFCA01F /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A61B9B90F1F3F013DA9E5B34526101B7 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = EFECB04B4961098514237FFDCF858366 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = A0ECF424449EA2D5D9C79F30028F6038 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DCB530F37CDD6129D7DC4E184037CCF /* UIView+WebCacheOperation.m */; }; 8658ED76DEA79D408A9228CB974102D0 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A1DBC2A01AB6C06BE89546618B8587 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5EA80EF50FC0AC436071C8C39F35C4E6 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 9908478D81E222F97102D66FCE95155F /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = DEFACB854A253400D27888A1E5CC08DC /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D43960265216C011FD87EF6B2536CAB /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 86E44FCFB590682940739E804FB0147D /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4FC835C27B7AF6477DE7EEB0392E293 /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E17D90CDC0CB979623935CA74C62CBE /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D50F47E37E8972331B629D3BCA79C6 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B2055F0CD5236FA95ACE35065A6788 /* 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"; }; }; + 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7128817469619B56E1F4D7C19B4A2A2A /* 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"; }; }; 872F15B9D4F55040BA9FADCCA0C969CC /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AFDB24D195B1C26075A0338826D2DAE /* FBLPromise+Any.m */; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4233895B66E94BB940774660B1D548A2 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 23483A32107EA6FC876494AFEEC048B6 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D48BF2C1C949D940E05FAA654BB4B6 /* UMSingletonModule.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 9FD4F19E4FFAE26D101861C7BC5EBC3E /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C80CF8E5F47790D5B11A4C4CB44ED6 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DCF7925DA44E6B3EC578DC49BBC4C3E /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 87C950DA6F51CBB47A8D06EF0E62DB08 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C20E449661C3A845F1FF5A829A3E6F /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = F9D65330F5C0E2E909C49FFBC5EABE82 /* RNSScreenStackHeaderConfig.m */; }; - 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C94DF7CB373383744FAD589DA104F44 /* BugsnagErrorReportApiClient.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EB752EFDBE6B042C0FD87F8089A5DC /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B115D8D68282724351832DB38F25C185 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */; }; + 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87E25D38EAFF2A33FA859D22936433C0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BBB608478F4976B5227E0BA4CB6140D /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 5233738FC62A3A8BE45195C8268F1771 /* ARTRenderable.m */; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */; }; 882E3E0939E69E7264A903F035731EB8 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A5C6E09A8E3297C23D5578BD608C9FD /* GULSecureCoding.m */; }; 8830C0D09E511F205E03DAB1712DA5A3 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A91DB8523107DCA6BBA6C430DA44F1 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 092333F46742ECA6DCDDB1D667A1AB77 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE4E579107908C71B9FF111623B4B70 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF686FF477BA08CAB1E2E0381BF71F3 /* react-native-safe-area-context-dummy.m */; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3B901EE245E9C710F1EFED3D715361 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 42020D0F7AABDA3F155C2F8E5B8EC948 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88C7713DC9D4FE1662A3F9F4F1B8EF2A /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7930255AEF65CABF01261C1F1D39B464 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8C997E098B1165386E43EC5E5A4948 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF4F6823C3F4AB6F4D376E4BFCFA857 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 57EDB6FD342F2C956D1ACBEC796930AA /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F192ACC6825B1BE2B159EB4DC00CE7 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 661DD4092B863C163DDA6B5A061ECF21 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F339C128D6A79C0C6741E8F3FD5DEF /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB455938C1F1BD9D75A2C54D457D9A20 /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 890E6CF6CD7B12C3B0D4523005A367BB /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D41B96EE4B65363EC4BA183A382418 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B463BE1B95E31FC56D2116708584577B /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892099FC0427066886708CDC3C948FED /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 678ED3E1F085D3666FF228FD63BD2F48 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25ABD9EAFDA114E22BF8ABFBAAA6A1E2 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B3FFF4DCAEB5A8E36E27DCC08C6A54 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7960E58007D093D75C17B5B39DFBB1BD /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14FDE41E6579BCAFF7961770163DF8CA /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67879F515FC19F59D69857C6EFFAE1B3 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B2C3FC3CCE44DE744B06D44171CECC /* EXAppleAuthenticationRequest.m */; }; - 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = B097AA51229244C6EA25EF8B57BBB1A1 /* RNFBMeta.m */; }; + 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */; }; + 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */; }; 89972CCC301F9D77EBE4BCD2C1830472 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 61A600074F1E287BBAFACAAB9EB3FCA5 /* firebasecore.nanopb.c */; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD64825828096788A5172C0A9C52AD2 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B95211535CC9AFF6A4B2924A06C1192 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D61674381C4C65445B8F2A346E6D32F /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 89DE4B3B612D9CCE5454A35483631F7D /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4EEBC511FA31D0639827125E9729E6 /* MMKVStorage.m */; }; - 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E75942501EFB3C479CF2C4DF3AA6F84 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 571019617498472A2AE1884EAA39B0DF /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DE4B3B612D9CCE5454A35483631F7D /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */; }; + 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89FF6B6C4AA4FDAB376D7373078CBA26 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D44648BC266F8BA11F0D943B8DD5672 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C3AC9C3CF8588312620BBE5C3153CB11 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 987E724D105C08C2B33EF09F8AA46FC4 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC5FD1A7B2AC284F06E53E315093AAE /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A41382038820FA639C06930D29E516A /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 642F60369A61D9E2F3CE29EB3D3A6566 /* FIRCLSRecordHost.m */; }; - 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0175BBE807D7723BB3EEC10991D78E26 /* RCTVirtualTextShadowView.m */; }; + 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */; }; 8A5FF98CE5E2F2D16D59030E8176D67C /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B78FF6506357498CC492CA458DCCA57 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F70DEFBF0B97AC795FFDCE33D8A887FA /* EXKeepAwake-dummy.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */; }; 8A6DF1BBFFB0458130A7B08A9AB549C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F63D54002B58ECAD9D49158E50EA4799 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4118C5AECDFC37DB9CD67E44741E5F90 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60A921CF66497392C9B959725B563EC9 /* RCTRawTextViewManager.m */; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DA3530D7166759815ED0CF20640FC721 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A97C301C30F05500158D273E8EF25B0 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CD3415891AA0B040C339108DE2C350 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0465942B9401F0B2A3742B6CD8015FB /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C4F94790314F30293D00F192FF27A2D /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ACA6634C4493277533C89BBEF7011C9 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C813405B591F8BFD2D6CD68736A8E8 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AD74E897385343A29251B5A712E9319 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97574DE18C289347F6F2311612C39496 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AE648374CE065E863AFF20F96BABD0B /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7617FE73C482AD138A32E3A376494590 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 3132647FADA358D1B0D5C4B448AE9F02 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C4AF489663C23D5BC35750058BF1FC /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D60482B47FD0AA318A8F3ABB87D71181 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C9DE01AFD50894B7FA6AEC7E747D52 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = EF273B30E01A0A59E87629456C44C4D1 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 438BCF03D12826D667D099BABE52E169 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = C48B4E73BB59A201C65E8D5E9183CC18 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 856FCB255A581E3CF270291EBB650860 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 42898ED8A82E58FEA2C156EDF46E873E /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 658F106F5EE323F0D8613DF1D358CB7F /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16B075F0D892A69B9FA1F1E4D3AE22DF /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86321040D1425732F69009DEB176766E /* SDWebImageOperation.m */; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B92A8C3A17DC006F69609EDB40FAC57 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB13DF1C29A935A0EC898C6CF43AF75F /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ABA7A6545454AD458FE43873123D5191 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC053C25CB8BC3DF533B1927CF9A6F9 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A03B1EBFD1362DD6B2E2D10AD1DA412 /* EXConstants.m */; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */; }; 8BBCF6325AFE6C75A08228D776D31240 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAC394FB94FD235D2C93E53AEFFE515 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A4887DC06D6D5076CDC455CB5695F3FA /* RNCAppearanceProviderManager.m */; }; - 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = BB513BD6FC9DE1B2B44C852F1D4D160E /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */; }; + 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9501DFA8FCAB26095C27C948853084 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E655C846BC6EC695D517CDD4B43FFC2E /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C23A9CB3736861C60E737D46612EBE6 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F587860661F1E7632183EE56BADE72 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C48EBDB54F8868583420D12AFC00957 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 74806217A3F03610417EB6686FE65993 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5F3344D6C52BE18F4FC3B0038096CA /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8C908950962F392DD1C6D0F749224A8C /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D63E9C6C6FF410F56AABC1FCD8ABAAA1 /* ru.lproj */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C1A7AE40E150BE5BDFC11DB49DBB09A9 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E939B8E866B114B5E15E3AB4668EDFA /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C94FB841D192F3EB68DC8E42209D490 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275B4471850334F18F614589E6556204 /* QBVideoIconView.m */; }; + 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */; }; 8CE1FFBE9EB5588285C3B8F625FC41B6 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB00D2E6F6DA172BAF0ED3617D64A42 /* FIRCrashlytics.m */; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7108D1A09300F0B4643E2F114C5604 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA4B2885A0007DEB2C35082014F4ED0 /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 8CFE0645E525DB5BA8805B3B707C7433 /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61C875414226907EB3B46857E800FF1E /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 551CB042CE6C647799E32E8656CAFF10 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4A63D4185C26E6DA36BBC46F8416A9 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E100A4757E47255D6BD074E6D4DAB18 /* EXAppleAuthentication-dummy.m */; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */; }; 8D2FA68D3F6E5FB99B3458B88E5A698D /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F505FB26EAE16EA0A8AC26397048EB3 /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AACD3FBB555A4A9D3B69E444327A4B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = E294D6D9C542C4DE40EC4D325A5796B0 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 911F870DD3159E5F5F52BA6B6094D2AA /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A6E70C841CA850AAD11B0F51AF671E /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DC95723D5F6DD80CF41D0A3D4BF1B12 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 224CDF3D28B97DC3F74B7C94A47DEB17 /* FIRCLSURLSession.m */; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 985640F0769CFC44BE8784A0524828E4 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8DD4A41C90CD940843CB7A6B4F271A0A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E71255E3D468B7D445092B63D2AB02A /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = F011BC16FC901C8916D917038CC58F01 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 788CC5A86818F2EC6ACCAE5A2B067599 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6C438538BADDCBCF210BE8AA412E05 /* UIImage+WebP.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E305F3D0C50ECAE54FD2181D52E3A4AD /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B88D06C2071BC0AFF21CC77D4D60CFF1 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E4903E3A854CA8821E6962DFE38EE56 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 687A0DD40562984D7463CAA78EC43E80 /* FIRCLSApplication.m */; }; - 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = BDDFF8C7AB7374915FD6519BA7F8DD5C /* BSG_KSMach_Arm64.c */; }; - 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 901CD2B51324A018CFDE677E9D2BB213 /* BSG_KSMach_Arm.c */; }; - 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BEA6863779A6BE3FEFBF103D066C84E /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6259AF9D0A2989D383A979E63518BA11 /* RNDateTimePicker.m */; }; + 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */; }; + 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */; }; + 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 382C6B3C504308633B94D4FA7269C619 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0922084C1425E592CC1F9F1DC3764D7E /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 45B590ABBD900CDDF8DE8BB2836E4339 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE8B2C29B9ADCB7104634B4AA15013E /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC11E5817E93C0D702265A42715FF434 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1610C23AAD55677A6E6C77D91EECF8 /* BugsnagKSCrashSysInfoParser.m */; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0073AE6B08ED13CE0E20EBD865669985 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F6185825FE06EDAD9D568567CA6DB6C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = AE40C330752602693855FAC7CF6345E4 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A153D979AB35844103EF2D0015FFE7F /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D98D1B41390C636A9AD7701A69796582 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEB19D93D64C83153DF541927A16A6C /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF9F20A98CADC212F35CF93BE4A390A9 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B0F4BF42A2AC476866DA8552C7F5588 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0CC282BA8FAFAC2D890B1BFED15A52A /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E7CF3EA72A6DA8531C1AFD6D8E4F43 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DD54C7980EC61ED8A793FD357761AA2B /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A989A3AA197F38D1E3B7C0B70A38760 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 52A6FCBE370D580A0D0FAF2F6EAB917F /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2C74DA7C23F0306B08467680B5962C /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9054A97EE55DC585520DE4A54913AC7E /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BEACAEC37CB5497CD018285BA8ED4D /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C0625203A33BE888C56B17EE0AD136 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B29B155D5D38D41B1A15462AAC4699B7 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = E020602C5F0DC325C4A99272BE65F6FA /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 906BCD291B4D2E061B4901A35B433424 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4A73EB8165B2E2985F8D6239736A87 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 802CC5F20ADF1952DE5F0339EF33A0BF /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 908397F13209B4A6E2DC2A3D5E34698F /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACA09118FA42AEA231FE0A5A66AA78F1 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD6776FCE89F01F4AE3F91AB433250E /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = F22046E41AAE417B72E995E64B2D67E9 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2030,162 +2031,162 @@ 90DF74C108A3AEC958E52AA1B81E67BD /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 09858444B14CB83AEA70BD5C14FDCB5C /* FIRCLSNetworkClient.m */; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8A328A58A732B41F061244436FA9984 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 91224D343EE935FA676E7EEEC14D3B22 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6283EB09705FAEE73DEC01419581CF /* GoogleDataTransport-dummy.m */; }; - 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = E597A8CB5D80748F4FD1DA78B3D5B256 /* BSG_KSCrash.m */; }; - 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 336524F926836BCF66DFDEAC3E03F669 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */; }; + 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = C2704AB8D010D22F2049888E65BADBB5 /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05CCA7157539C2698E76487D6D51154E /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A88925741244FB2F7D19AEE6C9B2F904 /* RNFBCrashlytics-dummy.m */; }; + 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AC2D0EC742977F2556217C1F9D9682 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 21717E3C7228C968D72955CB29D078F3 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6D07D86FEA4DA05A4A7A59F9E587D8 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92229F2BF8BD1E6D19E035F6517BAAAA /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F954B32AC8888CE3FF97711D2A6FBB76 /* FIRCLSCompoundOperation.m */; }; - 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC6477168966C2DF86B0B2BF5375B6A /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A47AB1A17382867A0F0F2E0347948C84 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CF414035C434D8AD1F8AFB3E6EB47BC /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 17652CC3D1020B1A27F319034C7F6C63 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = BE942768A1282F53A50189E60B7808A0 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = E611552A0BBA207D1576DD87B7C20A43 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0A502BFD1F54C2A6A382FDFE01C71A /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92C3B3B3F4B04146A64F2D0E4FA1CD7C /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 091722FF494A2188DDC63E7D19D48557 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92C55D440CA661F4998C66FB734DD3D8 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B443013ECE064D18CCA3446CB228F884 /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5908855AE8F1A6DA636E4A44861817A7 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 589A44D834F812143711213E0E2FBDF5 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = B3899DC9DD118473DC8A4ED843B8CF23 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0F0AE03C1224FEF30010A099A79261 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C0030898FE4DB1557627B02C59286307 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9352E7B5B04B7ECAD1EC5445CFBA581C /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7AB493D4E5BB4A98DC8DA00EA0D5AC /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F9A0DB1AEB9449FBF246B6A0D81E30C8 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EEFA2A7AA56DA2A2188C134C29F3C0 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = A7519D8DB210259D70E75CAD919781E0 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BB45C880A0B0FC1D110845D427C6DA /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1152CBE4ACB0D497EB34FBEE9B1FFD83 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B975656D80BEDFC64E60787514B5059 /* React-RCTLinking-dummy.m */; }; + 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */; }; 93D6989F898C9EB22455CFE2D5B6A1D0 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3301911E754A4C286ABC7C729C5CE04B /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D348BCD90A1AC800855606883F4FE00B /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E3E3A4A0F6534DBF4CED91C0272662 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 941E387447EAFE9E1F8C465D8F9A2067 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B17506706E8AD362D7034C7950E45A4A /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6761EE751437179A29FF8AFE464AF759 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 680D00642C08BAD957E2B21EC098FBDF /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 944BC8CD41F2AD440112B4360398EEE8 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 9326B6633EB6025A5554380FA266D727 /* StorageSetters.m */; }; - 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A3D2C892DF04B8C6ED281F772A336D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = A347E733DD144D64D06020C3913C52B3 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 944BC8CD41F2AD440112B4360398EEE8 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */; }; + 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 7435B31117D04AEBC9ABBD45D17E8A0D /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA6EBF5F20BB2BE9F96D3806F97F3BF /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9493BDB77B9DBE1604961046C351611B /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC47B5DBDADB42C364570B803D910E2 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB800B2BD33B6A01010A0575B6294D2 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A1BB0FFB9E589FBC68C400B110F11D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28D6D678892B43BFF90B8EA1E9393866 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E4269D853F0E5869A7364D8ECAF81CA /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D1498095DD6CBFCF581AD7D5F99A9C /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF343CFBE54C353EF53E3173400F592 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BFE72E75C6DABE5D29435E3BE4BDFB6D /* SDMemoryCache.m */; }; 9537FDB044F8D4B6CC9305A1A5A636A0 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F17AE626AB48BA2FECB01DC890BE7B1 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FD0B27006A8D0CA898A67F3118A13A /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C7BCF35B2DE2527122189F4C9205F8 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 954CF52BEC6E2171FCF9E7699BB00639 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D9CB90B75FF0BF6CB45B6CF79056D6 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08C8FBA463275A77C4AD39D317052A28 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 95A21B3C36EEF7A9F3E07E0409CFDFFF /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE7A55B5DD992C1A7299BBE472BF3D0 /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 95ADB8AA6795D4F34ED8DFE1825B22DA /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF3356E34F6F52AADA25F98E8DEF2DD /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A6CB1ACFD815D1A962850EFA68A5267 /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */; }; 95D26AA5A6FF5AB6CB7AAD85FBC462D4 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F33F69F3F73D5176AEE6AAB0BD70BDE4 /* zh-Hant.lproj */; }; 95FD3DD243CCAF1FE5E59471F436A5E2 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 0043880CE50D21543C9A3B70EDA3D203 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D65AB64933E50ACA96FF591A0771394 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960A6624BADF5408E9D519D9328F160D /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B72BC4114CE37722AE67B787967A06 /* RNConfigReader.m */; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8ED40A291A6AE124B7B9D6D6C53D18 /* RNGestureHandler-dummy.m */; }; + 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 960A6624BADF5408E9D519D9328F160D /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = ED6A007B0F6E3BB16BE2D6C88BF06250 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76E4016415EF323973F15B2C66B23662 /* RCTInputAccessoryShadowView.m */; }; + 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBE51BDF32CA10D7DC3BE81397606A3 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EA5080E0100BD28FB9E83EF1DBB2EB /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D08483E73D8C4155335DD497F872AC /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9F1A2F116D98D2951E4B527B6587F2 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F6314976A28E533E06FCBA0CBA9BAD6 /* UMPermissionsMethodsDelegate.m */; }; + 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 506F061F7EBB50BA4B72D1A358EFE177 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 96F259C16E7D5D4A6174E4764BBABE77 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 991B3A59C2EDBD7A7B485E185AEBF277 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FE494FF00EF884BDA414D2C2CACB29D /* RCTInputAccessoryViewManager.m */; }; - 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D3FAE20F2A32E94E51A1FADE7A633E /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */; }; + 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 832399E6C502C8A70B8C4EEB26ADDC2C /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 9744EBD64D3BF6C96DEC30C7580BC15F /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D3730634F7552BC6C6E48ECD1B8E21 /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC5E17538F2D470843A507744C3420C /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = DF96AC080D237B7EEE6FD55A7A2F8187 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 09939713E99149B2C9BB45CF51755507 /* EXFileSystemLocalFileHandler.m */; }; - 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A02D6EEBA4ADB85419B2C1B4B2C6C8F /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1B6672333382D5B13F526B215EB8A39 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC7C8AE8B9CCB5E4ACF50984B78D048B /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */; }; + 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2092880DC576AC0B9FD739B2CF2DB729 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5708E49749212F8563EF422B97DA0E /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97E2EBC77B2285E34C4E0575970D29BF /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C24650D12419B4EE7B1AB449E367931E /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D71031BF05F7DECAD3B4431711B4E6 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D829935540EC256843A70CCA787173F /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE47552437AA39F383916668046EEC10 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9835CB49408014B41AADF45664E2604E /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE5B62E76630B060E6E365BE7B554882 /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 0505B3F898B1BEA767F4FDE42E96EDF6 /* ARTText.m */; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 16C969C7F622D1966207C2AEC63B8625 /* REAAlwaysNode.m */; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = B3FBA663983BBDC4F2180010734E046B /* ARTText.m */; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */; }; 988EB4AACD480182DA7844DBB5F793AE /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ACEF693DD14A9B36554DE1C8837282 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A3789C40165148A9DFAEE2A958441C /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7FF184A0AF9CFE6F3436FBAD3EE7E0 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98ADBAEA3D0DF6136EA2D9D403A82B82 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF3FC2FC411C033C8E598DF75DB8E69 /* GDTCORAssert.m */; }; - 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D4D2FCCB5279DBDC4DFB5C5EFB354AD /* BSG_KSCrashReport.c */; }; - 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E1254D897FEF7F1A84C519FE2A4556EF /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA37F565C59CCB9CB2E16012155EF72 /* ARTNode.m */; }; + 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */; }; + 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 1594E1D940D0C8841465B42DEFA3FA1B /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FA577DEE9857236D0B08B675E4949F0D /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */; }; 992D47597AC9FC3ED6B9E4490DBFBA93 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC3B279EC7B3584AF1AA293619E4DCA /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D96E3C8629E55329090753268A30B3F /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 02F7D0EA4C2AC752FCDFD29B278E88E1 /* ja.lproj */; }; + 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5336EF9ED47680F00F818CD94A8C5461 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 759C944D02BC3BE1893B6CC8D0130D4A /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 3132BE5A532EA723F412A6285AC85FC2 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF69794F7BA08CCE1B6D90957CEC8C0 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99C45ADBFAD56E67D23B7D913EB69D69 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3D5B888BA8A95E4120BA945FED3CAE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99F2AB0746A9B7D1A10850249235D347 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF0BF8FCE4EB3AA709D50E9D36F789B /* FIRCLSMachOSlice.m */; }; 9A065194E9CB050FC37EAAAC6FF653F8 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0B72635B68DDFBEB61861EB08A22AF /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC92EB041100B6768F51D8A6E3A854AD /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B14E29DDD3220AB16B5AF9D33BF183CC /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 63EAE19ECA487B6B1CBDA895867FE21F /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9A77A35FFAAE3148086CC3356C8061AB /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA0E5DF052D8B15D2AB5241F3B3FD619 /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 838042ADD47A0B40530DF4B9A05FC3E5 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 310A9521535921338D30708091A337CD /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB39F7717B3F63159A9F3F781F77AFB6 /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = B71E6BF7C24B85671CF6AB6FF48ABCFE /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = BC47C5EAC8674AE66446BFA038059A22 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E93B13F0399C2CA63A93A6229967E /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCC86B7FAE3670860FDC8C180777E73 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E3E2F80B0678F1C170F3A41784526C /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A15611B72EDCF7261B4DD9701CCA4C0 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 557AB26BF7FC1B2780D2CC3C15CFB7F2 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 096045BDD8D0A09996FCCE24B6A570E8 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 12DDEB7D4D4C13B9CC1CCACA8220BE86 /* EXAudioRecordingPermissionRequester.m */; }; - 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = A23EEAE241A0BDE6E2EF7828BBEC8637 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */; }; + 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5974D8F45A5814D581CBC194E78D1FBB /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B7473579B5ECD99A173E7C4C3CC480C8 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 849B9F78534074CFFF971C3AB09A80A4 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A51701C91E692C478F8575254A50AC /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43861A3E9C38CDB6C58D8536D09FB96B /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 09863058CABE4F4D75527B7D7AFFF3A9 /* SDImageTransformer.m */; }; - 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C16E9D24AD6BBD4C183C61CCD2EC62A0 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5813BF3A80226B687E4D4AC417F962E8 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BA209FC21F2A8B4D6E748065B71A63CB /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9CE418D50360FEBBC0B6EA534CB4299A /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84C1CDF6C3ED9D5001A9EE3CFC4BBB7D /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 53AEED9E88B798B448A12CE9F987C568 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAA23231DAB08A0DD9D85E02F043AA6 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9D1919F4348D2AB5D0F25AFFADD7441D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28D0D3BB92A46FD0A2EA36558524FA54 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = EB49A028D3BC63471CD33D60C7623F22 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D51497EC2D05F3283426C9523C8394D /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 122530F5C1AA8ADB22E4D156F88A8621 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 688DBF90F448D67995DF1023D9427E06 /* RNRotationHandler.m */; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33E30D616C3CA726C168E8CAAA5333 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABCFF258998CE1FBECE5F27DF83E6367 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B7D9C2885ED2D1F790D780396244B06 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A2FE114E342FAC441F7A70E976DB1B /* BugsnagSessionTrackingApiClient.m */; }; + 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */; }; 9DE38323C633F51207B437E17263CBEC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = CBFF428EBE47C2BF3D2D6319F9C9545C /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DF80F6E910A3C8CB8A694937579421 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 963BA3D224ADFE11ED4377262300CE63 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A907F87408A2A4ACBBD17AEC4364D0C3 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF4DC47CB9ED87FEFC26974B0621377 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFB40693130816D3663EF2FD82D6B22 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E6FD34857DFBDDA2D87C7471EFF6CA5 /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 35967FA5DF24995ED311FEED8F36AB8F /* FIRCLSNetworkOperation.m */; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FEFD67E2F1B67EFEE3B6E755ABC5B56 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 481CDD302EC82AD0628B97F4D1EDF6B1 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B602E919331F6E10D07406173CBE47 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 536768DAFD91F3C9D31A0F9259BF0826 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9ED08F4B9FE456E72BABEF07510E0F65 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = A032E4FC910ABA49E338E0AC91B2B97F /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E667FE7FC5366831C1CD603043BA041 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F11DA3D148897A06FEDBD68BBC78AF8 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = E95C50F4AA4A162306E867AD740D621F /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 937CACDBE2FDCB5F2864652AE4CB2CCC /* UIView+WebCache.m */; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3B318E7355D55356996438DC49299D0 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2195,44 +2196,44 @@ 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 291B8471134F121BF9EE155EDDAB0AED /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9F834CB5D13D16428296AFADB9D407FB /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86C038FB837827595E9C06CBE6265F9E /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 9F923803E6AF05F5E15EF1C31B480C19 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1EDD5A33711F21EEC893EE19A9B8F24 /* 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"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D40F6B9AE4B05BABBB35D90892A727 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23A9632B197DE52B6893CDF4433B3874 /* react-native-orientation-locker-dummy.m */; }; - A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD786D0B4814D5374113323BB5BC250 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = F13BA8BC96C4C7A8CC99EEADACE66CB1 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C7E5F3C9D0EB2D75150B27CBD2976E /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3B999279975BC7A7457EE27ACA7BB0C /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2467724B23BE16DA80E86D26837EBF77 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2068BFB352DFFDC26A3C6A90C8EA64 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21BA93BC1A1FF706F6A5B7560A334F79 /* react-native-background-timer-dummy.m */; }; - A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = A46F11438F7B4CDA138E6ECDB2005A91 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */; }; + A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */; }; + A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF7652D1D8ADD58645565C3FF3CA65C3 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76210A68BD11993C84B12A15DB0087AB /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CC0ECE45A6744A5238684A234A3AECC /* EXLocalAuthentication-dummy.m */; }; - A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 74DAAB0892E5B68F2AF79380A289610B /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBCD973D8A7B54E675052C10039C255 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */; }; + A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0DC56F8B7ACC3E6B7F04D0F2AE193ED /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DE4E7799787EAEE48EF32E6B4BAA9E7 /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 65F49B2C0DCD73D303980DB2C3C41BBB /* en.lproj */; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 76533A976C94536C1DD2B99D506A31F7 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A10A95B29F28661121BB96FE59DC725B /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D4DF3318AE6B2A8A4486FB97A71F75 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 217BCA3060C1EB4F73E25CBBAAAE9633 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 99AEEADA8EC16435EEA450BA7441D9E0 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A13E4C4D56442F5E2F209E1F3DC55BAF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 628B91F5952637F53226870B395B7975 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D507371FA033E53CBF5A3D33C11A91AC /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 903F37D638B5A2D8CFAA8D79ECFFB78D /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 457F720C9871D282DD682D03062F7880 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A191267D762C345935828BAF127D7E44 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE6EAA6583B7AEA30CD4407AD012766 /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E08071904D7D2F0A4891F9DC8EDEB75F /* RNCommandsHandler.m */; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = F257DD7FEAD25B3AC731294D344F4530 /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BE37D0CFA670B165C00D3DEFD85E65 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29931BA3EC220405FBD417A4E2529D23 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BF14000F3A0E5D1CF940707334EE3D /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 912AD498C53D702FE4B8C960BDF6B80B /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D9769EC6584CEA88699BE232D2938218 /* RCTConvert+FFFastImage.m */; }; - A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58A7D2A505C738B2644E5CBB8B43B159 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 343C97A4BB16924994F8BF12F7D2E396 /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */; }; + A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = AE51BE792CA89F0E1F9399812F81756C /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4B8A32ED6D51E6B3FACB12221AEBC2 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE71AAFAC877F542DFE313DBD702D772 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A2EAE9A03359B4DEA105AC46042FD9DA /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B24135BF3E27AD67AD78E014B6DF9F5 /* FirebaseCore-dummy.m */; }; A2FB46DA4CC36021A5ECDACECFFC780F /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 241479B1A70265C5EF920CEA1B30E3C8 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3045BF0AB3663CF2F6AE4A494A26561 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC72A1D88D2EF29FF478C63A05978F2 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2240,58 +2241,58 @@ A30FEB961B145B1E493077DD3D79859D /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 692C68C4459502808EC208154C07B8A5 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5953481880AC05A5A0256CD16F6B6C80 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A33402260339194D8E4F42EFF7FD03AA /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE763D454332C89C581D5761CD7FD5DB /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 49795A659C3D3330075CBDFE211348CD /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 416C0614FA40A2E25E45DB6091546885 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 79F8319745A77E7EC514938CEA67D845 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A706E3D75EE13566AA1BB2D4C1FF5C4 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2004ACF1EA96A7A3225CC6D1D87043 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6713D84483B575462EEFFEF7E3AA2820 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC3C36EDAA167E488CB77FA21DB4FFE /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1053EEB0FB1AB2AE94835CC5900BE7BE /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BB513211A6DC708618C88791528FC0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B55B0D7000F8DE360C1D0E6DC17C356 /* BSG_KSCrashIdentifier.m */; }; + A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A8EA16EC81E65B135245D99881BAA99F /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2077C5B596E4D880F57984623A877334 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1125E2A761EF99F749483B70DD73E5F4 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42FDAB67EBF4040DB80B9F0BAA2BF65 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = FF79D3BE39F7CDEA58A9C6F8F575592F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D0DBE2677AD7AEB0D115FAB6DA6B3C /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D75AD1443349704117014A7737FB83C9 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D3D9992EEB30FD948A2F586CD08C0A /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FB5F8CFF4168E5E659411A52894D5D0 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; A48573BC990762DA98475AA4E59F4C55 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7056144BCE38F9B4F595EB0A03FB4227 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8986BA5F6CEB3EB40192A7F5F2A1F78 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE35C14D05067603190D3E26CF57E4 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = A6C680711EE2C68E572587F007B3D64F /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2987799D477A67FEA74BC1C02AEB1F48 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CEB9EE157DB644008298F667A18767 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = C47E09C373B0A0FB35238FDA7C561401 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = BA8076322D07A19932715F339945025F /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EB952E1C1834C0CEEAA4E5B7C8DC4A0 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD2C8F2EFAC94109D2732AE6BB0E2E5 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8567410FB034BDD864AA4D2080275F /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F133AEBDC29BAE5DB91012D3E13206 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 40875AD0B326AFC7FA447DED64B32BDA /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58DC9CA14A405D0BB4013E16623B3AF /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 629066CB3AFE43DCAE1D0D6F1F500BE6 /* react-native-mmkv-storage-dummy.m */; }; - A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = DE6CAF0B0C4BF8CB185E39E16DB20A6B /* BSG_KSSysCtl.c */; }; + A58DC9CA14A405D0BB4013E16623B3AF /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */; }; + A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */; }; A5F16518FC269D412A721472DC3D5CEE /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE319DCADB617279454E8752623AF1D /* FIRCoreDiagnostics.m */; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 56461E06661E0F052AB26B2AB7499CEE /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4B17C81BE735804B81E8213F740EB9B /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A60533D4FB72EEF17855E3D76770B477 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5987B23611640B17D0C9DE7EF77858 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 31BDF1FF8D89908EF066F6367DC217E0 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D842DB6A4676722749E9BEF28DF9C2 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CE4860C45A1EECB6A574CBAC419AF7 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1195969C1029363F953960E5A831B29 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 586F14AFA04E344880F54BD25872AF92 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A646ED8AD08C2BFB3F92DC72C1A686D2 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D1306E80732728F3DDAA52FA3EDABE05 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96B0DA33E801A10963A645AB01F62D93 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = EEFCDB3F0AEA005DCD880785E4555DDF /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B82AC85FFCEEF9132F8D15E211E8E5 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 773F6EEAD949E379CA3BD9EE0F29FC22 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 0472923F99A725E5E616978332FE5562 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8246DE92DD7559379E867D53F8FF0BEE /* UMReactNativeAdapter.m */; }; + A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A8B4EF2D2F14C00D0BA819EBF3DAF9 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 043DC73DBDFBE110753D52D68CE30660 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 639135DC52CE870C6E44464E7B08EE77 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FEC82AFA52FE21CBF13AABE226D9F9 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A274AD7F025E5AA596B5E18F9C42D782 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6505F6C062E4A5D1040FEDB7153756C1 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1016CCB8E58BD5D4E51E717699746205 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2303,9 +2304,9 @@ A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F75699D4BC5083760831FCA919BD21C /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 7585DFE66F2A77135D0C671011CC324E /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7098517F01DF39E78F5625884B61FFD1 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF3199DBE26A41F0F05D343A7A074CA /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57042D1B513B28351EFC2CBE1C8F6841 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD7A2BB0C37D8E61CA16850DBDED244 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7DE1C486F3DBFE3BFE72313A97AE853 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = ED13E425A4DAC7D7E9C80A18DAB973DE /* GDTCOREvent+GDTCCTSupport.m */; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = A425F067B5A19475E60C81F33C517AD2 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1318B86C820CB00018EAD32A3F07E4D /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2315,42 +2316,42 @@ A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC2C9E283D60951BBF3F02223A762F22 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A8702F584104386DBB13FB3B877CC8F9 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A50B7CED93C22A904707D53B2C2486 /* TOCropView.m */; }; A88D214A0675FD7F6B4AD5D486A4CF4F /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = AFDB4C9806333C32509F4DD1BB3599DB /* GDTCORDataFuture.m */; }; - A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FC4290B54E9EFA8BBE707D2C6823DE /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6238E85A660C449FE52C3E60FE0505D1 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 567F2C0D0A1DAE9A369027A7A121B6E5 /* YGLayoutExtensions.swift */; }; A8FDF48E1A7E3A8E1CC2EAE5C6D04A74 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB7BA7C2D608DD4B24E71DF6890FCF3 /* FIRCLSFABAsyncOperation.m */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 483913E29C3272A722AD73C970A54390 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F52085F214DEABE26AC0C16B9E8846E /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F37B481D738544DA6CE36392796790 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 727EEE16F29306FD34854F46B3A8B762 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = F86165F4074B5E924032053BB3A28990 /* NSError+BSG_SimpleConstructor.m */; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 02736950502345C1DFE6797B12EEBE67 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D320F3252EDF0F6045CC408FAD475555 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F34DF078CAFD193CA54119295D58BBB4 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1EE83752101D56B4706A9D6E02575F /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = F54FB51CC6FAE6ECE7AF66F4563697EF /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E038CC21A6ADE42B2F2439769668BD7 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = EA30BE7C452789100FE431223439D295 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CA20EC06BDF84FDD22DE7DD7A603327 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA4D2BE8FBD6B2E0CAA71C501FAB68D6 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = F9298904FABCAC71BA497AB2F973AEB6 /* FIRInstallationsAPIService.m */; }; - AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = A84A35AE99917BE042B79F922069D257 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA92D2FF7327196B7963E1EAFC2A282A /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 43B82A8E2CCDE55D7BAECC9C37FF1734 /* FirebaseCrashlytics-dummy.m */; }; - AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55BD7B35C0C6FCEDC6AA8FB0F8614304 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */; 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 = 6284A02AF8BD292CBD1C1D1C5702C4E5 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77093D00049D223624BB3B6E81C2DEB5 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BFEA44425E7E614FE9BE1E07E43CEB /* RNFetchBlobNetwork.m */; }; + AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */; }; AACA5654253ACB9C4C1A70C4D9942CEA /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 533287C913A304B3274CA5BF049ACD95 /* openssl_aes-armv4.S */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BF9679CC9E22B954E0BCFF9DE3D48E /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A59565B3D6519C10DEBBEA7F5EBB4AB /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB03E9B6D1F71BCDCBC752380EC4E008 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = D01D14CD435FAC57CF5EC773DB21909E /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 650839B18ADB322F125B475EB54E4FD0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B31C00F86A06EFB0136A743BAB25CED /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A90C19A3C7625BB49C7AD659EC1B81 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB2920B9B1810A081F00F049F566C416 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = C4FCBC1797EBAFA2945FD55F5767E1A3 /* GDTCORRegistrar.m */; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C34A09E905513CFC4F70E84DCF91EC56 /* EXImageLoader-dummy.m */; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B388418E1C1B0C5BD30ADC617A0BD2F /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7ECFA07EAB88489517FCAFD1702D65C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D7CB033475C5739CFDA803436174BC /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABB1CD9BAFA0540306E98E2ADF54EA30 /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76DD833ABBB2596BE24D44AE41C63D50 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; ABB62FFEA507585DDEE68EB89787E984 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2735C75D069E8CB064C5056FAA472EE1 /* 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"; }; }; ABC59D78F898F290A37424C0DAFA7395 /* MMKVAppExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF141004709B4596316A54C26690214F /* MMKVAppExtension-dummy.m */; }; @@ -2358,74 +2359,75 @@ ABE4C7F45E23A98AB7CDA0ABC75E19FA /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2443987C91F8174E5D7EBDE73B40EFCB /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3BA931EE1351559A0C1124B2400B2B /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = B54C96C636E8209C4BCF7976B30710E7 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E9CCF0D047077A12B754DA7AFC74FD /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = D66BF8DF3175F73B21D8043E870604B5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F652EACDBA01D6B41B81FCD70EE4755 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE649A5B3C8548305B0791F6BAC29354 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AC2A4B9D1168607041C3A0DB2ECB4636 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD1AC690771CE2BB2E847CC45FBBDC4 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FBC8A647FFBC1523F9F0EE2B213506 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA08EB1D41E1E1AF13AA83B3ACCE6CF7 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = CF49436129715F2A1C1B93FD978FB27D /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EFCFB70036015BF9C9044D8BE5515A8 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7953D21C3398F60EBD4FC532EB9E253D /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC59A26B99CA0893B82260C628EE829B /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0532C0A55B5C10F896B040B55DBAEE2B /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EE0B0BD1FEF20B614A4E2359C91BC25 /* BSG_KSJSONCodec.c */; }; - ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0415AE584E280A0A25587C03FA02C8 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2524D22CB8F38C41F5E5F2A2C7DDFF26 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */; }; + ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE2BCD32106C0A47D83B684B11F2B6B /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD06EFCC89799473CF856C546AED3927 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 37260B6F95E6B538C77461B4B6D05114 /* FIRCLSBinaryImage.m */; }; - AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D910FDBCBA0953E7787AE9BA1ECE110 /* BSG_KSCrashState.m */; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6029EF04764BBAF67A5F5023B7E71C44 /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0FF811D8740D4E736612F4A20978FB /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD2776292A6AA970E2CC23FF9F0EEA05 /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A50091D782125347F220D0E7FF9730 /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD2776292A6AA970E2CC23FF9F0EEA05 /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 917E1258AD649A23A7D45A50A6F05A94 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 976DB772344133D19FDC9F43AEDC2612 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = F82F6A35D4E347C92C7089138947C4C7 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 298958769545D0A0CD4F77FBC0018816 /* SDGraphicsImageRenderer.m */; }; - AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC04C3A8EB769138A43B0A5CE76C439 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1A169DD3DF0865EF7E361E8D23CD81 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADF53E1C528C7C4EF55470E410EB3481 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D7B6463EE8B3B7BAB6872230EE9386 /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6C69F95084E61522E8A0621E251EEE /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE0AE65B5B09B14D114FC2DCD2E07DF8 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0188C60B434E703DABBF44094087009B /* FIRCLSRecordIdentity.m */; }; AE1819818F034D33338D41CF46589250 /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E082D8A9AB450A53BAE6B3460C3BA9E6 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A74AED9AE7F475C24DADC738398585D3 /* BugsnagConfiguration.m */; }; + AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DE747354C067B47CF746F9701F400F7A /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E1582A303A42A23ADC566CED1C8C326 /* REAFunctionNode.m */; }; - AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 479FC0A8AB10F8478593B003FEA594D9 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6231FD550B250E6CE2EB0C7B3ECDA2AC /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B26EB9C31336D94C378B02A673B0B72 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */; }; + AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D0357EE36C7C9977E3183D342EA97611 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = E7AB4E1A96911724B29D20FA711E4DD4 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 259BCF6CD8BAE89C80BECAB813297A51 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3BEA689351C617613D83A5EA277299 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D3A4F9F0F687E5C2C9460D77238CF4 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F173777922F782D1B13A4560470586 /* LNInterpolable.m */; }; - AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B140C5D2948B7E35261CEEAEDEEC6EB6 /* RCTRawTextShadowView.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */; }; + AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE10D23F9F9A6F605F5ABB40D323391C /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = E31FF00396A413771765BFA2BBE0D78B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF5F8D034F15CC42768898B7C84B20C3 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */; }; + AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9A1674592AC805B7AACC85CC5841276 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 907B70E2563C91715715DD817F1B8355 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFF898410D32282A69510728514BA86C /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77FE32325544867C63F9BCB585EBCF62 /* CString.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"; }; }; - B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA1C3477BE69079F3EA4FB2F00CF16A8 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B01C36FAD05AC43B3637B8D0AB9459D9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D5A0A3D76A2E8006E0D6AA16AE8B83 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = A83221DB1AED012C6FA71A992212C881 /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9858B7499131D73458CCDD42363A5AB /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCD0EC7976784F931C9D1C8687A977C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0454B09C625E07098EA76D8F4388866 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 6021E553B770F82E73B0C63684662267 /* FIRCLSSymbolResolver.m */; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72A3EAE447C5BE0968B71AABBD1557F6 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B05C48490091D1554925127884D267CE /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 64ED78E8A26C2BEA397E9514E783E94C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = C35884CADADB62F9A4C5720A029F40C6 /* BugsnagCrashSentry.m */; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16ED6C24114CA661C03633A9C7058F34 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E30AE02186EEC8A70B2EBC3C766AF8D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F92000338C16FC95FC27E8527C6DC587 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 97F49C664B0AAF0713D044859ED1909F /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D48D64E2999C9E38AC3AA1B67429F3F /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D880E4DB9D99EC13081324711A4D6C /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3048556EF9ADE6F8F8F1A29C19EDDA59 /* Color+Interpolation.m */; }; - B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E6476B4CE715E5700814D91BBA5F5303 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */; }; + B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; B177B15EA2260A1EE3FFF5F8963CD38F /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = 0AD84C00A9493DE4ACFC079372DDA730 /* openssl_aesv8-armx.S */; }; - B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C149B4D9ED96BA8DE497745CCEA37369 /* React-cxxreact-dummy.m */; }; - B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CA7976AE849406659F1CF6F05C8FC98 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */; }; + B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122BF2BD7C5191C0D0DF2FB528A1061 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C407AA7F34BA5C4DF6078690C9100 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = F96BE4D6D572B0CC44809DDD0B30A502 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46DCB7305D8602FB7F98C639EA262C75 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2434,30 +2436,30 @@ B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D10C3C764BA701C0A2378F32F87478 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E84B732C1D63BD1ADCB8C8869AD6650 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; B21572DD802891A58CD49CF3CFC580EC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1942676D70CFCB685C06399F6540B1D4 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DB4E1AAA4C012839394D5A47ADB8A3C5 /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CB475463812D11A24E92A8D304D00C84 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A7AD52DAACFA12029D77086B9D7340 /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 317F36784686BE8DA048215444CF35F1 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD019A7C90135A08ADDC1ECA25C3DEE /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A49223A38130B4616CA93C4947B34FC3 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 988019E4E9CF2D827C9E95B3FAF0765C /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; B37B24AF3B2A555EF2E1B850E56DA614 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B16069E70D320C65095CDEFF4AA15F /* GULSceneDelegateSwizzler.m */; }; B39343FE3191F0D77D03E112863A0066 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C0D7C288E68D751A5685052803E1BF /* GDTCORPlatform.m */; }; B396C44B8AF25924C7208C9A00E8149C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAC56C1C627D0D35175C1C8DE550A10 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71D27DAFA075A7DCA5AFDC142791F4A5 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = D3358D995274B0DFAAABFD6C5B7A701A /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D1026A08112DAC42F5B576E16FCA06D /* BSG_KSMach_x86_32.c */; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = E443A8989FC2694504C95C531AA065A1 /* EXAV.m */; }; - B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A6C1270E6344C5BF528E6A506EA59A6 /* 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"; }; }; + B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */; }; + B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0956FB3C42355DF5911478E276BEC1D9 /* 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"; }; }; B42DF04715EBC9DA57F4FDD52FD0EE7D /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 0360F96A7961E872BD9F22FD43F4BA38 /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7DFFF386629A13BDD874F24FFC60E2 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = A433A0364BA5242A77F3403965A71642 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D703C80A9A50EE0C6C40F29C03E854 /* DeviceUID.m */; }; - B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85367A4907755BCC42651195F306CF88 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */; }; + B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B49D95817FB79C7EEDCCF37504DC138A /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A31DCF1982C952178C804B30D8FABC /* FIRCLSLogger.m */; }; - B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E1C02FFACF83C156465292CC9A2ACC7 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 45030FE275DEC96B6F65FCD234104CEE /* Compression.m */; }; - B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 475E047424CF03D95443F7AF5920881A /* QBAssetsViewController.m */; }; + B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */; }; + B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D45684300495848DE355FFF2A07FF7 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5643784981C4502A4D430E65C273141 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC0C045EE568154F674095E2E9EDC7B /* FBLPromise+Catch.m */; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9C56ED395F27A3779D949995311950 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2465,14 +2467,14 @@ B5FE9821B32A4FE93A5252BCC9DCDF80 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = AFC8475FDDB23E3A0129FA3A18980686 /* GDTCORUploadPackage.m */; }; B610078262EE860FD9F4247D191A6F47 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D60C99B1B4C99EB0D05E65A41B11DBD /* FBLPromise+Race.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D06E7680AA0473980C6FAAB14C074CC3 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EEB9048CBFADF1DDAD9C6F46AF55816 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17C5C1254E18A45E76E2A7930DDDF167 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = E29604A5ED6A68472E00D8C015D0E8FE /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7CF0284EA6F1E785EAA502460E20D7 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = B38C2743AAC0846B2D22EA0225E3AAB1 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B2BB7021BF8CBBFAA5C1E8B3218F9351 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; B6F7CEB2DB2CD5B6EA61832DB1DA96D5 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9881F43C243FDB00FAA65A90C28A02F1 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D224304D924F694162980436C60BD96E /* RNFBApp-dummy.m */; }; + B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BC55187E416A8E6A3A73827798BFFD /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B718BDD197AE1C7D0EDF9A1E4B642CA5 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B3E48D4E52F4BD78C0908507ED2E4102 /* tr.lproj */; }; B7251DF6813E92CB3A82B20BE595F880 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DE4E309CA0BC85CD4E6A063E9780708 /* GULNetworkURLSession.m */; }; @@ -2481,15 +2483,15 @@ B7AC4E524FCE57E98708FAB425402CBD /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C742A20ADD9E0E46F4B632E3181BDCB /* FIRCLSReportAdapter.m */; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F1EA239387237E65FDFB1FF1D516105 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 843F34EAFD706586CD0C9EC3F8F91F99 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B3B1EC90186B5AC5358F582FB40FDB /* react-native-notifications-dummy.m */; }; - B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1025EE494F9E26A66776E07BBFF698E /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */; }; + B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E8EEBA666A29BA94151CD1AD0CDF1FD7 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4271CB6631869433031EE33331EA0986 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFE76169012BDEDDD1847959AADD9A6 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B10E1E091970AE1097AD6223AE30D8D3 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B81828DD93DB85C0683EE36DD5EBE95F /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E5044315D7E7DAAE49B767F959AC0932 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = A741DCAC4448E118A33E55A984865F2A /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FB9D78EA07DE99F693EEBA901C4D8A8 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4288E6A85C4D6C401DF60967934E4D /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85819255D00BB610B66676563B32410 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 12040043997D5E4561E199109FB51685 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D61C2E3EB88ADFEA656CD45A144DB5 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -2498,31 +2500,31 @@ B902AF6B0918FB840CCD91E94FDF39B7 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A92991813AA6D28B2E0C94DEEA1CB5A6 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A886F7D02FCF86D156DD6CFA723B42 /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 687496EEE6014D805ED9D32E7E1C0943 /* libwebp-dummy.m */; }; - B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D415DD9D2DD55057176B5FB8CB2FB45B /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C26FA4EB37E02813691240841A25D46 /* RCTBaseTextViewManager.m */; }; + B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D40BCFC7732DC3B18B98425AB1847A4C /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 747262C8838A27CD99D77DFADDBF424D /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9B58BE164B8ED2D35DD93B1D5385137 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 83D19653697B29F16CBBC9A7C10B26CE /* FIRCLSMachOBinary.m */; }; - B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7953D21C3398F60EBD4FC532EB9E253D /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D5296199369C3E07EEA437FB70F883 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0D48513A8D99ED1A00A076F46C3816 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F6B9C4ACDF80EE73CCA18B0CF8E5341F /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479D4739F12395A5D7A99B49ED3351C2 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BA1B0B45243063A109841A143245C590 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 74428EC61E0188E17715BC61F69D9FCC /* FIRCLSFABNetworkClient.m */; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D0730330E697589D830A36B2AFDFD49 /* UIResponder+FirstResponder.m */; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */; }; BA3003D24D3BE212DB5F9467F24524F5 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FDE972D4AD9AF52016E548F83A398A9 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4ED991F7F12AAB586A0C3A50313268 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA52E8F1211DE60E33317887C1373E85 /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EBCC81CAA3C63A93A843D32D8FD8FD94 /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D5D96A5D5DB15988EECE23ADDC378C /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA942A5A358D6A3A01F66E7C949FD930 /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 47EF3DE89344103E4EFFB2621B2A847D /* vi.lproj */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D698BF9CACF77A6EA39A01D1F7452B71 /* SDImageCachesManagerOperation.m */; }; - BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C501D98FEA1521D7804073FD570645 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C637B6A50FC1BD8E160F8DAC7E0E003 /* RNReanimated-dummy.m */; }; + BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DBB46C4A608B5F4778C605300D7D817 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B45549C0E5BA98E5CDBCE7255BA8C44 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; BAD73CF4BC294D4E49B0092724693934 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9E7BDB4580E6F119D6963E3658182E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9F5BC74CAE7ED926C9A1221129CA37 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF1BF7E2C145F3FD4885E6944ED4196C /* React-Core-dummy.m */; }; - BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F0236CCADA4FF86302D88CA23FEE55A /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */; }; + BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 47EEC04E68C554C648F1C10500C90103 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 58F222E7537A0134B613713ACF0E5447 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; BBB4E8EEF50C70033F406A49F2040ED3 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF1FB8B22E115336F0A53CF3155F4D8 /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2532,107 +2534,108 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D7FC7F419E7B19628522F0ECA592B84 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BBEA2040AB1AB4C04EC266B5965CEA76 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C85970971D45FE03BEE3A346F032E001 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D77C595107F9ADB666FE144CC4495 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = E615C455EE2E6D7D7167202FB9DA409B /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC254260B8604B20837E6C808B72014D /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 897EE487D5DFCF9DC8D5A277501259A8 /* TOCropScrollView.m */; }; - BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B3476B5067085EE84616F036513051D4 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52556F603C304852E2A3E72D9840AD74 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3909AA63E20BDDBA020EA572C512A4DD /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F80DD90C6A1DA871F6F33CBFFF8BC2F /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7618A5EE564C44A089744E27664CE0 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = D401D90B858A671DCAC8FB112F470F99 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC7AF5E53723D518C73C0FED7AB39AA0 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C60B15390B5A15B6AD61A8B8AB6D5ED /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BEBEC84E17380EB751F726BAC379C0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7677DB755FB7597872802668909BC0AA /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F6107D31E48E3B71F6CD5D021359651F /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F1392380780E408157162DF512F677 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = F590FC07F8675B09023B6768A3C000B0 /* BSG_KSCrashSentry_Signal.c */; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */; }; BD04B19D30A7DDA2110F8DD46B05309C /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AAACEC58ABAB756C14C9B043CF24A0C /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BCC0B43A01F577F47B92A3BDC5256E6 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 421264897478D2046C35BC7685C02D81 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD2D9FC96B54163E2DC99899E8C42F34 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = A92E79641B310162AD0C1942F5B389D8 /* FBLPromise+Do.m */; }; - BD35C47AC83CB62104AE31461A7FBB29 /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4FE4404C9C754BDD63009DD9E39341 /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD35C47AC83CB62104AE31461A7FBB29 /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD5072F01D4F31835001890346551F86 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B4A2F730A71DC95AD052A05C77F01F /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD78FFC5FBF7237371DD462265B06FDA /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = B98CB91D6B7838DE160F401F45EFC20D /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD80706281E0902BE82B527D8A2E194C /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DEDA22580431B2F80D82C15169D982 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C0744341C04F176ED6B9D0F0FF5B9597 /* NSTextStorage+FontScaling.m */; }; + BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 674DC30FAC6A728796E8E311ADBD20CB /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BDDDCF03B2B3F78451CC4C26A6C2E56F /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB82938D8DC5A266B866E74B527547D /* GDTCORReachability.m */; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F290E2B38BF7A6D0E519530A715DDF00 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AFC17F5C559815998C0DD2ED630A965 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9273E9670000B4B9C6FFB990562C1AD /* React-RCTImage-dummy.m */; }; + BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E56CE9021435E07FAA058AEC9A2529B /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B8A0A9700975F91433BD752EC08FDC /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2001F0B8470629C4C9988F6397F5C9FE /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F2C9ECEFB9B5003CF764D8A13AE79F /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FA4E4A0E0EC02A2A102D674CFD47678D /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E69C91826A40B89D6913BF2F2196D84 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF92E21B7778DAE98C6CE57778B3314 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72502FDDED0B761879C841806F4A27AF /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BE7C61DDD06679BA1298ABA9CF18CDA5 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E993A38989E296E043B5C53FF43EA8 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7B92AE6A1EFF40C35491208D58D0C4 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB4A6B042EDE942C08A59D878BBA0EA /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9173891E3F3EC1623353E06611BEC253 /* GDTCORConsoleLogger.m */; }; - BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E05BA9BCAC133670C3846F676BB9C2DD /* BSGSerialization.m */; }; + BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8470C2FB63AEE836B0FCA64A7F812BA8 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 037CFAC9C81542A028851020ED965541 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF0F48FCB7DA3B597CF530F497768ED /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 48410582EC986A3E6F0649D9FE8F9D39 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CAE4A6D9E6F4B0DC6B348BE84E85D3 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF88469CCE5C3998477396ACFBA9EA6E /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = E070D082F0496D1A1BB636C4F528F39D /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 798DB6C8DFE6F147B46EB55389159322 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFC35AD1D40EB56B4DA583649E8F5D13 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DE5B6E1976CB78D2814FC724DA3541 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FF0C0A9749B3B486459BB8DD1C2F24B /* ARTBrush.m */; }; - BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB3C04487A2C776E7B4FE3FB30FEE6E /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A24B4F453E6120E6DF8BFB1B867D1375 /* REATransformNode.m */; }; - C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A5758BC8356E0FABC5DE99BC0C4C1FB /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 959B66E0A5FD36C3AB97C95FC9071C65 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 167EE6CF41F61FFF03A1C1B9C7F43555 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */; }; + BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */; }; + C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B97A049CE2233B5E8631885350B11E1 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0581C5E118FDFD225B70062D5951D1C /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = A06DC7C82953AC69C5D7905573C55933 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 3576D97114092E1C8E8FF8FBA128C15B /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07E5C729C5CDBA463F9B3244CB7557F /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BE9ADF4EC792E91C49786D85F1A9C3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07F031199013D105FEAA8C15D45F158 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E92B1CBD11C1B58FEF03284A5D74A471 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B52A61730AFF2D677E328B262A2D7B1B /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3BBBF03432E9D906358AA7E355DD63 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 42A313947B20CDB26F47B4EC13C31194 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC9EA71B0021E634E402664FF65CBD6 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF25F6F7520013B1BC788524EB63C196 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5DF7E8E353D35E40BA8F49221C40A1 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B1A1306C64D608EB4C738C6388502F /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C0FE61BF3EBB297460A741F2B0574E9D /* Pods-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7CBF06506FC0C5E499836B0E8DC898 /* Pods-NotificationService-dummy.m */; }; C0FEA850E34B4915EAAE6772C2C0221B /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADD7810C6DF1440631D2AA8C8C12E13 /* TOCropViewController-dummy.m */; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = E20A9F4DD32B413C18EF6F391F937A82 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA717A3118273595FE57C8EEE56A5D82 /* RNVectorIcons-dummy.m */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A954A99B1855EF7E0DCF45E3D72E5D57 /* RNPanHandler.m */; }; - C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AFEAA4053C613F9D156867FFA9FBA36F /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB03B26D845EF62566ADDCFA7176A9B7 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = A7409C79FAAD7C1330FBAA89BF53967A /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */; }; + C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2055BDB57180E82727365BDBEA6CBB /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E5C64C703102920ABDE4AB698FD1256 /* InspectorInterfaces.cpp */; }; + C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 28C6B44415916C55BF988662090BAF2A /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B52D338DAD0922CE577DBC9F439F6E9 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D0AC5AD2DA4070D34ABFB08CDE01B0 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3788DF3FEF2BD13F973CCCC547938F87 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 959BEC47F401BC75EE0CEB1CB434EAA4 /* BugsnagSession.m */; }; - C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF111DB0426A996E4ECBDE94FE5C87E /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */; }; + C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = D1570649D7DA9D5459D8220CE9F3C2AA /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C924340471D482F7D3064ABC398995B2 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; C283BBD7ED04212B9A808864AC9ADEA3 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F9E3E5E9EC0B8F78F414B70D50FBE1 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50ABED557B2727B15D5F04BF4D42865C /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D27B35A495F5703A7F5E47C01CDB27 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 12AEECED6AF7D715C1A84D61FF91DF3A /* FIRComponentType.m */; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AE4F7621EF6AA86F6624CD97483D0 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDC81A23FEA024472B955AB40E04F3E /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7873392205C10CE55AFF7029DA01C8 /* RCTBaseTextInputView.m */; }; + C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */; }; + C30D3BC1FAB19C0ED18F445348DC68F9 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; C318F088EA3D878A0D1E44C71C8E6455 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AB941A4A795E00CF510B118C62D04E69 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEDC75D130EEE6BD296583E29CD906FE /* BSG_KSCrashSentry_CPPException.mm */; }; - C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 136D238DB2DFE92BA70ADE80E6FACCB0 /* RCTSinglelineTextInputViewManager.m */; }; + C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */; }; + C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 44F4D9618C4088D58BC5692C82AD25CE /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3B8F7A4FD176040E2498D2F3F57C62 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 586ACCB789EB27261770E79DEEADE202 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 908B1CD128E2967199FC5CC569F1DD63 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C38DD9DFD1FFD996EE9F0E74D6224174 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D97A62D5F7FFFED570E9717C1B77CA0 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F76168BDBB53E0EB4EC8CF751841B18E /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = F60ADD8AFC23B1A7DFB0240A739BD6C4 /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8655ED43A6270E35EA11A8B75E5871 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3B789F1FFA2D63B4882E3FD6A2C8A98 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5343C119674227B662AD65232D789027 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 446A7B4CAC5AD80116A78511256976DE /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 291ECEDE7675204DB498E8FB478238F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2643,93 +2646,93 @@ C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB3FE2A17BEDABCF0D67499A4E02A4F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C448A7F24667926FFE2CA75A251C6249 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C907FD202E0FFDA105B5A509A977743 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; C448B82E54D115C72AB59F4F6BE72C16 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 777D876DE04191F5FD7ACE4451E1CCC8 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C3EBCCAA8340B2292779478E322C0F7B /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CA677BF651865EC11C8D20C8EE515DE /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A907F87408A2A4ACBBD17AEC4364D0C3 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = AB79FE13137E7659391D350C4D520D49 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C35CA5F366D9E90E75B49F02508392A4 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F492DA4602599FE1AC754B16FD07503 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4C603BD962E852D3D6ACCDC7E1FA6D9 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 65140110B413F1F23561D57B4FAB24F0 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCB167E238DAE7C051F34D90252B9E55 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8677E0BF848829D3E1652A025D1E4D78 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 535B743A191F399420E426D8B0102A3D /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2EFC9F3617C8132B2F6ED699A3FC2E /* SDWebImage-dummy.m */; }; C573ADD266BB9FCD73F607FDF9683F58 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBF8573CD3A0D7CC987247807516ECF /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3803028B3463B243421AE1D90AE493 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 035993335400665A624E09234BC6A986 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A55251730E9B0658BF746EC7F25139FA /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5802BF2D7023EA04E528D82B48D9901 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = EB60EB90116FADA18E2A8985F0C44F46 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = E20B645CCEADAF83BB1F549F39537571 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 318809000B2034C42F024E63559E32B6 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C5A6906F44D4B0C9AE50B1CC8EB9DA96 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A814E92EA07C7E1929E2126C99FA790 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5AB9C2CB629DC7637FC6C350274D3D0 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0CA6933B225B17A6B95C12EB10D68E /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5CCA75F65517FBAF1ABD1756E101744 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = C6166541CE2D2D90907B298B5A2771CD /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5F273B1A904F4556CC59978DAE262EC /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2685DB9664E678CB0C87EF6BD998FB13 /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99764E3C24325146A38FF9DF1BD40846 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F02A9C17CC2DFDB3B5D394ACD6070222 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C653F36D3272A555537151A6DC9CEE7F /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 30163F074732A3DCD3326EAE9F1DF671 /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E140D805FEFE3701EC7E12BE2ABF66D0 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2403D6BE02B9DC894FACA669D4E2B68D /* ObservingInputAccessoryView.m */; }; - C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 146E7CB2DE1BBAE185CE0856DBEACFC9 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */; }; + C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADC1964B240D9CBBF4C261A41861ADA /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A30E4166BB2230FA571FBF90B707013 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 738A67103B504ECD54BC2B905A42B479 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6B33D87843409BFE30D6E184F503117 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D54C7C94EC93BFDA6EB43F9CBB6A2 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F1766B7ADFBC8356A75896D0F97C98 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9672D26825FDEA0DE700B59B47C0F9D6 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C93949043EA3718D0AA4236C94F6D44 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 236024A068DDABE38303EA3FA7AC8994 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E677A38DAC2F1BB682006C006DC2FC9 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0366AE56DE9F436C200FBBE82DE0591C /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D0413152AC6892E64F76BAF43B060FB2 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B5F3ED7A07A1DA4B7951D47BAC11EB /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C9A4AB438A7D176F08CFFBD5383A8C /* Flipper-DoubleConversion-dummy.m */; }; - C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = EA3C94E9631A5FD359538C671675980A /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F8E33AEEE10D8446F04814C26CA980 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C74EDD68BA9D43E389E690BC19C471EB /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E11D056E6F92331F74B6EAF8D0677E9C /* GULKeychainUtils.m */; }; - C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CD2B8D9C671EA90A96FA71ABAB2DBB8 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AC77A36EA9EDFEBD9E5891D0B7C06AE6 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB62303CC4672914C42861A7628B4AA /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BF88A6307856EAAFEE39B3AC5A73BC /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3643CE7BF073A819C3B4142D871FE13D /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */; }; C7C762139012AC78A94526A80497A74E /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EAB90EF822713B7D8AB265ED3C7BB0 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EB70F95E2C1B99316B59AF30AA8B23 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDB5D7CD832670302786387AB4BC9336 /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 498249EACC04B3EAD707CCB97B1D05D5 /* Flipper-Folly-dummy.m */; }; - C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 130BCA25EE4483EFD663D9B2D1C559E3 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C84B9A835932634C349577E1D787CD90 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFCB14A90D6148FB43FDF9D41AE16BA /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E6F658BEB77105D9B54AC764256AF2 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 432B63230EC208F5C88679278D14482A /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; C887E31027E8BFCCC686D1ADBA9A51D0 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = C66058D6B35811735A537386F5CC314D /* FIRErrors.m */; }; C8889525AB03223E9DDA3ED5DF1D31AD /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 937F2556B135DB1FFA4339F72FF08A5C /* ja.lproj */; }; - C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B433A05A8B2D01A1F22FA9A055BB3789 /* zh-Hans.lproj */; }; + C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */; }; C8B2A7B002756926645AA7F6D5BEB658 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BDFD3B6E209739769E4DC08A11737812 /* FIRCLSThreadArrayOperation.m */; }; - C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 078E4301CF6762E329DB080995824CD3 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510874379DA08324AAC3DFC7D322508 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BFF90718D392E1110A4D7D3C7C95DF /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 405A5F68DBF642E8599AC1FF863B1E75 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 23863380FAC836A1C4469C2DCB32DE67 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = BEBE73AC339716382E27B6AA050669E4 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C31B69AFD927F9BE6E1A94CCD9164E1 /* UIImage+ForceDecode.m */; }; - C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 303FBA33C47F840E409C2F636171D63C /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E1FEC1C26450454F522DA2DE070A3077 /* UMViewManagerAdapter.m */; }; - C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B6684ECDDA4F69F6F86EF20CFF72B9DE /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */; }; + C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C95C33E8EC0502927BCA940B2DB8C26A /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CB6B95323D59DD380E20828F800A2BC /* FIRCLSException.mm */; }; C979C8642FE68CAADFB4D908E7CE958A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 945BA2FD8A0CFBC2569706DC93627D71 /* FIRHeartbeatInfo.m */; }; C97E9BE75C40B8D873C2FED2F30BD9B5 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED9AD358F92ACAE62BD4F17BF59D0D5C /* PromisesObjC-dummy.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A1979B97D255F084F2CDED967B5B6A9 /* FlipperKit-dummy.m */; }; C9CB98A908A38AD2F41310F40A53A5E8 /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF6A27CD19A88C167BFDCA21098F735 /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D921D66B907E10A8E951D0A9CEFAB7 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88C3924B860C66DB16F359BAE6CB4A58 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A91A6C4526F1A2288089FA57791041 /* BSG_KSSystemInfo.m */; }; + C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1CF0CD5E5832E3D28DE78D058DFE0A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 657B612EFA1F6B2A39F2EB10C3373613 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 453CC615D2DAE67A94EDFB31C4B2AD85 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA41ACD4F3E8606385E277133F084FE6 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8FDEC15882BDE790AF498EFE474716 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA4F510964D66B8A8ECE2B6A93084CDE /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 328CBCB00EDA5D464EAF30F38790A598 /* GULSwizzler.m */; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D18F70546F85D4E5C0B93A7A36FC86D /* Orientation.m */; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 1646C0FF650E80A243E24523B702B686 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FED1FAD71BFAA49F9B85EC506A7B9A9A /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA78D116295A9800B4B0DCB80CDEC217 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E235FB4D7E0FC2F6BB891FE35288C5D /* FIRCLSDwarfUnwind.c */; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6A30629E47DB05D80D3CE9BC7C774F1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E670F463C5CF96DE9B97852EF71F16D8 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2737,29 +2740,29 @@ CA976FD6989F3B1EAA13A7F8760C1922 /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B9A4F94F136CF7E36F8C113BC2A8F2 /* FIRCLSURLSessionConfiguration.m */; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F25F87AA623BA162D848B5B3EC9C60B7 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CAB7B5DC1D0EB61717767389C3232654 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 392E85A6858ABE7569F9F5529E2677B4 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D140B32A433A03997642E0B4B840755 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E85CDCEFB77C7F762F28DA8B951922 /* RNEventEmitter.m */; }; + CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9D8E41C9347F5B9DF6F6B812193B39 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F156B2599F5935F219BEF7CB50F9C5B /* UMExportedModule.m */; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */; }; CB3A8EFBD7D962BB9B59F570F76E4B71 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5A3EC7FB31A95B5849F67973BBE458 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4072B6E48E40919D7ADE93214CAB1BD /* React-jsiexecutor-dummy.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCE69F564C5DF3C7A4951E49DA46CCD /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2413DA9EFEEC8972DBD2B58DFD628088 /* RCTTypeSafety-dummy.m */; }; + CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */; }; CB70CA7763BD4D2B937C291757D03F8B /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A95CCF2E6F533CAA1CDFC6D5E9FD390 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB72935343A22E6661702C05820F6ADE /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 32F0C2598813B8577CA20426C6F8C906 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E16514CEAEAB9670F41BC49A1B951351 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F7234D7E8D508D4611CF40AB3D7F25 /* RCTBaseTextShadowView.m */; }; - CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D97F5F6797C3C24100DF89C7872EFFA /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0566E94144C8D3E0526E02DE71C126 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0BB518C14A15A56648290B177BAA21E /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F08B5506083FF33550FED572722B2687 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */; }; + CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 04C6EFDE83470C158A2170DECD738DEB /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A48648A2E4A8D6D50E6596F6B3A006C9 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B80BF2776B8E8A0AD3B67EB2C12515 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = A13D90A8141DAE1C808F1D456817890E /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCE2222A3A80A75225E2F7E51A4BF168 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B2852213173F5CFF711D59E572336C /* UIImage+CropRotate.m */; }; - CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = D93455723F65C959386340D327CA64CD /* EXFileSystem.m */; }; - CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = ED167C18ED6B74AA95A7C810B802F5FD /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */; }; + CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD06F8DF31B965A09D35AC883E850127 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A7DF13027A944C7B28667B6B41ED7C /* GDTCORUploadCoordinator.m */; }; CD3AD11A8C4C775115560027F7AD3338 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EC316318A17B21512726BC118D88BED /* GDTCCTNanopbHelpers.m */; }; CD46B808BEAB53C8AEC3529826B8551F /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 667F0DDA57E645FF1582C17C842878BE /* 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"; }; }; @@ -2769,104 +2772,104 @@ CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFBF16997CAB2F677E714F1C5AC2884 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A05AF9229BB81A6A96C343D99EFA66D /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDAC7C662991CE550BB6F080249D45DF /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FDD2B0099449721B413A98305EC1602 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AED1EB8FC2E5CEE44B89AF8A87C1E780 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 010C2584F22DD9546DF20B9967FF8F3C /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE2F691E96FDD1A37506120DDC069C0 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B3C514048574CA7CDF45FBCFB6C059 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE018EF8459E8FBF8A9D9D34C2EC78FF /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED083F33A0F5839CEF34A1AAAA3E985 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9018C017CE1F173655CFDBF3C9505A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE240EA868180FE4ECA7DDFF4A387514 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E4AC264BBD9EB4AF306F61129B26C7A6 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9A860DFB3AF53DCB2C6BD37F35D301 /* QBImagePickerController.m */; }; - CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA02A081BD0C848918E3A81E4AEE47F /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F036BB59D70BDCC12BB867562655A4 /* RootView.m */; }; + CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */; }; + CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 075ECBF84686B11D2B7FB511729E0BA8 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBB2CEF07D023E0AAA53383EE462F01 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 100767696652CE6868B74285BA9629E2 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E420CBAD1F0BC698213A3505A954389 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E6B448B3D85943E75ADE0EBE98D463 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8304B7838F36B6DC0F8915DF399A22 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 61876661DE00A6E1CCFEF073CF75F138 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE92DF0BA0CC96BD819D5395E3F5D4AB /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = EA6AE060BDB09ADB16FC1E1EED922690 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE9BD8128FA43A9D3B12D8AD8D6A49CA /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6114C15E0FCBBC21B34CB75B15B315C /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB34B02012E0B2B4A50A5D88AB1ECA41 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E54B77C10474AF8FF36361BBFE17477 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FE8128E0B06B8EBF6848BD8ADDA9A2 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEE0D3B7FFD05BE2465C81B2684F976A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CA3EAB8271BD27AC665FABD6262137 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 57FCC889D05598718E2D52E33E1FBEB8 /* RNBridgeModule.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */; }; CEFA85387A5815500FDB776E71D8925D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4319295AF4FC4DA2D372A7A2242DBC0B /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF0F0EE11DEB7BDA2FB659D3F65ADE64 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 362E6DF70DDF44613FAF8E9C07757DA9 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 52AADD7F3AB596E615B73E00DA880A3A /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF28B6D2C7CB7060E1B6ED070988351A /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = AF02C242465A72DCBCF36847EA043397 /* FBLPromise+Testing.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0648B63D0B8503BE5377E8A097A741F /* EXAV-dummy.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D99345BBB430917AEB5318D87DBCE64 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AA30777DD6CC881D652F611A1BBF07 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E710D1100A122DC52143D5CF9C532F6 /* RNFBVersion.m */; }; + CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */; }; CF5355174AE8A3C6572EAF4F036E5C6F /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D072B63D09454F7C7CA56040E8109A /* NetOps.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"; }; }; CF61BC82A77EAABC5ECA0BB0E57983C9 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F381A046A86C1216B2F66D645A3AED0D /* UniqueInstance.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"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A6CF593FBE73A2A350E290B504E4F1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CFB0EC291403E07E9728A8ABA7E36129 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 048017DCC836D969DCB47524086360F8 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A4A29B3270D512E1CE14CC308046DFE /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */; 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 = 159803000B055E9C735853D85E9ABD6F /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 78198D667724C3045EC32B0E335E928F /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC42F42E007DD4FC1C3404A4885D5F81 /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 97110259DEEEC959980EF0B409E72C19 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA1A6B4E26C0F22B4D438DA1B41F034 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D04EF723ADBC7EEFD75A13EBAE5DFF93 /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E0B16CB42C761661095F417C073820 /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 23FB808DA54DB260FD071C1113BC47E1 /* BugsnagReactNative.m */; }; - D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = C28674E051FEA75FF8455A012A5F6146 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */; }; + D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = AF025C179AC97F527B225FA45CC41CA4 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 16A4505FB7C9A02DC6F46DBF29F18E8D /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; D0E3DBC2AC46A8D0D2E381F8644DF514 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CADEB74AB3984448F4164432656C152 /* FIROptions.m */; }; - D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C54B4F6C51C0330DFBC714F49CF6D0C1 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = C788DF693D5554D8D114BACE82CA597E /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D12DCE3C23ABB5C83BDAA983477883FE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B903A67830E160EE0EF8C295A48716BE /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D142D080A3D2C709F861A423CEFB0461 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 514821ADBB2F303EDBB9D58B2B41EE75 /* GoogleDataTransportCCTSupport-dummy.m */; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 484F863453629E403018AB42730698E7 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C7755C4DCDD70D7AA19712D472E705 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3AD9DD291ED51D0E0F1CC44136DE80A /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C7246FCAC6B53FE1B9FDDBAFE8F13490 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1A587C0388303098B385EE306BFD2EC /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A69354C4F0ADF78BC18781EEEC84C7E2 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8801879744C457321D771615FA9E1A /* React-jsi-dummy.m */; }; + D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */; }; D1BD97AD13B56426DAA26A2468DA440C /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 564CA8699EEB111B2ED88494E0150D5F /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE24AE4D688274C453602C8841B3C2C /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E204630DEFB7ADAB35464A0408D565E9 /* SDImageCoder.m */; }; - D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D293B3EB2BC5F9B58CF7E8196E035B6D /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 96ED6D0B147039A5268A285F7593E9D4 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01FEB054FF3DDD43EB20228C7DF1D813 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; D290C257228A28FCC0A9CDE248452DDA /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 7EF7838F5C51D7F6A7D9CFA412DBC1F5 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ED09204DC31E77A445E9EEA39700E53 /* RNLongPressHandler.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */; }; D2A983A6F32EA1B5199960179F79261B /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 508445BC9C1FB138C10A18EB86527087 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B74E6836D44799DED3702CA61119C2 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD37875EF15239DF7C195EA18DC9ECC8 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FD229D8F017FE2ED27E59017179E3D5 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2C1DF23CD0358ACF87C73A488A63F7 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB9438D6D2AC22E718159DBDBD1F30A /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA1148F902A42412AFD1269913C9C7BC /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0848326022D9285AB3B2D7CFBEB1CF /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35690712AE7EFB66FE528D1996482480 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 24102FD6ECE5EE858D343F400BDA1F30 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = BCBB18C5F6F1839997C6A049C0D897DA /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3A5D5097DE0B5618568A96388A62D00 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4D8A84FB7AA243383EB8997F046C3D /* FIRInstallationsIIDStore.m */; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C9BB88A0911A06DA7814B56AB738E5E1 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D194A15B278127866141E2C7BA081A8B /* pl.lproj */; }; + D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */; }; D3B75426ABB5BF990386B02043B53B75 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 838AA08C8AF575070CEF28CED0DD9667 /* FIRCLSHost.m */; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE28AEA7FC6B3229ACF46227E87689C /* UMLogManager.m */; }; - D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AAF491696AA6BD70BDBE52FF3B63503 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80B511EBD47FEBE7309AF44EF877F037 /* ARTSurfaceView.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */; }; + D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = B172A9029098F47FCACF4F7708558907 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D4AAFF579C422392445252BD690A4990 /* REAParamNode.m */; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CE076EC76385AA678905F342C2BE03 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F4BA2D62F40C6E60143B6A2B84DEBB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41D18AF85CDD9141B0609341DCEE5DB /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AF613F926031A1C3D3E307B78680D2EB /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CD8B9BCF402EC556F8872B738F95AB /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C8CC3E96800B5F2273F450D73CF3F3B1 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D8F7CE9484A6D1A6D41237B9943D40 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7079087917665847C821E2EBD3BC4E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D1DEDADF65CC4C395C2BFF7C8000F5B /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4970DF907C454800B98BA5A0FA62DF26 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A8BAA7A6BAEE2C5823F8DAC191B3C7 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D4C5F57F127C8AD253CA39F549EA8142 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = CAC1FD759E3EA26A598645CA20B95EEF /* FIRApp.m */; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D67AD88258D8E17AF7A1230438184D6A /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4E76C84F728AE7A68A06809D4691592 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9DE3AFEE8924A7B1EA77B2663C05F2 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 530172C0FFEFF59AFE590ED116E9D897 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F03A622584B061121D482B0D08CBE1 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 9936E01F702B68A71DF6FC5030D94EE3 /* GULNSData+zlib.m */; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = F74394FA55F7070CD095F5B64CE24EC2 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF9E8564C7292628DA883FC605DB78E /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; @@ -2877,21 +2880,21 @@ D55F976F4368D978B696E3A99B3665E4 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 4462CFAAA8C9BBE3C17275FDC4EB45AB /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; D56AEDCA89023A1E7C86652FEE5B716B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD7A0DE31DB1CAEEB5FB5B670BBC31CF /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = A13D2823D396306F5A6DD2B6663F7976 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A80962DD9C04567AF28B364DC5947C6E /* RNGestureHandlerModule.m */; }; - D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BFAE8F405BB41BF0BFB01969B9EF3D4 /* RCTConvert+Text.m */; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C5151C88E72FD02091261320924F46 /* UMModuleRegistryAdapter.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */; }; + D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */; }; D63E8D24C60EFE8B5B1D85CD8003C1A0 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 890AA27BE2BDEA25925DE114EDCA72EF /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = B536DE787B684F3AA2D7A02FFC256A03 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; D65D7C232EAFE669AF0F91D277BF2318 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F58F88A4882E75DB6F2D62653C730F /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6673FCC4F15C960D35782A1349CFDED /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D64AD85EBBE2207BCFC09A8B336B7FE /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE4D011E5CF13C33F3C3A9617F0CFA6B /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E4C9E864E1F4845769E5BF13AE2E44 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6EE21E0A81DC7E63751687071790BD2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70842C9DE36B9595408A0070537B0B4D /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = EE881A6C211F134C1D5557409B6F55A8 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 4208A3511E3AD49A9B859808AC623DAC /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D738B9E26FD586C78BF0DAF81FB62ABB /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D566CCB86225D9463BFAF68E2BA3D2CA /* FIRCLSReportManager.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A1E6D853F65029BF42BA1692B5EE1D63 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 492F319E5A29E41357C7871ABD3F7AC8 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A9F53A4D7F2FE6DCFCECFCB4FCA2FCE /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 603F3515483F15AD3C050F7F0B253AFD /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8B487AB07482E9CA902D4680970FC82 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -2901,7 +2904,7 @@ D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A400BE9A8667F9CE4942F5DF5C10C8 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7FD43F4DBA506841D6A9E2A4EF20089 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F53895CE18DB5979CA76E1A13E482C2 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D80637FBB5211C6DA10EF1A6762A297C /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0594E68D945E7A8AFE9B4364FC05E7 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B3BABE00CB6BFBB3CEC558EEE4D240 /* RNCAssetsLibraryRequestHandler.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FF384C992C01C2239A0D62107ADC442C /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82616F8D27871BA88D956CA6710D550 /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB64CA34DB64EE8B21063AB215C0306C /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A24640E466C96B084FEE8B215616C1DF /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2909,66 +2912,67 @@ D88BE8A09092572D594C0337AD2C039C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B98771221062A48A96595D56507876 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8A14C1136C6E6F8D65875FB52ACC6F9 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2471035527AC86FFEA69DAB45EBE51D8 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFC5CEBE6998B8E15AEAC6F2D288C0B /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C22389029EDF4008F44BE5DEEB1A4CE3 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 217E4D6BC77FD0A36C10CD85B47B4E28 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAD21D705425C0F0102E00CEE5B0FBFA /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 511E466B8255B2411184CCE113C7F953 /* BugsnagSessionFileStore.m */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */; }; D9136385F86B439BF4110F471C710BCB /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A336F63F5C60A88C645CAD3FEA23CEE /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB3B708E539D0D6D0607CF4F424D26E /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE3A78189BDE60B89E686B3CAFEC639F /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5375DB3F24B9B116567C0EDAB83688 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9509DE6780CB281F74D9447AC38ADD5 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 0388A04B410B44CB2356334BAE78D71D /* FBLPromise+Reduce.m */; }; - D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3788DF3FEF2BD13F973CCCC547938F87 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = FB90AE073DAC558732F8DD918B1CBA2F /* EXReactNativeUserNotificationCenterProxy.m */; }; + D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = A5E47FFFD2C6FCEDA03AD43688CF0763 /* SDWebImageOptionsProcessor.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B026C07D70D49BDB94CD184519B0BBA9 /* EXHaptics-dummy.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */; }; D9EEB7D779C730BA8D7084CE1C82C2F7 /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E018D94A11FCCA293ADC877A2DAF7B4E /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9EF1EACEF391E2D098EDDD48B5C1F7B /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5232C627636ED7608172E5B61E740B /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA0494C97A2819836F2DABCB79CCC65E /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EED8B3D27FEB3E08D282761E4BE616 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA23FD140809F92486DC6C3AB6F20075 /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BBF8A1777BAFD5C973260BD26414770 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5490400C4A176BF4168D0F1F26459996 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C98D41BB9E5A3D8AEEAF9E071B93FD /* RNSScreen.m */; }; - DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F1A4C88CAF0692C27FC25A8AC02F68 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */; }; + DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA5EBAFC713BD2CA418F7A71F8351853 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 1740711C23139C0114C4B8488E76F0AF /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD54472A4CCEA6C4BA8F079C59642EE /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DE31D1E870D416A6780A3C863F5C2876 /* BSG_KSCrashReportStore.m */; }; + DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */; }; DA779370248FFC40EA77D4D44A6BDB54 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D55333DDD6CA1FD906ED2DA4E53C9DA5 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9193D376AE96352133F2775A0619F92E /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8FB4B298F4E4B9770BEF6BD042EE04 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCA28C7B67B55AC4450519080C138415 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD22DC567D94397E1CF1F93BAD37B64 /* RNFetchBlobFS.m */; }; - DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 195AF11C1098E12BE828303E9E9127D0 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 3830B31BCB6F903CACA5A51999979FD4 /* BSG_KSCrashType.c */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */; }; + DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4866196335D72DFE1CA40EC5C33D70AB /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB21EF42E208338E801F26621D3D544F /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DCDA0186EE5E3611A03951159C5C08 /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 57ACC4A2EB1803461192E7AF83BB585C /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CDF25490573F0F4326626F69CD41C4 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F585B85130C37C2B8F62893F947DDF /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C5BDB03F1A54113F94AE0B8B930CBF /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C34BCA804FA4F0B63431AB1118300D4 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53133026034A1AB4969D0C355D691458 /* ARTGroupManager.m */; }; + DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D9D3FE14A3CBFD301293F57EAC711B /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF946517D51F07C30335F4E6121076 /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6041DDA4182F72E37D472F3921A1CCE /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FA3D34D75050A897AA0C2AACFA3144C /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D3ECB78AB39F7A0F60DE7E0C9D3D42 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F5CA118313BE2728A3FF52A6216808 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 062C82D54F9C09A401B970511851C116 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DC47EFB7D481B5840B0D006FDB06611E /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6B347B83E2AA2D3CC69D0CB37A05C9 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC49ABE2532839A7312B849463F539A0 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = FD520F76FBD80356DA1FF8BED46E0FD9 /* FIRCLSUserDefaults.m */; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = B490D1D95DD6CEF97E0344553BB8DC53 /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */; }; DC905C9E567307F38868AC249E90807E /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A469455F7808C1B76A4329258F6F6C0 /* FileUtil.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"; }; }; - DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = F545C6856DE8823E076CF7B63A3DF0EF /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E79FDD7CC2EC9F3DAECADE3628D7323 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCB90D8D8966F8964BA8B9A333F44E4F /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2FC14241A4FB4A7C07F5B0D8922B4AEE /* Base.lproj */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F40A53185836579E30C3EB206F36EFB9 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A30C7F4816E43DC60E9932524A564B /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8F48C9A2DE3AA95645BF6F10627F1F1D /* en.lproj */; }; - DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6A190183BEE368A85FB4BFAEF80435 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E24F29F457A307DFC2E955FD9BA582 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */; }; + DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = D834EE573F3267BEE0E7CCB02EEA985A /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = DD224B32342883A8147E2B54F6650F2B /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EEAB1047BEBBA2329DA3CDF8F64B10 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = C989C6DE38EB8BAEB6957E262B311396 /* NSImage+Compatibility.m */; }; DD3C43A54C47878799F16153478F5E3D /* crc32_armv8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1F65F86386B237B05B0316B1A3B4A55 /* crc32_armv8.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; DD435B05F38B5E0576E48D7C760A2BB7 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = B011AF2233ABBCA46FBEEC71BD95C430 /* FIRCLSDataCollectionArbiter.m */; }; @@ -2977,85 +2981,85 @@ DDC5B985B4264CEA5E226DE7E0AF90E0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 023639291EBD57E4AFDF09B7E1E95800 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFDF5247C0C4F27F981117EEAD08CC7 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDFA735F743E8D12661098DC58DAE485 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 755548BAF1B680D52CF25B4984E8CEA3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCEE285559DDD716A2D27C6E00242DA /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADD9680BE4E70DAC99F4E8F28E80749D /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 60096D9651F5AD11DDC2E5CBAA617416 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = CDA6B2F5C02AF690B51EA8545C2988C7 /* BSG_KSCrashSentry_User.c */; }; + DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 654A23D2C1C8537C84CAD0D175556716 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEA5C2E029C4386529EDF363FDD8BC67 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BF6B0504A160312240DE5D8E4D5032 /* FIRCLSFile.m */; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EEEAF6D15E85574F3500AA19CFA1847 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 8281113021EE8CA8AEA3728AEF6D1060 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5701382D9A8846ABC000551AD5031595 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1179AC3200C75DDB3748022B45D9D631 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF0051ABE6FEEEC784557052147EE672 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 86427295E421BD825AC814673C436CC9 /* FIRCLSDataCollectionToken.m */; }; DF22A8BEE5FCF76A31BE7C8A89E67C9F /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A0860189B4CD7E1B30B0913458634F61 /* FIRCLSInstallIdentifierModel.m */; }; - DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EEF734B66B5541439641B8F21501EB /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CE4A460F7E91A4B4BD5716E288A58D /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF417B206C991E16FF579777C4FF1C96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A383877CCA66C0321486F218ECB64CB /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 550DDE9B1D1807636182189F5EA16B4E /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; DF75C756DB80CBFDFD43D0A99F83D035 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CC24F928CAC54296E03B0F051806F1 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 473C41D93CC6D1773495862DC826218E /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = FC63095311C14548106688A9B3279C75 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 6091F121AFA5D2D5CD9411F3E6D01B95 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF97168226658C94C8D943BA99ED557C /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D671A8DB96D321151A22C7777886198 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B325C64F03917783D3F653A2700BF79 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 288BC9806E8A2497001C8A27589A399C /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F62545782D513B0570CC4018A2E037F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = C34FEF489AFE9DDA6564C61B1D9588A7 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E65018B65877114579C0E4837C8E29E3 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1398287B0064DE78BA009BEFCBCCE3 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0598EB7CB9E335E0333E4E5170ADD1F /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0B134EB010CB93640619051AD559EA /* FIRCLSUtility.m */; }; - E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8C3E4A4D49DA6642E5FCCDB0A4700C /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A154717B3B07FF994D000022B4FBFC5 /* UIImageView+HighlightedWebCache.m */; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CAB9883D8334AFA0E33C8F4507BB6F /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7560EFBCDE7BDC75B9270F74BC4FF733 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FA0DEC6C9C14D9F269C14ADED531BD /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E102CFF1546031E99D8ED019337D349C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0AEEA6606F62C0D917BF535E738CB7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = C346F0F21097A7CAAE7FAE977F1E23CD /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E112A255C08943966E750880118D5170 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = A73099DD75017003E8AAB31EE4015F3C /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E11E13EF27F699205C8B6E7CA84524E0 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2C792AE38779EDE06A21B3BE620874DE /* ar.lproj */; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3750DCB8CD91AD520B68D632A0F0309E /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E15D130E3C58DDC3D2D8FFA5FBA60F8B /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D0B14CB21D552A9902E8BE99F064A5 /* FIRInstallationsHTTPError.m */; }; - E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F541AD96404B3ED7F6B9922FEC7E1EC /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFF569091508B46D910200710A5C6D4 /* REATransitionManager.m */; }; - E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76F4F0674853C7D0CBFCE1B6A9CDD4C5 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */; }; + E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 762F91AA4CC210073E47021B742A3D5A /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D5B0210CFEE2D2CC7A44147D506746 /* UMAppLoaderProvider.m */; }; - E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21A304C5A326E04E00FEAC020DA809F9 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */; }; + E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3190DAA7FB97C9C61B7A4D473A8419 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4CC32F46263273DDFEA3E9FB6BEB27 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E208C5E8C08C4B7CD8BF285F8C6BBE3B /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B71AD9BCECD7CDE1AC011FA0CBC35ED9 /* GULLogger.m */; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F07F53D45BB15DCCEE60E68A08E9F892 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D5740ABC42701AE952A683A636FA9758 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CBA8312ED75FAD8501C96FEFAB5F9C /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = A02FCE0F66D4AD8D30EF8F3D3220A020 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F33813835CD12ADA8EC0E2BBDD550FB9 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DD536932BBA8A8E593665932ED32688 /* RCTVirtualTextViewManager.m */; }; - E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A303DC83D1E9D0301E8E0B35D75C22E /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B25C1D8D16448684FCFD474FA53279E /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */; }; + E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B75EB8E105F9156805FA135498B216 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C1C86AC0E12A9C6E7EC6EF89D40170C9 /* FIRInstallationsStoredItem.m */; }; - E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = A3C2A4D215F38C04AC262DE863776695 /* RCTProfileTrampoline-x86_64.S */; }; + E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */; }; E2D0E73041944854FC7C8B24B7C2D9D1 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C8BC1CD4600E60C84F3B0D429967C4 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A35ACF61E819D51DAC49E3686FB6D2B8 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD9B25A8024811C070BA66D1FEF3F7B2 /* RNDeviceInfo-dummy.m */; }; - E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C41B8A88C3EDF158200E82306E5C1DE /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */; }; + E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2EAD453E4A4317DCF42ACCF7D081D48 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1268F69DB9F48462D2E8AE12F62688 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C413BD72DDEBD4CCC83EC286C1FA5C99 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D36648AFB735731F48A6E15DC61D34 /* EXPermissions.m */; }; + E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */; }; E32C94E302AD5CB8E0E94BAD8A66D753 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = F25D520DE4EF61DA503BF3B66A93B846 /* FIRCLSMachException.c */; }; - E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADBAD79833820B8603392B72F74CE1C /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = A76F3740E25161D6CA04EFAEA904892B /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B01A9E249125C6BDE674885F124BA0 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 237C8807356F273D4CFF4AA2545EE5AC /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 395D5B2342644C97DDCBFEE82D2430B0 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B7344D282B26110B08D7B8D7D1895AFE /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = C83461DFECA1D27977DCD8CCE55C0B1B /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F5F31CE1DC8AB6C91FC6B2B6B7B46C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C74282D982E72086CF307238D5F5E7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFEA0D285067264649D15E258E113A5 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; E432F1ADFEA6AF93027885C4153879EB /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E843110D34ACC36D6BEF37D1EFAACD13 /* zh-Hans.lproj */; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5D2817A32EBC04C23F895A96070206 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = EC39F54F14999F11502ABA2AA129EC99 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 910BE4D029D425D203607CC5ACDCCB12 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E43956E9A9E6953EC5051321EF2BB8A4 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = C5275B82FE252A5A80218CFC82C526A5 /* FIRCLSDemangleOperation.mm */; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C6F2689B9C827B9FA44CF9C1F2FFC0 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C52C315297E24DD1FD38925FB48D52D /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3066,48 +3070,48 @@ E4CB4269099FD9CEF2F73AB9439C7B4C /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = B62F3C7D15B1B9DC583296B7645BB20A /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D6FC3D6058A2F376C5C6D38B9C8442 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED97801AF64B223BBECA86F35A42827 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D838084D6CC4D8518F1896EB83CCE4 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEF7E267E91ED2930A54BC3EF13DEAEE /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC2C1FEB288C0EBD311C9072DE6C912 /* BugsnagFileStore.m */; }; - E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 7CAB054EF59ACE8573887C4C0CC0B289 /* BSG_KSCrashSentry.c */; }; + E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */; }; + E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */; }; E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB970351CFB42D89631ED4E5475730 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F286A38D9F8077D66B2907B4471EFA /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 115B15905C9E27E8F291210C81B4D2A6 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBCD73AE6E477EC41137748E2B30461 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B4457BBEE1B2C2D1D9285171529B43F /* RNScreens-dummy.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 048B99AAC8A1A2A86ABA6C8584D941F7 /* SDImageWebPCoder.m */; }; E5AC340EBD1517A25C5CD160306456FA /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0D31313F3FBE3369B22495015B0A1 /* TOCropToolbar.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8581342460145C7EC9F6B5F357C02246 /* SDImageLoader.m */; }; E5E200E55C0D22A46FCBB2335FA84B25 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3489F8F38CF643B6E1A1188CFBF5A45F /* 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"; }; }; - E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC5A9161A0E4F38AD2F3D69963DFB81D /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B12E07DB5C7ABC90D9F903C0E42928D /* RNGestureHandlerManager.m */; }; - E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 071B0B80450DA6871DD27CB84E0EB47F /* BSG_KSSignalInfo.c */; }; + E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */; }; + E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = DC789D5F1A30C773EE83B38BF1D894B9 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC2129CD045B185E2D06E328B0AE7A8 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F42B831282C4AE1FA5108AAFB62AE1 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = D601C3A1D7FB82879F15EA8F95EDB86A /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E62D0F093E777DD81625A8DD305B63A7 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B532D3A71FE4CCB1130CF0B704D9A0D /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = EE0CC7A8BA9D885293CD3021D6468873 /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA5867FE895A65536F3F6148AA6BAE4 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E639715159F444D5BA9D88E495ABFF4B /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 637BB8714C78B885B4751C684DD857C9 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; E63EA8710EE016ED7487643D8A30E255 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 69E34D6C25ADA1C118057E1787651A66 /* FIRAnalyticsConfiguration.m */; }; - E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = D592FB3C17F92606C164681CC14D1CE1 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B28C6987DC7BDA395FE24DB0842AD8F /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB9221B769ECAD8F1A1D9A11975DBEE /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 453576AF85EFD854EDB3E3311DC7604D /* RNFastImage-dummy.m */; }; - E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = A9DF9FC613E6147B5063F5481190661B /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */; }; + E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3A339A287C5D9E83CC0225775DEA6B /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = B3CD37F75CA5168D4D3911E55ADAC6B8 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D59554B9CAB55F861B07798C53BE7454 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BF0A46C403E493EA8A1C2CCD49A4467 /* NSButton+WebCache.m */; }; - E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D51677174B819C212DC134047038F3 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; E713C3CADA28F31EE3CAAF5FCC72E4EB /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C940B8E70B47D19346B71BC35441D0 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BA640F40EF83A956AFC558E6EC6BDCF3 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; E71B72B642D137E677797CB142A8FF72 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F97FA9FF64711D9D0A4C2E3E403972 /* FIRInstallationsStoredAuthToken.m */; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 363051A351FB101CB4DB757D0C56E942 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34E7F7AD0CD6CB2D7FDCBCFD985F5E2F /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; E72CD319C8F15EBFB6810ECE7EDA7A3D /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7297C9E3B233B6C109D53F693029CB9C /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D915D485381EED95275C38EA9CF0C01 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AEF9523DD3A511863BFB2E9AC5ACC12 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 276AA64C33F2B43E6002D226CB1DD7D7 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4669C842B9EB28FB777A181968F06D /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7A62D6CDBAA229E65AE672373925C76 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1AF5D3EC1100F113CC3D3F0470618427 /* fa.lproj */; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A1FFCE20159753D7E09360DCAC6D3DC /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3116,63 +3120,62 @@ E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E722608D3EE95549C9CCAF5BA7C98 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 497B3EE29A71EFB193F3A3E014DA8053 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E813A1041A763154AFD217F24E043128 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = AD504639AA59D8D167ABFBA539643A19 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 082C1A363B728D6698E9B7CDF0C4C87B /* REACallFuncNode.m */; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E32056F313D3A13B7028BEA5BD8D08A5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; E835E2397E28D09CD18820BE0D360894 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = B95FD3CBCD00F7E4127E29929C64FE90 /* FIRCLSProcess.c */; }; - E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F2FB6A5DB37C58A31E10C05E1D801244 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E851828779F5FC7B8B8C177DB884EC6F /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDB9425EF8E65082AEB3B13FB362BCD /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7095C3CCC82012A0435F91A76575C28A /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E876DAF2BA76684D8B7601C3DA05A5FE /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45809FAF67F2952419D4D7F8B3B2E511 /* SafeAssert.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"; }; }; - E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A1758EBCE4BF789C65A1E79FD8A79C5F /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = D70A603F51AF813B09988DE24973BF7D /* RCTTextSelection.m */; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1D5AE0CC546D796A6903C35F9EE15A /* RNCAppearance.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 375925AA15E11378D073ABDA0144D8CF /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BD5EA5DBC41BFCA5B323A9C87DBAC1 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 742912E2BCFF65A9888B6A3128937A57 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E45E59960C13DB8D88C8B03EE2F0EC9E /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F58BD9A54067B2D76E77DC7D89AEEBD /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = D08ABD5531FAD0FD9ED791A8CD0592C7 /* BSGOutOfMemoryWatchdog.m */; }; - E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 353340E8757DA01E09290DC9AA2D119B /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BE8EC1E7ACB1ABEC2D7D569DE30EAC /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */; }; + E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E94077F8910379C6DDA3AA207C762C86 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C83E2D2B8873871B6A699BA5EE085E0E /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 55EC19563235B84E3C16129902421BC6 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = F650C59E460274448E538412F85EAAEF /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = E08EE662B7023E41FAC7EAB9F7F59ACB /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 066B88BB8286C5B2C6FAC71D65B28F60 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 00AEB8C2658F2328C9170C3D672E316C /* RNFBCrashlyticsInitProvider.m */; }; + E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 093C8B36D29A816F408DCA55BC1D3870 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408C9918B98217CF3B01E4019257148 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9DD087FC7A1ABEC08B8643910E0DDD8 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9759E576A9BE20BAF9895528E10CD6 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9DD087FC7A1ABEC08B8643910E0DDD8 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 84BD9B6AE5CF36F13E90AA9DB2458229 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14C01FD98C5420E932FC9F461013EFC3 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; EA3D6A64F2CFE7B38FF1161EBA89FD0D /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = DC84A14968ADD20000EC197FA05236A7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEBB16BC868F03B976E11D9D1EBACDE /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 0489DC79CC733FABAC8371BD92144AEF /* UIImage+Resize.m */; }; + EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B9C9D1B578DEE39C27584AC980B45C /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAA8A9E74453CE1C374EFD94C1B7098F /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C50A9FFDA610BD2983A7ACF8123C704D /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D93473A86CD934BD1038A56853136D /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A26598445C79F8BB93C4813FE13509 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6683C86DA58980A55D1577C5A8791350 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 64A7E842B16DF838DCBAFC29B45607AB /* RCTProfileTrampoline-arm.S */; }; - EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F6619D4C84FB5F99486EA359CF43B757 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4259D4B9966E495079C85B5204D7C926 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B55BADFE24214C1DD81A359070BCD0AF /* REABezierNode.m */; }; + EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */; }; + EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = EECDB4F3516EAB5D2A50505C6BCB7F66 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F81C7172CC0ED5CE08DB1A37EE0DE43 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9982B1352F7029AEFB90F1362E6736 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB78DF06626706A548B14F9714BFCE81 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D78F9C00BF67245B935CA95223EBF9B /* FIRConfiguration.m */; }; - EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A918715784DA6F201FB5844357D785 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA41AF8942F59A9A44C399270576FD8 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = E601AF0BA74D4919720A00F46373110B /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D03F12A4E88D55B9DAB3A8CF758FCF1 /* EXKeepAwake.m */; }; + EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13388D990800B736F39CED712509D8EE /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBEB8E966F0000E5B9996ECAAA718A72 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8420AF8C1F6EB4650F970C34B7221111 /* fa-IR.lproj */; }; - EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B8DAFCEEA8153C96566A703F8DCB2D4 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 325718916693D8D2D6BCEB6863EB2BDD /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A2E9904AF9039027E40E6F9CEA6210 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC7E6F8893A892C6B2B9C4EFE90D5452 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C45139ECE89637DC802D68D4F19C389 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E9904691569AF1FB8D6897AE9E4FCDA /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EC97CB108E671D75C839203CDCE70E3E /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5B9420E822B44A0D897C0AC9B8C336 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0D981C6E4217C012425FD40A1504D965 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 963491A9E62786E0785789D2BF070D8D /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A6D752E35310294DA296C586EA1124 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED31D2231242DCE2DAB3492A23A54349 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 591C4155DA9D655F91FBCA3318F9E178 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3180,35 +3183,35 @@ ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CFA731D8F9C8D39AA9BC49D7CD25ED70 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED6BE8C0119B9A5D650B0BB3A16D44A6 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A87C22F99DC9A05A1B9880188B7C6 /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCBBF9764FB6AD4BE86FB46A28A388B6 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 002C57094DA700A2E880C9AFDF09F718 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDC979A9D849201D6DBC483E8B92354A /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 526BA19EC83345B82436604077420426 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 32B6E207F2147E9B324143ABFCD08D3B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D277C5450FB38AE5E27874F9C715EC2E /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 305E4461F20DCC332F3249BAEE807FBD /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E6A76E0C888C98D45C31A60EB8E29D /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EDFFD7558303EBB109FEC50A5C046509 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B6390357AA95B7AF60B6F72F9FA914 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 512C1BF7AD4A3E8967C60FAF86AF9838 /* RCTMultilineTextInputView.m */; }; + EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = E018F4831128EB129FE2410E15D941C2 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7F69942D29F7B96C7A01501E594784 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE6BE6092C061EB63937F805AEEE9D40 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4111E7D34BC0881ECCA3AF8731FB1175 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F86F12E26ACB0183CD35EFE067E43EA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EE8A83128D8380211CB6876B0BD6CC89 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA700B9347F08F911F2287AF43DF8DD /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCF08832B587A2A19844620A5440E9F /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E93CBD601435B3B6E299AE1396B0156 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D18DF309C2FE5E34364E98AFD5B5CC /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 30E7216A300013A4FD7909722A8BC12B /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EF01BB9A24DE8FC2D257B34F391FC5E1 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = C148D0C3AF01D9DAFCF5C2D8E557DE84 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F7F52179F9BCD935CAE0CB408752F6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF0BEB03832B6EE08C1A5B8CC1007A9C /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 933C27038580EAD8CAE905C91C0BE11C /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF11639F4163606C334B78456636022E /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 5447E2B09AD3989C8117F03B66368A75 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 1009EDEF9F071FEB6C7E8A0A44B0FA0E /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF22605AD9E69B3DD5D66D833CE2059D /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D599491C6E13B1E7BA39C3E1DA0135 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43445AB4ED7D1C215F4680208C9B1E34 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF6FC5B8C01048CA9C2F2F96CFA6C81C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C69E758FB2D3A24907A0129B96916E /* FIRCLSUUID.m */; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B69E2979DB6DF82E5B9E92C3DCB55EAE /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72433052C6A1352EEF820CF79DFCF9CC /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BB04F0758A5294AE1EA9874ED33436 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0DDA544AAC9FB433F9AAA0BCE5D9A6 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFBCD28CC96CC7D7629CE6C73653B2FF /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6D68FA7B495C71FC7EF52EC2B20F9D /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF094B4DED4A47E606B128C16F4A3DE /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 209E7C68D889E228DBA3424F426809E6 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3216,49 +3219,49 @@ EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0BE58E58F10D9043E9517CA36EE7B0 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 76605841FD1A47250E4EFE1499D3F6B7 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 03204A74A401AFC6F4F2E563632CDB53 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F36250798D43DB4010BE13139FAD021E /* RNPinchHandler.m */; }; - F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 62660F1DD07C198ED0D6E7A6C45D57C2 /* BSG_KSObjC.c */; }; - F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 779868D8D76DB548B7BB99FEC32CB197 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */; }; + F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */; }; + F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9622397634A3DEBEC00CE06C1B64BC8E /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F064F5A353BC444A596AD767859C7E3D /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E59AA55DD9A126F59C095029C9772B /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F56FEFBF48F3D0E555E22F8D5C2AA55 /* SDImageHEICCoder.m */; }; - F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E0DC5E1BC3BBA16837A8CD9FFD8A88 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F1001B1349B03B91C1356C3A36DD84A /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EF2967E2726D04058E65F36444A3F67 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F0A43A4B163BF7CDF1684938F768C1D5 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = A567147B5F4623BAA13C514E701A3F52 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1077AB8D86DD9D6C3C84F7EB71B01FD /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = C7BCEB4CE467EAC79C8D872A409D3DA1 /* SDWebImageCacheKeyFilter.m */; }; - F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DE59714CF7AB7A5F9F5C6DDA59A8F91 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2068A1B107DAE2DB15594D7FF000125F /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E29D0D7334990552C28F6888E1C4D0A /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3FCA272A3DFBC42DEEA24756A4472A /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; F14AEB46631F4B9EE89D67F568E6713F /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = DA09D60C3C3C3D3785B8CA0A73841744 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1EE06C50AE2DD76E9E82007F2EBE1AE /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20968529B02D627571B5FF52DB9FD471 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3AB91CE88C910CCB9294D27147C129C /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F165EDAD91DD10268DC4ABD69FCA84F7 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D27969317372F0383D1B9F1533BFAF /* GULHeartbeatDateStorage.m */; }; - F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0403F0D39E04408F7284B2BC5D12BE2C /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1964D3CBC02560AE36785B0F166FEE2 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 023EA38835E76BD2F08BBF15724EDCF5 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7074DF42EF3AA040FFBFE468D6FEFCB /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2187EE7FD2E6F6DDD7C64F9F46B17BBA /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D49DF49E3B767A7A2FA0FF79EF6A73 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE64C332B5D529A57DB416EB659E120 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C652AE8776883D817384DFA525C52ED /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58358AF138411BD81E287BC141376FE9 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE99A717738675CCED476268435FE835 /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F16E6C6F82C2B8B2FFCED897BF2AA81 /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0818D39E633BAA54EC2D71D8C25E6A8B /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F26D41F01E683998AAEC1A00C470EB59 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E90BFD41A96959799C69CEA9F27A13 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; F277DD730C5DC4670DEE570B9E364BE5 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC0177033322577FE17C0A5DB7D6D70 /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EB1A4DA9BDF28C66925E12EDF27F78F /* EXFileSystem-dummy.m */; }; - F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5BF8DDF70D08CFDF35B134EC1ADBCF /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F6C13F5A3B121B97C8A0B7CE05CF2C /* RCTInputAccessoryViewContent.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BB1B6BD0F2EBB754F315CB745A8D9CE /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECAC559F363AECB0176E62D356832C1 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6104E11717EFC5656AED600419E5F087 /* React-RCTVibration-dummy.m */; }; + F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */; }; + F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CFDD9897B420437740F2C790E28FFCA8 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEBD02B3C49A8B904680723361E29CF /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2718CA08F3B4888614849B4871AAF12F /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1D567D854AE7C6FBEE7784FC2FA2F2 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = A538681767405B4E9FF83C15780AE054 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98BDFC3334866AB049C88363913B1E61 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB79A4431F3C32CF55295A0BB31B7D4 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -3270,8 +3273,8 @@ F4354D6C88C4F7CFDDF66638852FE083 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D51A8AFF07DCF68B2BB41459E9B8A1 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = B52CD50EEB7B58A8AAB4403DB7C3A509 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; F444CF6C93B81884CF0CA3309DCCC8F5 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7395B37403EE0C69672FF57413CF7877 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = E64AC9874C4095B3734CA3D49CFB7CFB /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F75F2CBDDA7DEF7DBD17CDB62414413 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF848C3AAEB2094BCE44541A8B4DEE0A /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F48DC19A7DE41508D245FE55D1995E1A /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C92C8A75373FDD65BA140C3FC5D19412 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C6DB314BF7A6F6636587528F40E6E63 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -3280,56 +3283,56 @@ F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B085D1FB16245A0F198DB2406EB08DA /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = B8929613C676A28B292CACE916AB8B84 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14B0084BF02DE15FE62812E1288436 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 37788B2527D5751F03EA4192B6243CB8 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F52336859BB9F756E055C93AE2968A87 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99720D30D4764EB212A54A8391F1E358 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F523644CE74F3F365E8C1E26EE20FE0F /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 754E0BE205AB1A8A7039CFC8FA3BD918 /* GDTCORTransport.m */; }; F5254D7669A08E6C5EC0EF0BA4AE59D9 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E687F5C65DD3BEAFF47BB5E8EF7D5D9 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 871DCC73830C467E5BA61CC8CD0BEB2A /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCBDD28E71C653FB4107BD73CA03D04 /* RCTMultilineTextInputViewManager.m */; }; + F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDD96A156450AC5802467E6C6112C3D /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F760F7B2CF522DA6678AF34143AAC902 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAD2C7144A6857141F7C8AD8FFA1A7 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 59A33289C1C941EA60F877180CCF636B /* BSG_KSString.c */; }; - F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 65A416E98CE08276C9891C6E88EFD5AE /* RNFBPreferences.m */; }; + F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */; }; + F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C235A36EF61092E414856544339A50 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDCE5AEFFBC0EFB90D51A5DB68D3FD95 /* QBVideoIndicatorView.m */; }; + F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */; }; F5CCC2820D92DA02FC629CD7A119C9E6 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A805DAB37BDE5B7587D60828B5C486DA /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5D8D91CB3F9C56E62D0576785A26819 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB825B7A88F0CB25190C21C70EECB21 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D16F5B4C4DEA22DFE73B1421CB0C3E7 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F5E7FC21D89006A4336348040B83A54A /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA9DBC64DF6D0336A60497A93DA45E7E /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 120B3B53F3711422390FAE868F810DE1 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 90FC79C77E4F46863DD475533D06E8F4 /* UIColor+SDHexString.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 283746EB44A8BA8825A36D950715DA43 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C1B0F82FFE9634396424B1D8AFBD0E /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F680A09D6874079978F4C5CAD3748BF4 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 31242A4A3BA081BE176B63314AA7D197 /* fr.lproj */; }; - F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 023D12941892B8EB8BE0479C0F7BD3F7 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A990F3724B389E9A3F1D99AF48703368 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F70C1B48EE8C32FBC9AF78B84C715BB0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADA55D682457995E872F8370FDB53AC /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = A1E5E43D11B548EF0407DEE70F8A3ECC /* BSG_KSMachHeaders.m */; }; + F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */; }; F7141CF921934893B165972EF3CF53BF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE56E1ED3667A5E18BCC2A966F68318 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A4F4C0BCDE1E7222A9C16BB552976D5 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F611A459B23C2FBCA166A2F8DEB34A5 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 738B85F81340FD1619ABC152FCE14868 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04C7B72F0EFA54E3180F59C8D42AFBF8 /* RNCSafeAreaViewManager.m */; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 586FFADA846B4528EB8C44A427BFFDE4 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F792B40741251C6B961A49C5E56AC7EB /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 229FC863351FC15A1ADA9A4F9477F91F /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2B15DCA37B24A9EACE06E1CC495BFAA /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */; }; F7A64B1A662F62B2B52185C92B653CC9 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EABEB5B0ED4B2FF486465703D6185F2 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E9EE8F4CEFDDE7CDA6FF80FA8BCEC846 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A086D7B4B5A4FE6CDB6218F2B406B9C9 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = B16DEDB2E78FCF1F8F83AB4CB88BDAB0 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7DB28588EC66275F9EF5B5DCA2330A8 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EE4CD9DB36CBD104B31440FD4D2C255B /* GULAppEnvironmentUtil.m */; }; - F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3A70D5004E3BFA10EE25FCADBA809C /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 973074E2F7F2D7250F1497BBE021F076 /* RCTBaseTextInputShadowView.m */; }; + F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FA5857F1B0D25AFEEE689587A6A350 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CB40206B43B5992748747DC69CEF0B41 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F85DFEC9533FEB34EB9F11A895890A80 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FF134B307E96301A57005807D2726E /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F85DFEC9533FEB34EB9F11A895890A80 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DB80E5B203ED5541F1AE27D3A1D23A2 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F86BDEE0D96DC60283796B6F863E564A /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA48097A60E3C79497DF00BF16B6F8B /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A019E28A9E6E9CEEEC24F9DD589D9797 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F89E3730A9F2FFE81F7F870BBA9EB924 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E6288D790089E7241E112CDD898675 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B861A2A0BFBEFE7356A8262D7952623 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A3789C40165148A9DFAEE2A958441C /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8DB5DE2E38CD1A3156CE3DE8EDB3FB5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D4B57FFBBEA9176B766C2461071C934B /* pt-BR.lproj */; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E376827002A3EFDF2F7F169CA20C0AF /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E09AEB3FAC9D47ECBE2D91BA4E05E5F /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3337,90 +3340,90 @@ F942FD556E631FA6501AE10641961074 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5A1D5A4E1EF92B70E662A22B8801D7 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; F978ED42F40D061340DAF5CD22373734 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3BAF3EA12400C8FB7278F1F215FDFE /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = D62D9D438AA2A488B83ECB8FEC332DEF /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B98CBE90DD9C76C2BD86B8882A6AC3 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9825A64AE0EA188A375ACC599B19B8F /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = E26B13FE8996444B3DCDD20D59675527 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E86A43107B6C90CDFCB4201487DE0D8 /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C58E09797BE08EE799C7076EE6C01B0 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F9D66462790E3ECCB90C80157BFEE731 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = EF239415A954509CD83CCCBD7D6BAEEE /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9F5491A40F3CD7B492D73AFDCD9B8CA /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2312870F8AA8F7E32810D2C3A482E216 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8ACADC22ADA1A0B588A0E77C0F87D7 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9ACDD1DA4A9D536AC0542C4DF7A4D413 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B01388C67167AE4A22B47907EF5797B8 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 766144D14F2C16186FD40B07A9EC70F4 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8660B900062D96AEB1FEACE642F61C /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 02F6E3B8432991B587BE178EB2A2934B /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F68D916F77D550FA740E5871A2C700 /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4506792DF6D13BEBCD48163466D7CBF9 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */; }; FA93C80941FFA425F6A8217DC86AF716 /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 79053C64F1C59AFD89510405CF94C623 /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCD0EC7976784F931C9D1C8687A977C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = FED23D7AABCC17C58109B6E47211A366 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAD325C61C1C6B01789917FAD2FA0541 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BA42568CD090374443F4F1F27941531 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; FAE0FE7AD22D774BD0A3DF4A75DB5761 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 242A428FC17181DE990E8D5A2153E786 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = F7BF8F2CDC46F4D4D6CABE542F655172 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AACC56222D3F5D2DF4F8E5B065E15BC /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 707A486419CB0C06F413C938309E1ACD /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FB0FC8AE6675285761278B79CA6D28FA /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 957C501B84FB837BF8EECF92583374B2 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB11A9AB3FB910CA62559D1E7D872869 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = C4EC78950AF5C05FE297047021A519B3 /* FIRCLSAllocate.c */; }; FB363DD0DCCE96B7BA6C098C27EE5B4F /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = A9FBDD16D8524D04F2E9A34E9A7A877C /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB530F1A567791D6927710373B7B9DE6 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6ACA9BC0EC68183524CFAF50825AA1 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 989083A91BA8AEA471DC3DC8E4646D57 /* 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"; }; }; + FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EE0824B08F01894BCE4A04CBCCE009 /* 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"; }; }; FB623A4CA5268F0DB215580161FD6A2E /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = CF01E9EEBAC70776C6CA2B3B5A114740 /* FIRCLSURLSessionUploadTask.m */; }; - FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 68ED9870EF85FA63A104408FEDAB3A70 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 443B073FAA95C1077E31868F46A6B736 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F1427BAE4902839B19780BC178D4AFBE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8D27E9459831E52B2A77FFE785BDDE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFD1D03F0F485F3443D4B980F19DCF5 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB90E24396C26ED6126824A52A788876 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8C278630EACD4C65DF9089CB815DE8 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 93576F5BC3193AD26A3965D35761AA9F /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBB80ADC1665D487FDD0E9CAF78FECF9 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BC2718366E7D446A460E9A3C051889 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 317A012E4BFFD64E97515D365236FDAD /* BugsnagNotifier.m */; }; + FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 049042B3DF2FDABEB9BBE38636CFBE88 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84BEB0EBE212A77C545C1D889DEE8C90 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5E3F026260CDA3D759A383C35E6534E /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF3EB6CF65A10370AFADD62954AE881 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D9667B3D1005C483DFE4C9B9B9D8DA62 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = A307C23F73060CC6EBC22ED024F3512F /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8976EDD7CD940020697DD076A18E5CF6 /* 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"; }; }; - FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A13AAB934CED7A43063C6412DB5837 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 751B2E0E7907B4AB7DCC2F12B3E88B52 /* RNFBRCTEventEmitter.m */; }; + FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83BB5276CCBAD0A5948874E042BED951 /* 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"; }; }; + FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD7BE93FBD27AE0A01D306CED6B70D6 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 460A56D8ECBF18816FA81ED31CF827B0 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F7F52179F9BCD935CAE0CB408752F6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEADAE395EFAD95880D4ADFC657B6A4 /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D6B5697FEC6EA4DE7B3E76D5D38F147 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = AA362D9DD0F4ECCAB45FC5EC88ED3692 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FC9DD498F5C8931F8D854BCBE5027F26 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BA46164F7B6B7BF35D6C75120060FB /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA49F138F43529241E7715ED61E9CB03 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6974B2DFE54AE54F6291176E818650FA /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 429CF81F3064960AD6BC66B20969F187 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCE7CEB488C7CDAA0D5B1F278245D27C /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA47EF8355AC85F812DDC3DDC0F6B2F6 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F15F3192A3AAE4656CAE842E589BF2 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C9F86FF97D42BB26DEA30C6A1B46BD /* REANode.m */; }; + FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */; }; FD70F4A9596E68CFB8B1CE1F177A85DB /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D02B362DE7861F6C9B7347A03D2D01A /* GULNetwork.m */; }; FD89528F6BA64ACD4765E0B56ED98D81 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F486B66D01BBEC7C8F93CF3AB4032B /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A9F6A0C599D88CCE1E7E2D2C89F9104 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D52261B21B4B2B17750F2AA5645AEA7 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6368CF85B3E4010BE953086B81C23FC6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FDE050EAD80EBE0E02D981562F432050 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7AE28A75D2D7B71B61DA10E63B35FDC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F41013165CF5BAFFE81234B51A9D77AA /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE165B226B01BF0E5282096678842384 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = ECFE26448E3C1C7112FACD71232CF62D /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FE66489133152A3CAA539993880A3833 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1470D09E1D46A280291B16028B7C2F /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA872FA3C28D2567D18F599B2E803C4 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E3C648D81314F24EA3DC0F1A9544B718 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEA267B227B0E81D22A07384FA7CD1BB /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F86ABAB87C308982C8C8ECB369E1E3 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEBADA0CFA3CA34FC5F4D96D5B93A299 /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A7680062F22F4745F5BE8D384CD6260 /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; FEC142C629BFD9083352310B4B259F98 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE9AA9F55B3C2237B0A1C5B7BB72374 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEC2AAA000CDAF71ECCE958D866EBC30 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = E34ED41386B129A0DE2B4C49679D6F57 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C36C360D7B06EB40BDB91ADA24B89EA /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; FF081E923FA97838EF4E4001A676D9FE /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 209D16DF7BE26200292E3AF53D619384 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B9FD8B9EFE1CC37430E650C6D194813 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 229795A32AA2151A170DE8C6F5E910E7 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 823198FFD540E2221CB3DDE2502289AE /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 36451A4CE71787034E42E9E117ECC49A /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF35D631BBD7CE3793F2585E076ABE37 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0DAE1D2DAEBD977A1EB235FA09069F /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF4F3D0AA50BA3ECBBA1A905D7F84797 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F7CF035EED2DD93173B8F2549A3E92 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 53802D932EE90CEEEEC3100997F04314 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11688C8490BBB8CB6B261E2A7625C9E3 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B09F08E99E15DF1FE879D2AC71A89178 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFB9245D233A3C0CCA0F2A43466826E2 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA80C524A1A4B7C125DC537833790CB /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C652BF06E9356BE321D1E2FFE10499 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC5A9F8C44A1A39274334B81662239D /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 73D9980559B77CA957A03153403CA841 /* FIRCLSUnwind_x86.c */; }; @@ -3428,13 +3431,6 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00405F449BBC8C48FE8EE7C24993A0BA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; 004E28481B999EBB8713F583C49F4661 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3442,6 +3438,13 @@ remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; }; + 004FA2E654FEBF63CCD05540DA336B45 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; 0053ED9B78FA78A3C6C3F5BE362C5CF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3456,6 +3459,20 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 014631622F227A6D87B0D598C9D2C7BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 01F5F7C6F02F04A143C849817B1EAEC0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3470,13 +3487,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 0356CD11D1FBA062592666031E95413B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; 036314721AE80A783233849B6130E1DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3491,33 +3501,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 05E0827F186C5BD158911C697C679D34 /* PBXContainerItemProxy */ = { + 053CBA4A033207F937660B9FAA1F787B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - 069958B8A07AB02475B98FC651E3DE3E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 06C09B543E0F1815CDCABB3D3454C887 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 07071E8D96A37112E412B707D75D65EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3533,40 +3522,26 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 0790C0032552380DA563AB255F710E8C /* PBXContainerItemProxy */ = { + 08A82DD4762F44182AF578189EB14138 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 0850B22DAB2A7F19A652A1DA99CF03A3 /* PBXContainerItemProxy */ = { + 08F25805D8C5B150DD4A0C68F961AA89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 08D7FF5643463BA67762CF3A3067AF84 /* PBXContainerItemProxy */ = { + 0952F224D73C10AD091CCE30556CB93B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 090BED27009382176FE64280460AA1B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 098840C98BD548B9314F9A0F086D6F42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3575,6 +3550,13 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + 099969C9E93FA925F2EEA8736E1F28C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3582,6 +3564,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 0AE44B11678348277B6D82B5666F431B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 0B64855C0AEA66A554B7ACEAB1DA5C73 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3589,47 +3585,47 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 0D461CB135543E823EC956D8C17470EE /* PBXContainerItemProxy */ = { + 0C0E5D11EF771190FDC74DC37EE99089 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - 0DC3B6321D11F1F09D86D4AC1718F408 /* PBXContainerItemProxy */ = { + 0D4D30F628010BCD0383210B1E0DC928 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 0DC6FE7823BC65AAAE5B92BBDE732F78 /* PBXContainerItemProxy */ = { + 0D8E6B479003FA5233845F90101E52CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 0DF457FDE45100134B3DDC84C47E5296 /* PBXContainerItemProxy */ = { + 0ED929DBE6F405943A8D2040EC34600C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 0F0B84B50F04B5D01BA2429CD32EDC64 /* PBXContainerItemProxy */ = { + 0F0A09BA8B6C05637754A9E77DD061A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - 0F25FE8DA2E19C90D6705512113A5A34 /* PBXContainerItemProxy */ = { + 0F287469A23991276050BA94E399AE38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3645,12 +3641,19 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 1198D25762D5B4C0588FE991C1809018 /* PBXContainerItemProxy */ = { + 108DC8621AD9F628AAD847B4A59603BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; + 10B79FB38CF1670237CDF99655006C94 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; 11B05BDD0953E25B9974D84FC93A4F79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3659,12 +3662,12 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 1277418D299BB3A482A5B64665F1191E /* PBXContainerItemProxy */ = { + 128EEB4453BAEC2733570788B4AF21C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; 12BB121C6C62E9D130D1F1C4061597FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3673,13 +3676,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 1320639FE6442E55C8119DF0278C05CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3701,19 +3697,12 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 13B6B87DD4E28148F03BEC5EF7342F84 /* PBXContainerItemProxy */ = { + 13E95A94E455EFCC0490394B4FD99849 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 142BDC3F5CCB85399094BA956366CA9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3722,6 +3711,48 @@ remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; remoteInfo = YogaKit; }; + 15120471ADC187E59B8EA4D14A82D2D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; + }; + 15123C46531DEBAFECCCD37A68518535 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; + }; + 15260BC1B6E26DA77110C9DF4777C21A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 16A88BF0190C20E14C0C438C39B8C40F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 1750AB13A34CA42DC71D1092115E57AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 1780DC19A6FDAECCB7C4F3E5B8C8A9AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; 18124B833F1C5B50A22FEF874AA062F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3736,40 +3767,12 @@ remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; remoteInfo = MMKVCore; }; - 18411CAB258C5FA1EE54867B9424FF5C /* PBXContainerItemProxy */ = { + 1876CF7039FCB2B7162F5AB5EF5FF651 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; - }; - 18B2A765FD35151852AAA30D15C02C8A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 18B6F265FECC8BAC86ED364C18704BCE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 194CED2F19EF31862D8E377040084F71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; - 1A17D29CB990271AE1E0C74A55C66806 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3778,13 +3781,6 @@ remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; remoteInfo = FirebaseCrashlytics; }; - 1AB3A4D499B1DC7CFB66431A3F0F44D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3792,6 +3788,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 1B388C4137AB2141375A8FD417E09E5C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; 1B427832E8B2D091A989E92604487DCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3799,6 +3802,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 1B7966D0BE90311D585C88DBD10AC968 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; 1BAE415AD39A73F89D396EA40AB1B0C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3806,12 +3816,19 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 1C3CC280A6FE8DDD35A1D0292F880BBA /* PBXContainerItemProxy */ = { + 1C978A3749CB2A3C50A7FC845800FE06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 1DAAA56D32867009B163D8F4D90B9AF4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3820,13 +3837,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 1E8BE5C0EE13343E554C98A9DE2B77BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3834,19 +3844,26 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 1EFEABC351FB8129C000CE254A4AA4A9 /* PBXContainerItemProxy */ = { + 1F18FB0E0D0D91B591AD6CC00A9DA5C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 20891DFD058097B0328F07D78435B0AD /* PBXContainerItemProxy */ = { + 1F554564FFE8094747DBBD929F8168E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + 20A5E64EBB816538F63A6EF241E993FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3855,6 +3872,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 20DA3D40EBE3814E7F078F7986BBBC48 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; 218BD48A74E10DEDDDAF4D13C755DC86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3862,6 +3886,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 21A9A3D7E7AE8C468D07BCB1E7B24CC5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3869,12 +3900,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 22127EDE6C8FE04320A4469451FDED7E /* PBXContainerItemProxy */ = { + 21D092A006540CC828B9B4E97A92C229 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 22349DE3618B5AE204E71B8D0AC0DE1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3883,20 +3921,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 22AC4DCFBC7981389AF3E6CBC30F883A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - 22FECE33C67B90F072F0CAF239C0FE58 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3904,6 +3928,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 23FBC0E71514F0468E02B715CD71A813 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; 24974EF4CEED07AAC5B78292095CECB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3925,13 +3956,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 259B03D9C81832747D4DFE56CEE2B38D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; 25D53C490A206BE5B5E6B5EB62789294 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3939,19 +3963,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 275058C144F77802916E924E4F585121 /* PBXContainerItemProxy */ = { + 25E4DAD6C0D27028A06A4BE93C513BD2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 27B46F465CBBCF28D4B0C9AB187A66DD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3960,13 +3977,6 @@ remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; - 2886F46045045F4E6897AF88194CD86E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; 28AC9515063BFADC2266499CDC9BFFDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3974,19 +3984,19 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 29C53433D2D07C519D849A22EB0687E4 /* PBXContainerItemProxy */ = { + 2AA593C97AE98C33FF81D0F83CF47DFD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - 2AA71A546C6E7C804FE6C6CE61FDB354 /* PBXContainerItemProxy */ = { + 2AAEECB156AACBE3F463997666BCF578 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4002,12 +4012,19 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 2CA8B78B8453C676B0FE06EBB6D29825 /* PBXContainerItemProxy */ = { + 2B3176C374F5C2F9A1DA8C817FF32AF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 2C9BD51072B3256C7990CF6A8B8B9A07 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; 2D2C4648FB3AB375786117A39F3D1919 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4023,12 +4040,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 2E789B26A413C95D97C4FFC6A2818EE5 /* PBXContainerItemProxy */ = { + 2E4F96E81B0FC3D6A54B9B7EC388705E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4044,6 +4061,41 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; + 300ADC8C9753BFA8AE1F776005FC80FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + 3023F3DB7EB2EC0FB03E424D23834964 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 3065BB7EC5AA13F1901EE05531BCFA2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 30C067FEB06401C556BCDE677CB4D59A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 31488C1D3FD4169FDE8F28F03FA6818D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; 31D39D46BAFDD97C6BABCAAE6105564A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4051,20 +4103,6 @@ remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 33162C2F8BF9D39A9E7B09D8ABE1B32C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 331CE2755FC4288E213CD7D2D41F0169 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4079,12 +4117,19 @@ remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; remoteInfo = "React-Core-AccessibilityResources"; }; - 34839291A52DFD6AC17E742FDBF23C45 /* PBXContainerItemProxy */ = { + 34547D0A56C9383C89332A1674D38CEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + 34692FF1FA28E04DCB7AFD252F474664 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4100,12 +4145,12 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 36263AEE038C8737867D65E34899F852 /* PBXContainerItemProxy */ = { + 35CAD206EAF7D407F7096C027CFC8C19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; 36831ECA54BDE0210098C683E1128ADE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4135,12 +4180,33 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 379197C3A7AE8E8D3F2EE759541D38F4 /* PBXContainerItemProxy */ = { + 3740443C37EFA7763F991A0FA35AADC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 38D4B2857E04B56A8B7E45E22D2F7DFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + 399797907E32469038FB616E6C02FFE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + 3A56C2B666E4B90E21BCAC38C655944F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 3A7FA56DDB4EA79231EDF6205B7D02B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4156,6 +4222,13 @@ remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; + 3B50AC7C5DDC6E409BB383170BC07882 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; 3B55969C388D341FB93F6072DA04150C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4170,26 +4243,19 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 3B7B29906DCFD48D938138F7F73C6BF1 /* PBXContainerItemProxy */ = { + 3CDE6EBF741ECD6F8BD338F3D59C2860 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 3C8CD83DC70E83B0A80D388AEB0C2A5F /* PBXContainerItemProxy */ = { + 3D4B00CC40A207DFDC2ED957C782D927 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 3D36055502A5DFB1E2592126783C361C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4198,19 +4264,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 3E5A973537AA8BCE41B3503462670985 /* PBXContainerItemProxy */ = { + 403D87285AAE71BF635F9E1850AD7C4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 402C8FD154686E6908784A86B893D95B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; 407E86C85F781DAACF0C39B7C1F77209 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4219,20 +4278,6 @@ remoteGlobalIDString = FABFFA119E956A84968EE0F6E5D7EB10; remoteInfo = MMKVAppExtension; }; - 40B8389C781C1B2E78339B432C49936A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 40E6857BC24BDD6AF64A1771CAD31263 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; 4117C1D772FF72CEB7856965D78C23AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4240,13 +4285,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 41D2449E304AF55351192742BC230D73 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; 41F70F030F680D422207311AEFEABDC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4261,20 +4299,6 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 4350CA531EC9B9D5CA8C8CD1E900D676 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 43DA95945DCBFD46F6CDAD2F73D3441D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4289,54 +4313,47 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 44D6D6620D9C6C0CBD645A8165C389ED /* PBXContainerItemProxy */ = { + 450DA2BBB66038E196229F60D5B353B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - 4545B116C13F1156277EE2BCA2199900 /* PBXContainerItemProxy */ = { + 45F2D7DD647A233F76F6438AF8AF9EC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 456D53F1BE63C08BA38F417846A594AA /* PBXContainerItemProxy */ = { + 460BBB26393D24C1BE8194398CB97299 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - 46A3771A49949F2C7FE12FE4AB9A686F /* PBXContainerItemProxy */ = { + 470138E7CEAB20BAB087ACA9705EA57D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 4797E1E62C48C98CE3351E6A559D6D21 /* PBXContainerItemProxy */ = { + 47C54555D2F5B34078D26D3DF0107418 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 47ACD63019A2F8B48B2A34A3658F69DF /* PBXContainerItemProxy */ = { + 49287802C8948376837016255295EFEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - 480C3E2B8E325FB7CF38647B934ABCCA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4345,13 +4362,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 4982244A8C25CDA20FA8C231F99657E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; 4995181EAD88B0A6D8B25B4EBD7059C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4359,6 +4369,27 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 49A63A6EC45BD3F7683990F6BE9FD789 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + 49B7635A50C65BB18A0954221A1EF8EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 49CFEE179D55C7E33574ADF87BF5875B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; 49F50ECEA44D3E4F8BB4ABF723720AB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4366,26 +4397,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4A548C505130731FAA5C1059600E717A /* PBXContainerItemProxy */ = { + 4A4AEC90E6CDD106016CCBC957FBAD3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - 4A9356944146CE0ABC945CF168E183BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 4AD84E5A499AC0499FD561460F7D0001 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4401,12 +4418,12 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 4C423D9F1E89739071382BB85ECD11D0 /* PBXContainerItemProxy */ = { + 4C3C6FCDA2BC474E37DAF02BA320ECE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4415,13 +4432,6 @@ remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - 4CCC1E1418FED816CB8EBFF86D9E8080 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; 4CE3F4431AF21200231C83FD68EE5344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4436,34 +4446,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 4D749F6FB5ACE4712B3051C3229318CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - 4DEC9D7FE13B483195FCF62546B4532F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; - }; - 4FCFE9411C7C6C4BF5E78143F364F74A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 50C38D85648D05CE6A15E38C2D4C91EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4478,12 +4460,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 51FBABBEB4DB9414DC04B2EF694E5D5F /* PBXContainerItemProxy */ = { + 526B41979D8AB3CC9D844673F11FBF33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4499,20 +4481,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 53E0080002307CD8FE79C05C09F25387 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 5463106705B871B438CC09F89259A0E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; 5475A7D10F548823793DA8859F6773CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4520,6 +4488,20 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; + 54A2E4D4849D25BB6D0130EE0BE4871C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 54C7A68A1655F93CF300983E589D38D0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4527,19 +4509,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 554D6BAD7C187C87F244E06A99E375FF /* PBXContainerItemProxy */ = { + 564F51F1E802FEA11B38D12A8A2B1FE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 56AFCE1A95F2F677A2F5CBFECDFB27DC /* PBXContainerItemProxy */ = { + 56C68608CA588E8B57869127EAEAD446 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + 57DEEBFBCD0C5C94A7F17AD8BDA303E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; 58945C0A8D3B5F0C45E87A28652D0430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4555,12 +4544,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 598CAB8D9889D90E9999732B0759635E /* PBXContainerItemProxy */ = { + 59765C4E326AB45E49AD9EE9A3AAFF9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; 599D1944ADF3E4137B0FD9AF2380696C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4576,6 +4565,20 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; + 5A2CFA42B4693CF6FE9200F6951B50BB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + 5A6BA097196337DBD7E5078F01804D6E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4583,12 +4586,19 @@ remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 5AC1ECB3F280E54BD46CADE3D59B28A6 /* PBXContainerItemProxy */ = { + 5AA10308010480DDC169D81C3F01B9BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + 5B37EA4226FE52627F04050F38E6A0EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4597,6 +4607,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 5BE9BC41E57D92505C2594E1632E9A33 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; 5C468A63879B83D44F982682FB98470B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4618,19 +4635,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5D8F8111DCFB09136329B6DED79420CD /* PBXContainerItemProxy */ = { + 5D759D2F645416D7485E00355A920316 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 5DC91205E8DEC3C573AC5E060AC9C927 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4639,20 +4649,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5E104501585BB6CAABD9C8CD71D42665 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 5E96EEEF0BF6ADF601DC084D0F863719 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4660,40 +4656,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 608548EC2DD04980CCFEFCE64C0B165F /* PBXContainerItemProxy */ = { + 5F937F4A75E914913CC5896822B01E28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 60E421BBB8965133FDA4EAF8F299C7BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - 61609FBA118DA2A5C05872AF4630A30F /* PBXContainerItemProxy */ = { + 60B30FD9301A97122C6B9F9F1AF2DC4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; remoteInfo = UMSensorsInterface; }; - 61F67A74DBC97C37575E0629E83EB0AF /* PBXContainerItemProxy */ = { + 60D2FB323C69C021CEDC07C8AB73C97A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 6215835BFF978FA75F6804D7F7397E94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4702,6 +4684,27 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; + 62639906936EF38BCDC9EF967235DFE0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 6291088887E5F4CBCBF87414DB0B736D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + 62937B4F48D1B3DF569AF42C5F9088D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4709,20 +4712,6 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 63DD4364D821D305C0A82B1738A1A7AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - 6415BA1DD0A15745206AA97E2001FD0A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4730,12 +4719,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 64BA655A78074818D28DF621C5E394D0 /* PBXContainerItemProxy */ = { + 6470C478622A642820D917DE237D13E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 64CCC0537E5A09CF5ACD9529A77E40A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4744,7 +4740,42 @@ remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; - 6613481526702C01F9AB80307D18C84F /* PBXContainerItemProxy */ = { + 65ED8DA6C4DDA777F5189F5214DB08C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + 65FE65EBD75575AB45FFFD5E444F15E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + 665EBDBCB745605BA5D2BFA2B5DCA5C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 66BC8BDD65D904B0C8F402B91E10D846 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 67B89DFA59221A394F419AADE64895BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 6864D85F409B8AF9B3CC17A57AAE3E27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -4758,13 +4789,6 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 687706402DC56CA0EB5AC1BFB9601DA8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; 687A049B2D3DF03B5F595D44592357B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4772,6 +4796,13 @@ remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; remoteInfo = TOCropViewController; }; + 689A10223BAA9BD30C6CE5AE9E05F406 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4779,13 +4810,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 6990158C97AC35908DE8A80094268838 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; 6AE2918D3E48649BDFDD0650FD43651D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4800,19 +4824,26 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 6B3CF0604B44A216AA4A6C4342DB4C58 /* PBXContainerItemProxy */ = { + 6BCE5AF2977E77BA7F45F1518615194F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 6C4F6ECBAC62B98F8CC7335528485D49 /* PBXContainerItemProxy */ = { + 6BD86AA5AB57BF84E754C50CE5E8964C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 6C1B51F74344439554EE8AA63BD0ACA0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; 6D74EB11AB3E0B0AB860EC4C23ACB427 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4821,33 +4852,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 6DC776D059E274C8559F16C018CD34AF /* PBXContainerItemProxy */ = { + 6F6B2F1207D9806CAF405EA0BBFF4FAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - 6E12F19075ACF8A11F64C763B19F918C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; - 6EF8DDABE1E1043543CFE32ED9605D0D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 6F90FB38A5A57CD40FE6998783BE01DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4863,27 +4873,6 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - 72EA4756F14D86C830158197A12685A1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 73318908490A2FA3B4610FD2AE23E6E1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 734DB1EBFAFE82B1FCAD8EE93C98879F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4898,6 +4887,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 74A4C7B9761C9EA22AFA61504187AE88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 74F5410359CE4416E203EB2B23BE5E4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; 74F8831E48B81E5BF2E301334BA3ED41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4912,26 +4915,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 75CC04B009622B0D3D3D1E0953FF3404 /* PBXContainerItemProxy */ = { + 7556712C98F7DD098FFF0427831DB435 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 76FC5C565E9111B36897198EF3886C95 /* PBXContainerItemProxy */ = { + 765D3CD938C8DB04A622CDBE3D3088EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 773AD3CF3C0FCAA73BFF93A3C878AA72 /* PBXContainerItemProxy */ = { + 7723DD25534A61313C280084D2519194 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4940,47 +4943,68 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 781687AFD5A98186D838319D36B44ADF /* PBXContainerItemProxy */ = { + 779020CAA93B9C0531EB528333D7FFA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 7974D6EA19AA92AB8C1C17375629D3B7 /* PBXContainerItemProxy */ = { + 7800F09BF976D735911B0AB40947A5B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 7A046525617C6F1B3055DE9860A8E565 /* PBXContainerItemProxy */ = { + 78EF6A877B32D8DD5EFF9DD471F68F77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 7A4FC7B84ACC2EA5C4F74A83F887FD9E /* PBXContainerItemProxy */ = { + 790B29BB6CAA36C2A22440FA382F7267 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 7B7096611D237F01BAFA8696E73B04C8 /* PBXContainerItemProxy */ = { + 79F05FADCEAB382BCD7E3897BFEE8654 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 7BADA42FBF999C861B06C1D310658CC6 /* PBXContainerItemProxy */ = { + 7A7C3CCADB41B0B5AE44B4BD0662A2B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + 7A9FE54492E830C23AC41F90A8890A98 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 7BEE664881F985CDE0CA3CEDC0D9C96D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; + 7C075DE06CAF5414973463DCBA08A9F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4996,40 +5020,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7CC3ED5ED6AD4D27C901B56FD133FE4D /* PBXContainerItemProxy */ = { + 7F7C9A1EB46E2E592A9098108DF7B5F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 7DFABC879B2A1E5ACD5DDE2B3FC69AEE /* PBXContainerItemProxy */ = { + 7FAEC34078D0014FFAB5CFBAFC5DC47C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 7F00A7328CDFB22C8A1C1357DD5AA3BA /* PBXContainerItemProxy */ = { + 800932E87B7C36881C3AD4B4D212639E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - 7F4B0F56D3B5277E8F7C4CB1C0DB7F85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 7F7C0EA8206F183CEB02756312052C84 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5038,12 +5048,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 80D4B878FFB6F6899E554DFFCD720B08 /* PBXContainerItemProxy */ = { + 8077927E31C01EF89F7ABB62547873FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + 808FC4055BB5086D79DD31542375C1BF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5066,6 +5083,13 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + 8197E0D8D5DD8D284DA5E9647EBA2389 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5073,6 +5097,13 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; + 81C79203E7941C605365961EA5D2CE71 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; 81F66A0718CC2ED8851B3DF46E7A1E2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5080,40 +5111,33 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 824F632FFFB3682E348BE079E56AD070 /* PBXContainerItemProxy */ = { + 82D6B1F06E05F5B9A8EAE729D1D5F1DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 8296F6330DE7124ECBEB191C5C1FCC01 /* PBXContainerItemProxy */ = { + 864244C5E2B6B5B570A8C84066F8BC14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 850B063960407310B0E53DECA0660BF7 /* PBXContainerItemProxy */ = { + 86B7120016BA7DCE1A0D63EEF7F3F26C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 85EFEA6BDBE9E5DC46B9F93D7F252893 /* PBXContainerItemProxy */ = { + 870DD11CB797048CDE4F277C95873C94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - 8638D7153ED7221665993BCC8F0BA01E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5129,6 +5153,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 88605ED7CD4DD4F4F3FA159EDD76A738 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; 88D72330C8DCE3BF856F9C1ED31ACD43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5143,13 +5174,6 @@ remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; remoteInfo = MMKVCore; }; - 896695D2CE40D31C0523BE77CAB2CC6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; 89EB9AE9BC2B35DEF18D56F66D4482BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5164,6 +5188,20 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; + 8A95A9BC4AF69857178041F5461671D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + 8AD8A612931AB5375BCA927B1355BAE6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5171,12 +5209,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8D1EEEAC3A68945E700DE0CDA80DAD97 /* PBXContainerItemProxy */ = { + 8B636AF29046A1F2D78E4D3EE7989511 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 8C595B2D95DDAAF440F896B3A0D33727 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 8D4B6BB47D5DD009C0A3260967DB4EDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5185,20 +5237,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 8DF1EB5250BEA98BF6723B09A1F6FCA5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - 8E98CDBAAE1FEF39A7E9904734CDA82E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5206,33 +5244,33 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 8F6A54ED607977229559BA0D826E4545 /* PBXContainerItemProxy */ = { + 8FC5FD35FB57F455A4EDB1E39A19295C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - 90256776C5C5815D6E612BBBCCE3DF8D /* PBXContainerItemProxy */ = { + 9034F508583D9F6FF9B2A7D5E2F4DF27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 9112E2930387E0051356AAF64C7FE2C0 /* PBXContainerItemProxy */ = { + 9076C72B616E94B208DDB891D8268FD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 9124EE22E27E20C71BB9F3893A70680C /* PBXContainerItemProxy */ = { + 910EA2213B18CCB6F2700A1F9FFA83B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5248,12 +5286,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 91516BC6A5D693578AED6B9A584767F7 /* PBXContainerItemProxy */ = { + 9194AF57E6537EB866800A58DC2D1CC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + 91E18086BF5B384550F843BD29FC2DF8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5262,6 +5307,20 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; + 9315906521BCE1C6FECB50C7B64C8F5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 9319D41494CA189C63F106011C84CF6C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5269,47 +5328,47 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 93A70C58E3DA9E185EEB01D58DA7DCA6 /* PBXContainerItemProxy */ = { + 9373EF73D46B96FF24F7CD66AA175577 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 93CCF664D378373C70A6C516391327C1 /* PBXContainerItemProxy */ = { + 93BB0CA2AF6AEC194DFF674DAF5CA31D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 94E19DDA2E997B7F31609C1F4018369E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; remoteInfo = FirebaseCrashlytics; }; - 9506FD3CFB076115B3FAC9051C98B5A0 /* PBXContainerItemProxy */ = { + 950F5960DF8B777DB1E2ADDF1B28C197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 9529497E5982C436E2477E49D34A4627 /* PBXContainerItemProxy */ = { + 9568D82C9A65E0A7EB4E486EB9A61359 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 95C35D62D177F9F35FF9EE4C6365A9C8 /* PBXContainerItemProxy */ = { + 96C40D085BFA33F463C7F1D894077319 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 96043977BD04CF085988E465527D8425 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; 97B2B0B02B655684D330E426FC91572F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5318,20 +5377,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 989D4F212658F247768496A466092FB9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 98F30AF890B9AF28BEA44F60CEB8860F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5346,6 +5391,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 9AEC03F5DF4B88581F22BC49DE03F7B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5360,19 +5412,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 9CDC12AF06FB74EC90FD1276F0766688 /* PBXContainerItemProxy */ = { + 9CB3D12FFDA9B263E917D55AC11473AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 9E365BDCE4EEAE83B64DE57F1B6C60A5 /* PBXContainerItemProxy */ = { + 9D62B5E989A1ED0CB0D8B6148516A694 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5381,19 +5433,26 @@ remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 9E675CD17829628723F03F9B1112C06C /* PBXContainerItemProxy */ = { + 9E696E0618AA76B6D6AE836E8D3EED0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 9EB4AACA45ECF10B6356D9081A6EF65A /* PBXContainerItemProxy */ = { + 9E9419B4B356101BC66673255E89AAEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 9EDF538C1A2C0382470B3FA10D982282 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; }; 9F22B1056BC978E122F2EAE6CD9D7ED1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5416,40 +5475,75 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - A14388E1E92502B798D3CEB8E9A3D48E /* PBXContainerItemProxy */ = { + A0E5C722A4A4DA8D4C98FEA0F8BEBD38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - A230EA90EF5C843FC476CE57D03AA7CC /* PBXContainerItemProxy */ = { + A1C06E7FD761C9EDB256A1E38B6A13C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - A4CBE11F8AAD0397D776042E150DDADE /* PBXContainerItemProxy */ = { + A2E2629CBCFEC2C2C29C237120574870 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - A4FCB3D24BB2DF2D352EBE3103D5ABA5 /* PBXContainerItemProxy */ = { + A2F373E9BE916CCDC4F81B2A701B7DA0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - A50D120154F195E74BD0909540B06599 /* PBXContainerItemProxy */ = { + A3DD6C33315A46471FBE713775EC18E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + A40B48DCA7DDBD4BF84F5AA14043F823 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + A43995CBC5D30B8CB870E8210E2E6015 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + A4E93EEF24D1C58BDB57A84D06EF6728 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + A5CCA68CC16FD07FA28BF00B5FE92E47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + A5EAB879BC1635C6D9A383131EC00A9B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; A71AF0599E370DE67697EB341A4717CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5458,13 +5552,6 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - A7C355209DFEA937BBF575E9FC1AAAD3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5479,20 +5566,6 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - A971E17B613450724628B874B9117ADA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; - A9DC79AF44769CCF9D06E292B1718580 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5500,13 +5573,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AABB6F302EBF3BD73C103E83AFC5F4CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5514,12 +5580,12 @@ remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - AC21A8DF510D464BD37F5969BD045F84 /* PBXContainerItemProxy */ = { + AB6DAB6359E4ACD364B27F682A933853 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5528,26 +5594,26 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - AD5A98970A7F6E1628D5BB73054181EE /* PBXContainerItemProxy */ = { + AD7529713B9FB7B24ABDD07CEAD1A00D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - AD6E96BC7DE04F17C49B414CE83CD755 /* PBXContainerItemProxy */ = { + AD9460844A2F1FC4E101FFEA9C9E574E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - AE5C76D59AFBE23571CFB6160950A829 /* PBXContainerItemProxy */ = { + AE56E6F6F9CA42BF6E509A6242477C0D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5556,33 +5622,26 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - B00645BE301347810E675D53164166C3 /* PBXContainerItemProxy */ = { + AF6F38B3643EAF8422CCA8952166A344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - B025A2287C2E67AE204896DE7513876C /* PBXContainerItemProxy */ = { + B047DC9DF8C887CE40051981E9BB0C73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - B20609EE12B17AD79039124D3CB72542 /* PBXContainerItemProxy */ = { + B2E9D38A62719B6E1DC2297923A2AE42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - B2D50A36DE2955D1A62F533C4CCF5511 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5612,20 +5671,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B3DCEA994FD6FFC3FA497180D56AFCF8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - B3F2551948AD75234FF43F2085DD8D2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5633,13 +5678,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B4534172E3C3C5775C439E10076C12C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5654,6 +5692,13 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; + B58A73DC85AD293D40714358511EE624 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5661,6 +5706,20 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + B61396F36AAADF0F250891B0A1EA083F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + B6639071EF86B47807EC3AF44867D4B8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5668,19 +5727,33 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B94FE5EFDC3030A8ABF430FB5C851045 /* PBXContainerItemProxy */ = { + B7F0780E57F9BDE184ECB53C994E0404 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - BA375CBD7D31D11819F48DE6FB05BFB1 /* PBXContainerItemProxy */ = { + B824D77829D3143A291C7A8B0FF4AD97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + B8972ADAF3FD274BD38594CD56DD4C2F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + B9AE5CF754F371EA8ED61D8E3A8DB330 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5689,12 +5762,26 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - BCD36193060B4C22CE07B27BEC94AB90 /* PBXContainerItemProxy */ = { + BB9BEAC6B1FA07781BAA7BEAA32322C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + BBD5B0330948F442A1998768A05CF21E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + BCD59447AA44DF60D40010358189EF8C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5724,48 +5811,34 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - C1022727791640377AC40CBC4D4971E8 /* PBXContainerItemProxy */ = { + BFA0BD96FBDA31D6B7CFCD20069D69D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - C14D0B4421FDB26BDC69CDF7BFF36136 /* PBXContainerItemProxy */ = { + C0F2926A4D41DFE23BBE2BEEB453D07A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - C1594AA4E2782BB7B1D2C7CEAFC35B35 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - C1A7E68B6BAAFD9EB272440C1283E7D7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; - C1F5BA747AFD2211F033D4F78B6586A5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - C33C30A58FEC53F2C9537F4E9051C133 /* PBXContainerItemProxy */ = { + C2E15D1D4A770A1600799D971A2F80B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; remoteInfo = RNRootView; }; + C32340CAC5F1C51EA0C1471082555F25 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; C33E9472C09D771A868C935EADD927BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5773,54 +5846,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - C3480390911A548D1FCC36C91F586D7D /* PBXContainerItemProxy */ = { + C3FA10AB18D8BAEC05212296139E968F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - C39204F4E2D128711B02F14987FE8FCD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - C3A8A8296B52B82692EA1AFD77DC3F40 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - C49903AD27E58127ABE637EA1788F737 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - C4B4B356D37ADE653DE1567F93FA5923 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; - C4FBB9343E558AE25FA66B29350C88E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - C510691B31D0518433B00C8987648EDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5843,6 +5874,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + C696719409EB5F8B1A80CA88B35DB432 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; C6B0262EE0DC1586E56807A2383ABFED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5864,13 +5902,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - C70B867899187FCDB6FEFD36CDB7D8D3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; C7133825A01B067CB62C0CCB3FB5E502 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5878,6 +5909,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + C7CB89C35D31A04737539DC2444F3BC8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; C7ED593E81C9992CB3136F8B3479E783 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5885,26 +5923,19 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C8CA66E2567F9C46F8EECD1D198CCD18 /* PBXContainerItemProxy */ = { + C895E3DD10CA4287995C612A7F015A4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - C8D1A4AD5BC0D1B6037AC3D9ACC6021D /* PBXContainerItemProxy */ = { + C8AE47212130A7DD948D9AF9BF9060A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - C8F863D2F7EEEA6FA7630E39DD06B336 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; C9548D5EC1772128ADFB40684079BE57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5913,6 +5944,13 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + C9D2FF05C5151639C62AD471334EF076 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5927,13 +5965,6 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - CAAB5EB076A114ED01994EE12AED27A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; CAC5E63A0DB508761FB7D52FA119FB6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5948,13 +5979,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CB4D6B1EA583F1636AE756E69EDB85A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; CB5D399FDD2E586B6867737F1A70E364 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5962,12 +5986,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - CC1AA9790DC453ADD003E2C37F4C7A27 /* PBXContainerItemProxy */ = { + CCBE0668DBBFB2AB470FA9F7ACD1B2EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5976,12 +6000,19 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - CD933C2141D8FA8EF07248ADAC512AE8 /* PBXContainerItemProxy */ = { + CDDDEA47CED9C55D5F7FBA3AC4F4D309 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + CEDABBEB37F44C5DA4A262C2AF98CB64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; D03C059055772F3A6BB4DDB9B59D9473 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5990,13 +6021,6 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - D06051A8308BE81DAC618E20E2ED9840 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6004,19 +6028,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D1EEAA956342C8A1DAA5CF0BC96545A0 /* PBXContainerItemProxy */ = { + D21329A3FB37B67FE4A6299B450E2730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - D21ABF6C896186FA6183844459B1C802 /* PBXContainerItemProxy */ = { + D2F805B8B051FE86210844FF0C2603C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; D30F9BCE2D5F265AFC3B77B3F8D0505D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6025,6 +6049,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + D327C0743CB82C753FCDBBE7A28DC40A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; D3A2BE59053796870DA91971C0D7C401 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6039,19 +6070,19 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - D4A3D14AA317BA4D8D8DAC57F9A23CCB /* PBXContainerItemProxy */ = { + D4DFDCBC1CF6917D194B9925D365B65E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - D5A22979E355C7BE6C5E156C19C4DBDB /* PBXContainerItemProxy */ = { + D539F68A72984D3A7D46CF619E7D2483 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; D5CA4506EB72978BF9DA2DDCDB29D54A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6067,12 +6098,40 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D8EF7F2BF975C7478336081390B65143 /* PBXContainerItemProxy */ = { + D72E79F61E7E9BDBBFAE7BC0BCAF0527 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + D7C7A7AC44FDBC34E0FB68067263CA53 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + D93524B4354C70E4EF0CE0427845AF95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + D997B5A0462BDB05FB628E0599477C72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + D9C9A931B83779CBA7DCF6838A60126D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; DA27884C3FBE229B7E04DBFA9F4A58F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6095,13 +6154,6 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - DAC05435D1CEF99056A02072AB801F60 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; DAC5FE4A6E4A3B1C724D63970BAC4338 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6116,26 +6168,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - DB67D09819FEB7EE489E9C5E1DC8617E /* PBXContainerItemProxy */ = { + DC2BBD8C4BC119437D8206F916B81D3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - DBD55CA88D8A73C52581B9D4CABFE7D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - DC01BE528A04242EADD5F962AE478F56 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; DC35D17457841C5E413EC553D87DADE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6144,26 +6182,19 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - DCCA9E8D3AC4244758148C6757ED052B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - DD612753FA58FADEA88039EF1648F1F0 /* PBXContainerItemProxy */ = { + DCAD8B7C1DB94EAD7456F090A0F1519C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; remoteInfo = RNGestureHandler; }; - DD6B8713B18BA9F2EBD8F79E6D30360E /* PBXContainerItemProxy */ = { + DD96CCC95C2B7340BD82E7ADFA0FC4F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6186,27 +6217,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - DE6B215D0C9EB7E866EA574EECF90FB4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - DEFEE79490319F05A991BADACBE2E153 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; - }; - DF3C5959B844422417F1F3A2786758B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6228,6 +6238,13 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + E0DF18865EE7C7CE2840B33D3039ADB9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; E1ABECEC3DA6B13E2002259B8170D9CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6235,26 +6252,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - E1C5B1EFCCCF6FE79D0B44548854AE23 /* PBXContainerItemProxy */ = { + E1C8F98CB2FD5EB8B53868CFD292CAAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - E23E8EB0E3B24CA91DED77D80A886DFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - E24198D30892A72062CA0C31AD440435 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6263,6 +6266,41 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + E2D829E31904FEAF8BA25D5A90BC2BDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + E3AB06117E18103D2672CC63EEA08C5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + E3BE5F2E3C5CBA4D36DC2AF9928A47FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + E43F8D6863C8E89DE96E163B8698D22B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + E48C9A9EEB0A0DEA62C0917C00C419E5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6277,13 +6315,6 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - E55E916302094801ED1A9577F4720708 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6291,6 +6322,13 @@ remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; remoteInfo = "Flipper-Glog"; }; + E69C296627F5F80625C985DD92E566FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6298,6 +6336,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + E6B36208046973F45B58DCACD4550C6D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; E78EB90AEEC70687EFA88E5AA41058AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6326,12 +6371,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - EA70E7E9BDC8FD944C6DA0AE7E1D5564 /* PBXContainerItemProxy */ = { + E9499D3C727B97B3F5A75BE0EBDB981A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + EA6BF5FDBD62B9C15B4BF979A1C85E05 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6340,6 +6392,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + EB59584C82AA84B7D794E2BE4D515203 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + EC0B7672EEE8620DF47F2E21D5EBE10F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6347,19 +6413,19 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - EC69DB45F398E0512EC6EF1AA4DA3AA6 /* PBXContainerItemProxy */ = { + EC9FE53500BCB1756D40269A0C34FF4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - ECA83EA75E0AEAD3AEA983F73B065326 /* PBXContainerItemProxy */ = { + ECA965FF42B4C8F6981E031A7A71A37A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6382,20 +6448,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - EDB05FB5B607C45DFC483C6A699D6E4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - EF58878C5F4C3DD97233056F9EFEF36F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6410,13 +6462,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F0BC8E3644AFAAC567919B7B4FC00514 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; F191A483929B03CE30B1D31702CAF54A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6431,19 +6476,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F28A4997BBD4EA437CFE0957EEF2E377 /* PBXContainerItemProxy */ = { + F2717BB7528C97650678B11CC251CD1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - F45096B8FD555A06EA1C07A1B9384315 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; F492237E8E3448E5615C106672F7C914 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6452,6 +6490,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + F4BF459131F18B2AC247C24158AE88A4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; F4D41B9BAEE1E0D644EE2DC36C19D572 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6466,13 +6511,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F57FE15999984F7A5EBB76513AF49D2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; F58E9777EB3ADF88D9527C53980828B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6480,12 +6518,19 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - F64B29AAECD252EEE1A70957C254F6D9 /* PBXContainerItemProxy */ = { + F6A5DB87AF0C01932A85897A5411EB7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + F6C2459C9B6C3F3D211CD139CFF446E1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6501,48 +6546,55 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - F85C1A37B9528F24FB79F8E95C3D8F1C /* PBXContainerItemProxy */ = { + F8154B0D0F0F17E1E3CFC639897DD146 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - F8A08762BB599C3B0CEE24E0C138DE07 /* PBXContainerItemProxy */ = { + F8A0D282E39D390F981958223346C018 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - F93EA75E586E7F5B41BA9DDF25E90F8D /* PBXContainerItemProxy */ = { + F8ACE3707A35ECE1DDDA6A49FFF5095F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - F94290AF1B89907E17CFA284BD59DC01 /* PBXContainerItemProxy */ = { + F8BCA8351356969B0EF95D36D2ABCBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - F9F2682DA460F86138702EC4E5A98058 /* PBXContainerItemProxy */ = { + F977DF79B6E5ECB23AEF8F7C9A1F0E74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - FAE682AD3F18BA5E2C2470F98FFA4C00 /* PBXContainerItemProxy */ = { + FA13AA3252B429D6363752C78343B710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; remoteInfo = "react-native-webview"; }; + FB266484A3ABACAE4B155B5AF66113FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6550,19 +6602,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - FCB876AC17459A868B7D3B19BF786B4A /* PBXContainerItemProxy */ = { + FC2E9CCCA8551E569F3C65F9D2845793 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - FCE1B5A90A8DCA89982035AC7F7A956D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6571,13 +6616,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - FE8D7F2067FEA7E30C4ADC16B7473C07 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; FF694E354EABEF39E4806B5AB437E5E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6585,666 +6623,634 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - FF9F0FD13378414B487F93C0AD0FA582 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - FFE99D84287ABA11C8B8654A114206F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 000CF15380CA63A5710AC6578740E307 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; + 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; + 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 001FAF61F03707AB27BAB14D7F043EAF /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 0020B7C7852D686E210F8660BAD74922 /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; - 002C57094DA700A2E880C9AFDF09F718 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 00394DC74E7E0D168314BDF7B23C819E /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = ""; }; 0043880CE50D21543C9A3B70EDA3D203 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; 004BD555B4C3AAC417004AFDB70857C0 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; - 0053B9DA4293895CFC35FD4CF93FB1C8 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; - 005CF06E44FB4AB2C00E5AE9548BB445 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; - 0073AE6B08ED13CE0E20EBD865669985 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 007A425D647F56FBFE1500110E23D2C8 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; - 008F846085D0B5FC40A5D0B60F86634F /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 00AA30777DD6CC881D652F611A1BBF07 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; - 00AEB8C2658F2328C9170C3D672E316C /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; 00C3061994058F4C72768B07FED2FE18 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; 00D61C2E3EB88ADFEA656CD45A144DB5 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; 00E89C7237B3349F0BC8441CEC8099B7 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; + 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; 010C2584F22DD9546DF20B9967FF8F3C /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 011001D7E4CD4B4C9ECDCBF6C0D5EBCE /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; - 01109537BB47B946A82DC3174B4ED636 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; 0113683947F2278F3838BAF591B83056 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; 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; }; 012B713C1CA9852F2D7F841FA563F477 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - 0133831D38C7E00969CC06938E12D48D /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; 01376D456DEA9117D59A2869FA227E66 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; + 0137B39BC50F3262C2E164A39B235DD4 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; 013B2032DCD7235581AEB305E07D9AB9 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 0175BBE807D7723BB3EEC10991D78E26 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 01765AA7BDD2F9D3DD1D02F5DDFA3B66 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 015A25D2F24C5E05205779B1A4BAC1D8 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 0179F72397C268C054558F5D8E4420DC /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; 0188C60B434E703DABBF44094087009B /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; - 019C9C9440A1FDE2E3F1482D54AE8B55 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 01C9650D93DFA6DEF30AE085C411E408 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 0198722D68E03C4B9B279C4D4CD8A0D6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0199983D50A443E1BE0A11F50D48F716 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; 01C9D446945ECE405FCF08C06E01CAC6 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; 01D2FE3E0A6EAEBBCC00B5722CD50421 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 01E24F29F457A307DFC2E955FD9BA582 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 01FD86F92514D9D7B6FAA092323D8480 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 01FEB054FF3DDD43EB20228C7DF1D813 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 01FF855A319CD8E49C32A606B00E197E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 0210E9FDE6D3CE223268425B5A0FCE26 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 0212AD1BA59EBDB927F3B3CE574A2FB0 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 02269C01E4D43187425A44BF35FC177F /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; + 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 02290B6692FB3DC0450A6BD5137AE1C9 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; 023639291EBD57E4AFDF09B7E1E95800 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - 023D12941892B8EB8BE0479C0F7BD3F7 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 023EA38835E76BD2F08BBF15724EDCF5 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - 026BFA0E4AF05C22DFD523B07111618B /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 02736950502345C1DFE6797B12EEBE67 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; + 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 028965E7D68DB3024840F17A1CF938E3 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 0295A5E503DED09676494EB116EE2304 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 029CD850ACBBD3E4731687B582DC3129 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; 02A52226F2EB3FCF1FF4CEDF15A00E9C /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 02D9EE2128D61E1A9365547872513A7B /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 02DDC82FED4407CCE78238F4C023A21D /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 02EB752EFDBE6B042C0FD87F8089A5DC /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 02F6E3B8432991B587BE178EB2A2934B /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; - 02F7D0EA4C2AC752FCDFD29B278E88E1 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 02F819B95D90B8BAE8669D6BFD153598 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; 03204A74A401AFC6F4F2E563632CDB53 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; + 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 0325CF8B511CC74E7EB485247DDA1080 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 035993335400665A624E09234BC6A986 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; 0360F96A7961E872BD9F22FD43F4BA38 /* openssl_arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_arm_arch.h; path = Core/aes/openssl/openssl_arm_arch.h; sourceTree = ""; }; 0366AE56DE9F436C200FBBE82DE0591C /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; - 037A12CB85187AD41F390286C17E2301 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 037CFAC9C81542A028851020ED965541 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; + 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 0388A04B410B44CB2356334BAE78D71D /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 03B447D3BD54E8181F21506C099D8894 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 03B41CA63595A4D875D08B1223752E36 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; 03E69871B5382F5B39FB85A896684FC1 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; - 03F18F840D2FFFA5B6E43B0BF4176ED6 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - 0403F0D39E04408F7284B2BC5D12BE2C /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 04087178A8AEEDAEB563FA17125B9FE9 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 0408C9918B98217CF3B01E4019257148 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 043DC73DBDFBE110753D52D68CE30660 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 03EC0553FD9D0ADAA93CA2C561E2762A /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; 044230C5304F3E6B8C7DB6B5FCDC17D2 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; - 044A2F2412154286EE12C1AC67F738B5 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; 044C372F86C8E48BC0C7C3E65F591321 /* MMKVCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.debug.xcconfig; sourceTree = ""; }; - 0472923F99A725E5E616978332FE5562 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 048017DCC836D969DCB47524086360F8 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; 048103DFC8DAADF4924EEF0E3ACB98B3 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 0489DC79CC733FABAC8371BD92144AEF /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; 048B99AAC8A1A2A86ABA6C8584D941F7 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; 049042B3DF2FDABEB9BBE38636CFBE88 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; 04B602E919331F6E10D07406173CBE47 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; 04BA0BD1CC68B0FFFDC1E257AC87BBDF /* ThreadLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLock_Win32.cpp; path = Core/ThreadLock_Win32.cpp; sourceTree = ""; }; 04BF9679CC9E22B954E0BCFF9DE3D48E /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 04C6EFDE83470C158A2170DECD738DEB /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 04C7B72F0EFA54E3180F59C8D42AFBF8 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; 04D54CD2B7E9D3D2968B6808528891D0 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; 04DAB6A2124050E4A50E687C0C6ADBA3 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 04E2D48433B61B581C56F302C506980F /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 04E7E2155201EF39EF2514273042232A /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - 04F585B85130C37C2B8F62893F947DDF /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 04F9B836809543672AFA1F7643E98628 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 0505B3F898B1BEA767F4FDE42E96EDF6 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; 0510874379DA08324AAC3DFC7D322508 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 05177C72A2585FC43F67B7538D200440 /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; - 051D7FEC280ED28F2257D656EC2CBDC8 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; 0532C0A55B5C10F896B040B55DBAEE2B /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = ""; }; - 0537BDAFF12C135EA21B6F94962A9994 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 0551CD0667E9000E0040D3202265E628 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 054C9445767DD83D0012B423A3B2BE4E /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; 05A7A7FF7CD4C4F405C3CFF889CBFF97 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; 05AFD5AC20FA42C696EE0AD06F4E7ED8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; 05C36B610E67067EB1DF01028DF5B045 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; 05C5CAF6C029051A210C459C610E623F /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 05CCA7157539C2698E76487D6D51154E /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 05DB85926F66B2A4873EFE09F0DECAF9 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; 062C82D54F9C09A401B970511851C116 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; + 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 065FCC25B084C2FE50C2AB02663D8DE7 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; 066B88BB8286C5B2C6FAC71D65B28F60 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; 06A0EA90E932E5FF5DA7235B3B28B11D /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 06B222188AA91F8F7EE6F66157299539 /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; - 06B6D697CBAC069824A8A004020D0CD0 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 06BC2718366E7D446A460E9A3C051889 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; 06BD537C2CCD93C2293EFEEC85836499 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; 06C6F2689B9C827B9FA44CF9C1F2FFC0 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; - 06D26C8EAE6D348021BA0B18A875B000 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - 06D7CB033475C5739CFDA803436174BC /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 07036B099634A61F7A486FD6AB6D9299 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 071B0B80450DA6871DD27CB84E0EB47F /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - 07450A0148C009C8EC2E208D4DB4AF5F /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 07529568832E5F59795ECB0DCC40DFDA /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; + 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; 075ECBF84686B11D2B7FB511729E0BA8 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; - 07746EB1C27E0A1CC7890FD9A143614B /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; 077BD30C8E48BD860BD0650D25B4E864 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; - 078E4301CF6762E329DB080995824CD3 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; 07928018B1902ED19163ED0D46E0B78B /* AESCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = Core/aes/AESCrypt.h; sourceTree = ""; }; 0797D4DAA2370A5E22527A6B4C533CFD /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 079B88B3010CAA3BDF66EDC5B51DA6CF /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 079CF9E09E497914994BBDAC32B6D206 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; 07D9CB90B75FF0BF6CB45B6CF79056D6 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 07DA72B0E907561B03C33D6C0A51114E /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 07F1A4C88CAF0692C27FC25A8AC02F68 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; 07F65FB03B85510F0B6531AF44EE9976 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; 08051D2A5089A408C5C8CD59BCA08707 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + 0810F33036DAB18C702F91D1600E5DB6 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; 0818D39E633BAA54EC2D71D8C25E6A8B /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - 082C1A363B728D6698E9B7CDF0C4C87B /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 082D79B728F74A2B01212186ED9B5B3A /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; - 084009312EA136C724E559CAE2842EC8 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 08410A292904F624C2DE426ADEAF70BB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 084CC30BDCC156941702CFF69B60F30E /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; 084E16E8ADA877574CEFCADB0A2E393C /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 0871E83AF52711F4AD1D7EC9A4AB3A4C /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 0876550D02B6C214CCCD1558AAB6CC4E /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - 089F571922CEAE86F606AE7E27556A13 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; - 08A2FE114E342FAC441F7A70E976DB1B /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 087C479264A1B317065A9E54BCCE3C08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 08B6390357AA95B7AF60B6F72F9FA914 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; - 08B72BC4114CE37722AE67B787967A06 /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; 08C8FBA463275A77C4AD39D317052A28 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; 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; }; - 08D2C7A96906240E752EFEE9AA160FF6 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 08EA9141A6D54736E7B379B028D0DE13 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + 08E9EA705803A7C8E505CFBA35398591 /* 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; }; 08EAD2C7144A6857141F7C8AD8FFA1A7 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; 08F44F326DC1E043211293A01EC3647C /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; 08F6A5E20FB2CE3EC0275DD8D1FFE7DF /* MMKV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKV-prefix.pch"; sourceTree = ""; }; 091722FF494A2188DDC63E7D19D48557 /* MMBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMBuffer.h; path = Core/MMBuffer.h; sourceTree = ""; }; 0920195F8B40BCD1B1C407316C045235 /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; - 0922084C1425E592CC1F9F1DC3764D7E /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; 092333F46742ECA6DCDDB1D667A1AB77 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; 093C8B36D29A816F408DCA55BC1D3870 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; 094B208492CF8A55850C1DF164B54F3D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; 0952FA79941FD9CF60D8FF8C44E18B65 /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; + 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 09553FDB3FD9974E7D3B99CB02D84EA2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 0956FB3C42355DF5911478E276BEC1D9 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; 096045BDD8D0A09996FCCE24B6A570E8 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; 096A0A2F847360CF1FCB976B8084BB4C /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; - 096AEDC4B5F11BBEA4D0BF93D2818C26 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; 09858444B14CB83AEA70BD5C14FDCB5C /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = ""; }; 09863058CABE4F4D75527B7D7AFFF3A9 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 09899EEE1275EB46A839E7472C1D1858 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 09939713E99149B2C9BB45CF51755507 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 098A8102A7A2650315A84E65070320DA /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; 09B5F3ED7A07A1DA4B7951D47BAC11EB /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; 09BE02A071B1A6C4088818D458AA09CF /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 09C9A4AB438A7D176F08CFFBD5383A8C /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; - 0A02D6EEBA4ADB85419B2C1B4B2C6C8F /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 09DB0608DD97244012DFDB6A79C8085F /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; 0A05AF9229BB81A6A96C343D99EFA66D /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; + 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; 0A30242BC57DFE4D332A7228C8E5EC28 /* MMKV.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV.cpp; path = Core/MMKV.cpp; sourceTree = ""; }; - 0A37801D5D5C10203C0A9A7C61F01BD0 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0A6004443115709FE18B9DDF74161C07 /* 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; }; 0AA27275AE70878ED9596408A6A4C83A /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; 0AD1AC690771CE2BB2E847CC45FBBDC4 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; 0AD84C00A9493DE4ACFC079372DDA730 /* openssl_aesv8-armx.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aesv8-armx.S"; path = "Core/aes/openssl/openssl_aesv8-armx.S"; sourceTree = ""; }; 0ADD6EEC74318B8FC73905C199941380 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; - 0AED725F071366514C48F4B5B7FE6F64 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; 0AFDB24D195B1C26075A0338826D2DAE /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 0B1D089D8185A19388DABECB50C95D0E /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; + 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; 0B2347BCCA21DAA5052BA753E0EFDF4E /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; 0B3C3D246460633B8E7681B3AE2B683D /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - 0B5750F33BD3DC48F03079BF1526E8B6 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + 0B54E26720C532089346FE86B3132868 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 0B7618A5EE564C44A089744E27664CE0 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - 0B7655338EC6F7B536BFBDBD6E8FE422 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 0B95211535CC9AFF6A4B2924A06C1192 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 0B975656D80BEDFC64E60787514B5059 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; 0B97A049CE2233B5E8631885350B11E1 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; 0BA876504656FABC90F13B3308000FC0 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; - 0BCBDD28E71C653FB4107BD73CA03D04 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; 0BE8B2C29B9ADCB7104634B4AA15013E /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; + 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 0BF0F4A8A615BF132A32374BA90CBF6C /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 0C36C360D7B06EB40BDB91ADA24B89EA /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 0C45139ECE89637DC802D68D4F19C389 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; - 0C6621D3DC2D30DBA209C248A40500E5 /* 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; }; + 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 0C742A20ADD9E0E46F4B632E3181BDCB /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; - 0C7CF0284EA6F1E785EAA502460E20D7 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 0C7FF184A0AF9CFE6F3436FBAD3EE7E0 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; - 0CA7E46911AE28BE36547F4BAAA49FF8 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 0CA915474D78F85DA6EDC4CB123DFBA4 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0CADD08B73E2965179229D42D64F18DB /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 0CB2B3CA01250FB7926FCCAE2B028D75 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; 0CC456DA880CCB4C69A228EC88B34D5E /* FIRCLSURLSessionAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionAvailability.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionAvailability.h; sourceTree = ""; }; - 0CCD0EC7976784F931C9D1C8687A977C /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 0CD2B8D9C671EA90A96FA71ABAB2DBB8 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; + 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 0CEDFF0CE53E9D577F3D7A453DD6D566 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; - 0CF5C295B5F0EF90ACD7DF13EAA6BE5E /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 0CF9C8130E99CB673275987865FAF118 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; - 0D0A447C357EEF348208F26A570F8EBE /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 0D0A502BFD1F54C2A6A382FDFE01C71A /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 0D212A38E6188F241EA5EFD43E4C8B77 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; 0D2E437AE12824A83B8C1A82F77A3FD2 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; - 0D5FF0E2960DD887E13264A53C9E651B /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; - 0D65AB64933E50ACA96FF591A0771394 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - 0D7CD98AEEA1187B50BDCB55AF5A1795 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; + 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 0D57A3B97BBF036A0F89F1C8EB0028D8 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; 0D7FC7F419E7B19628522F0ECA592B84 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; - 0D8422E787FE9A4E8B91AA77749C6C08 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 0D947731042008BDB40A8A6789835E72 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 0D981C6E4217C012425FD40A1504D965 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 0D9920C4B01C016DF03855BFAE1608FE /* 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; }; + 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; 0DBCD73AE6E477EC41137748E2B30461 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; 0DBE51BDF32CA10D7DC3BE81397606A3 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; 0DD0B61330B9878D2A0D152EF587ED4F /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 0DD536932BBA8A8E593665932ED32688 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 0DE59714CF7AB7A5F9F5C6DDA59A8F91 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 0DD269157CA10F350C3350C38D4D7F15 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; 0DEBB16BC868F03B976E11D9D1EBACDE /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; - 0DED45358B07E766205F3EFBB3053004 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 0DF0BF8FCE4EB3AA709D50E9D36F789B /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; - 0DF71B9C09ABC64B0D9A46BCE4FA0278 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; 0DFE79970AAB3A128637F0D90756AFD0 /* MMKVCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.release.xcconfig; sourceTree = ""; }; 0E11F253C1B79EACC5EEA0071F470DD8 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - 0E420CBAD1F0BC698213A3505A954389 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; - 0E4E36166F9116C65ABEE40E76DD6024 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; + 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 0E61516147E350A335181DADF7D69B54 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; 0E6957E1C7331CD490BD9C6BCF481CCF /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - 0E75942501EFB3C479CF2C4DF3AA6F84 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 0E97203928C2A804ACE5A5F8C95D0D4F /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; + 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; 0E9E95C01E1CBD9C23922DC994B492F3 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; - 0EBC30E0C0D2525DA018E015BBC326C7 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - 0EBF5527C184CE8B1D439B2077A4B6B9 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 0ED415A1D72AF8ED46007836A649B44C /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; 0EE831D13D49F2CD1A4D84E28E855FCA /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; 0EFCFB70036015BF9C9044D8BE5515A8 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 0EFE9E022D3C85C59A56ED2C97A7DEC8 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; + 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; 0F75699D4BC5083760831FCA919BD21C /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - 0F75F2CBDDA7DEF7DBD17CDB62414413 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 0F81143A1CBF0E5975925B934520B1C8 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; - 0F87400FE876A41F56C7ADD39BDB8D71 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; + 0F919D9C2C8ADB90E776350580593764 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 0F98970A670689B1A268B0D0469F00A3 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; - 0F9D6A740E135D30F84B1EB60183C1F3 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 0FA1A6B4E26C0F22B4D438DA1B41F034 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; + 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; 0FF1075E4207285244501E30AE60F2B6 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; 0FF3FC2FC411C033C8E598DF75DB8E69 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; 0FFF989E3CC045B3D32C4E5CEC8B9AB0 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 100767696652CE6868B74285BA9629E2 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - 1009EDEF9F071FEB6C7E8A0A44B0FA0E /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; - 10141445BE7F277BB6FD792DFFDD44D5 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 1016CCB8E58BD5D4E51E717699746205 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; - 101A72E6061B8CD4083858C19A009CA8 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; 1053EEB0FB1AB2AE94835CC5900BE7BE /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; 106165C45E0317EB7ABC82DD367CB99A /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; + 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 106A0E6452DBB4A050E3FCA45B2B8607 /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; 107158AEDA420D7D0BB0D17FA8A6EA0F /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; 108B8A013394A4B9DF6805473D14F6D6 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 10A1D0AA2EF687A78F997618008131B8 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; 10B27EDDF96A9EEEEF410A5D770206A5 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; - 10B2DD27811F19B615CB8438E0A9FEB4 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; 10C45B8DDD9ABCB0C1B7CADF0DC586E9 /* 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 = ""; }; 10D9D3FE14A3CBFD301293F57EAC711B /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 10E98B42DD40D4369D494747760E7B00 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; 10F7CF035EED2DD93173B8F2549A3E92 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; - 1106A6F9BA7A5ECEC81ED446CC24210A /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 1125E2A761EF99F749483B70DD73E5F4 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; 1152CBE4ACB0D497EB34FBEE9B1FFD83 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 115B15905C9E27E8F291210C81B4D2A6 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; + 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; 1165274293DA486B43870F755943D0E8 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 1165635BCC4B3A2A2ACC5FAA33C9E9A8 /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = ""; }; - 11688C8490BBB8CB6B261E2A7625C9E3 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; 11781FC8B970EF2BD34FA55A5B0464DD /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; - 1179AC3200C75DDB3748022B45D9D631 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - 117CD2973C445BB0B8A315C237CE2B92 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 1189DFD69861669880AEFFC87C9CEC32 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 11B53542037E663840FD9FA8BD5F8513 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 11C71A6B2DA5B6BE79A7FE5C1F2E6B42 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; - 11EC53117147F13D4CE7394A0FEEDD14 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; - 11F37B481D738544DA6CE36392796790 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 12040043997D5E4561E199109FB51685 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 120B3B53F3711422390FAE868F810DE1 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; 122530F5C1AA8ADB22E4D156F88A8621 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 125DA5CF7E18315B69A50B3F8669057D /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; - 126AFC7C4AA04F845CF4124033F10B95 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; + 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 12797FC69B985D90312EDCE7ECAB876E /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; 12988D186411E3A76037468305A57D46 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; 12A674432C94F3EE2ECEEA35BD0DB182 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; 12AEECED6AF7D715C1A84D61FF91DF3A /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; 12CDF115C8E984969B1745E1B99C5D5E /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 12DDEB7D4D4C13B9CC1CCACA8220BE86 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; 130AD96653DFB0B85D96782F91BE1413 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 130BCA25EE4483EFD663D9B2D1C559E3 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 13388D990800B736F39CED712509D8EE /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; - 136D238DB2DFE92BA70ADE80E6FACCB0 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 13725C86D54BD76DD9A314DC2FBD6880 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; 13887FB8E29B4C286A4446F6D1C8E926 /* GoogleDataTransportCCTSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.release.xcconfig; sourceTree = ""; }; + 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; + 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; 13B132553B56176DECF6284C474251A6 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; + 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13D3614EDFBBA73048D53A64182FB08E /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 13D58D3FD3D1F8C6C5B6AEC5FB644233 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 13CCDB2DB6B8BD5C8770E6E735D8CA21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 13D80DD75B0709974E73A04CB390F73D /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 13EEDB47087C94BF230FE3C727ADFEB6 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 13EEA1AA3B6103677B576AA768061BB4 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 13F876D48D3CAF83C601684F414D9FF1 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; 1406AEFDE1A4D3B267A63FF43CF1B241 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - 14167E6E79DDB2D105186D061DF61B3C /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 1426A30C44097B60039A709BBD1BD089 /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; + 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 144101C0AEEEB344D88EA4FEE7E49167 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 146E7CB2DE1BBAE185CE0856DBEACFC9 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 14504F5E0923FCE3A204B710B6BC8118 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; 147A0B1D3150527DDA8B90E08D5EC3B8 /* MMKVAppExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVAppExtension.release.xcconfig; sourceTree = ""; }; 147AE981124964810C620F4CCECAC115 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; 147CF0CDE16DC97ADC53CBCC97D436B5 /* Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.debug.xcconfig; sourceTree = ""; }; - 1495B405351C8B6D4D7315A4C1A6FA6D /* 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; }; 14A6CF593FBE73A2A350E290B504E4F1 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; 14C01FD98C5420E932FC9F461013EFC3 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; 14C6DE34A9B04BD83040B031CFC770D1 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; - 14CE49FC9D2024159D9434BACD3A9F92 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; 14D6573E2B8E215491914EED243DF4F1 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 14E52C28E304F1B0A77B0DA8EF064AF0 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; + 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 14F619F27EC6BCC194E4949C5678266D /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 14FDE41E6579BCAFF7961770163DF8CA /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; - 150AEA159C65A7F59BB467DC287C2E8D /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; - 150FDA9F3C99A2574AD5D92EB5202F68 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - 151930E4423F69B7A5159168C3DB1595 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; 154143703F771A56F60AEAC01B1781D0 /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - 1575ABCA38EBA8FDEC0B53579D4D3E10 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 1555F15820E29E453831005769838B1B /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 1581C03739BE8695CA4E41A4A213FD91 /* GoogleDataTransportCCTSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.debug.xcconfig; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 1594E1D940D0C8841465B42DEFA3FA1B /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; 159803000B055E9C735853D85E9ABD6F /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; 15A80F17EFAE83359F19CB3301D8F0AA /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; 15B61FCD03DA2E21AEC3A554EDE9861B /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 15B7F9B90D592DD2FF74179B2AA3A698 /* 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; }; 15BEACAEC37CB5497CD018285BA8ED4D /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 15D921D66B907E10A8E951D0A9CEFAB7 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; + 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 15FF2806A2FA1A8BA1E9F9E19A2CF205 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - 1632D81B9E25D2A642A6AB3039D475B5 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; + 160AEF770132CB83E79919C0160B15DC /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1646C0FF650E80A243E24523B702B686 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; 165A5D6A943859F7AC5F5CAD7698DFB6 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - 167EE6CF41F61FFF03A1C1B9C7F43555 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 165C875049AFFD54BF2D90A27C1F409B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; 169D99DCFEEDF6CF638F3AB5ABAB18E9 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 16A4505FB7C9A02DC6F46DBF29F18E8D /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 16A494163BFD15DCF69AF6F747C88391 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; 16AF4951CB167E4AC89CBF0EBE9F1FAD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 16B075F0D892A69B9FA1F1E4D3AE22DF /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 16BB04F0758A5294AE1EA9874ED33436 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 16C969C7F622D1966207C2AEC63B8625 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; 16DB1707BC9908C3518722B608F5B223 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16ED6C24114CA661C03633A9C7058F34 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; 170DE10ABC42423AC407238DF71D2C88 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; 170EA1256DCB7A8BFF4CE9DCA88CCF10 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 172985D8CA509CD3BEAB0FC8DFBB0237 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; 172E4EA66F6FA3C4E3A133F4C547335D /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; 1740711C23139C0114C4B8488E76F0AF /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; + 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; 17652CC3D1020B1A27F319034C7F6C63 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; 176F21493F611F5287867F3BBAEDF283 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - 1775EE285AE3CEFA26E36EB384C87B73 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; + 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 17879FA2A42008A8E14BE91ECA9E0061 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; 17A7DBE9DC87F5C81E3903AB4A98AE86 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; 17C5C1254E18A45E76E2A7930DDDF167 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 17C7755C4DCDD70D7AA19712D472E705 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 17D5BA023689C76AC2B701F436D6CD2F /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; + 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 17D5D96A5D5DB15988EECE23ADDC378C /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 17E18FA68ABC4189F4F806C38C81933D /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 17E5F049A821EDC2FD95AC97BFD87975 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 17E9E0B6C3740B4B51812D7D83B84C50 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 17EBA0EC648BD8BF27D1C89D95CE415A /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; 180B5A25AD0875E50337E7AED56B3FC7 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 181D663F17AE7BA3F32C41680C739CDD /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; 18343429EC371A0D798414A686989445 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; + 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; 187319D1797E7B7B488AB5426C9483C0 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + 18789E868EC609FF031C4FF9E7A205F2 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 187E87502130366CEDEE391457285975 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; 1888FA74262945412C925AC57AC0924D /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; 188AAF0E2A8507CAA00770FC50A0A6D9 /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = ""; }; 1895FF20474DD5D4B240DC2E8AD0B961 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - 1897C43F8AF9278B0BA995ED379EF9BC /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; 189C1F7D18C017CBF6C9E71491B371D9 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; 18A13DCC135781C94C0CF101CD05E3F3 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; 18AC4670DD43EE89F57C05872BB5D2E3 /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; - 18AE49D5FBCC94274677B37AD41CEC1D /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; - 18B2C156A8217BBC422049B064443B97 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; 18B4A2F730A71DC95AD052A05C77F01F /* FIRCLSURLSessionUploadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionUploadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.h; sourceTree = ""; }; 18C0993205E2FC51861E4E74D88F0386 /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; 18D0B14CB21D552A9902E8BE99F064A5 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBApp.a; path = libRNFBApp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 18DBE035560D7576C7D2B33D8B7BE372 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 18E4E0618B189BF1F1B0F02FA592A47D /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 18FC4290B54E9EFA8BBE707D2C6823DE /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 19049960F0F903D5C838A3F765A9F404 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; 1917B88D75689E8876B6520174F6EB97 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 1924C22D638CB1F31E99537254BB7D00 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 1937A7452A3C0AC9EDC3543CCD8F6484 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; 1942676D70CFCB685C06399F6540B1D4 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 195AF11C1098E12BE828303E9E9127D0 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 1968C29289D13793139555311BE0F758 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; 19A51701C91E692C478F8575254A50AC /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 19AFB95A91D3FDCF31AEF6218AC259E7 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; - 19B6F81D544BA4078A90FFC6276E1EF3 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; - 19D2405E7D012ED605FDF7947B64032B /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 19D71031BF05F7DECAD3B4431711B4E6 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; + 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; 19E3E2F80B0678F1C170F3A41784526C /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; 1A0C2324472838D2CD186B6034CDB790 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; 1A153D979AB35844103EF2D0015FFE7F /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; 1A1551993C495CED13DC4CDB275A213C /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - 1A295D416EF762CCB840AD69F9BE8C33 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - 1A3EE3C4B7F736898B30124303E381C3 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 1A4B5F865AFB2739B350B643C913D14E /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 1A6F9CCB44759262D04CE2A22C1AB1FB /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; 1A706E3D75EE13566AA1BB2D4C1FF5C4 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; 1A7680062F22F4745F5BE8D384CD6260 /* MiniPBCoder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MiniPBCoder.cpp; path = Core/MiniPBCoder.cpp; sourceTree = ""; }; + 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 1A966C2CDD7579B225F47BC2239EB02F /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; 1AA5BB944A0D64D02A3687D8A39FD262 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; 1AAD56FF574E284F5AFAE7608EA372EC /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; 1AB3FE2A17BEDABCF0D67499A4E02A4F /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; + 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; 1ADD7810C6DF1440631D2AA8C8C12E13 /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; + 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; 1AF5D3EC1100F113CC3D3F0470618427 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; - 1B142CD0FFB8FD55EDFA649642009291 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 1B2660424907E7E1DDC75B058FFA3F8E /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - 1B28C6987DC7BDA395FE24DB0842AD8F /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 1B32C813FCD1F6971FA1A058EAC37DC9 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; 1B3E342EAF652660551C85D45C60C4C3 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; 1B3FCA272A3DFBC42DEEA24756A4472A /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; - 1B511D7CD11F62C75323A087784E48A6 /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; - 1B52D338DAD0922CE577DBC9F439F6E9 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 1B55B0D7000F8DE360C1D0E6DC17C356 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 1B6C236D982E19542DB9B9900D5B138F /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 1BAC394FB94FD235D2C93E53AEFFE515 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; + 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 1BC3F2740B073A772939D6504C8CE0A4 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 1BC9CB7B045CE844691F03CAE351A04D /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 1BCBA980A13E88667208D6B5240409E1 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; - 1BF4DC47CB9ED87FEFC26974B0621377 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 1C2D2CBA9EA90FFED579FBA1865DA44B /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 1C35AA5BBA044681A80F04B30B6DF2BD /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 1C39633638470EDC25CA7433DC576ABD /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 1C4D03CF8F014052559FCCE94B1A0E4B /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; + 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 1C54E2024A58E50FF56C28D2288AA2E0 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - 1C9176168365AF6AD9C0CF4F7B254F09 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 1C93D5B59C2FF4DC3E07CCD8D7EB844B /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; - 1C94DF7CB373383744FAD589DA104F44 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 1CA7976AE849406659F1CF6F05C8FC98 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 1CB0228004BDF55526EF77A96B5DE9C1 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; - 1CBADB703A00AAB512A898E3A59620BC /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1CBC1F263BC3DF790A353D55C0660CA3 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1CBCD274CE6130A2ADD36622E909A653 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - 1CC050E57AE90094F1AA4D333891B6B4 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - 1CC0ECE45A6744A5238684A234A3AECC /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; 1CC728135D062FD542E1642F6D3CFC90 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; - 1CF6DAD8C68CA5020EAB917F2B678F58 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 1D03BE39E1D34EB361F341CDBCE0EC8B /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; - 1D1A169DD3DF0865EF7E361E8D23CD81 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 1D21C1E3154D205532C5C7731FB42A35 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; + 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 1D2D281233B93C81791D7901BD3F2964 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; 1D33CC779D89B078E3BCE411E5728460 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - 1D43960265216C011FD87EF6B2536CAB /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 1D6E30B5D5A54411361F9E0B5938B513 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; + 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; 1D7CBF06506FC0C5E499836B0E8DC898 /* Pods-NotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NotificationService-dummy.m"; sourceTree = ""; }; + 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 1DAA23231DAB08A0DD9D85E02F043AA6 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; 1DDBFA43E5FEA69E2EE892A2AE4B33AF /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; - 1DF343CFBE54C353EF53E3173400F592 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + 1DDFF192969E5F39CBE160C9D07FF0A7 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 1E038CC21A6ADE42B2F2439769668BD7 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; + 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 1E12A3CC6A1AB9AAFDE508C8D7D08945 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; 1E24704F1B43C47872C83FA3EF020D63 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; + 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; + 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; 1E526059DE298C4026C050A54B2D6EA6 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; 1E56CE9021435E07FAA058AEC9A2529B /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; - 1E656B69F22332512C361E45801B2FB8 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - 1E667FE7FC5366831C1CD603043BA041 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; 1E7ED01554864BF8265C2F62B2AB1689 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; - 1E9FDC76D8C039F853E591D42C6D0061 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; + 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 1EA0409148B59D082372AAE9C1784E37 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 1EA45CA4388478E91926C24AD8184866 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 1EA485D99694253C201A2CA4CADE9DF9 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 1EA4B2885A0007DEB2C35082014F4ED0 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; 1EABEB5B0ED4B2FF486465703D6185F2 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; 1EAE339C1344DA746DDEC8CFD59BF5AC /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; - 1EB4CB7EDF1759CA3B2F2D09DE8993A9 /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; + 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; 1EE56E1ED3667A5E18BCC2A966F68318 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 1EEB9048CBFADF1DDAD9C6F46AF55816 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; 1EF2BA687545FFAD96B628E428424C36 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; 1EF843E5552E2BB730DFBFD2EB0CCA76 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - 1F01565393F274A95E7F165EBA9B8E11 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 1F14516FCAE5971F25D6B28FF89904B6 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; 1F2CA285C0A6E2486013BAF599AA9B58 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; - 1F4B6EB01D6DFD25955838BD7A81BD27 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 1F6314976A28E533E06FCBA0CBA9BAD6 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 1F6A7AFBA804245CAECA51C7B7404355 /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; - 1FB782C4D154DDF037436973F5038E1C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1FD229D8F017FE2ED27E59017179E3D5 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 1FE816F7617BDA7F28220C57AA972CB5 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 1FEEE13E5F6B5E2C02CD4F4BA783D628 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; 1FF23D93A87E9997852AAF4CB31C4A8C /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; - 2001F0B8470629C4C9988F6397F5C9FE /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 20195AABBA45654FD56A21DFD0546CFD /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 1FF42A80F80327EFF19C442895701E4F /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; 2024B1BB04C689EF0F6D537E234FB04B /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2033EAA4F936C298EA59D434BB594FB2 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 203401F7AAEE5B2FB3C1808C6BF70CCA /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; - 20408DDDDD8676E9F6B8C4E8AEB3551A /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 204AA1F34D0CD579FA1FEA2882DBC382 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; - 204B777594CFD0CE9C3E3F07CA319D9A /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 204BF9F230931D6B8A99E4488DD5A2C0 /* openssl_md5_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5_locl.h; path = Core/aes/openssl/openssl_md5_locl.h; sourceTree = ""; }; - 204D00FFC11A7DBF8C7243D6A44FBE52 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; 2060D26E0317CE676D424E22009E7555 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; - 2062A0554B981B87731E4363CC860887 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 206620D07945C79E7CC4286575682243 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FIRCrashlytics.h; sourceTree = ""; }; 2068A1B107DAE2DB15594D7FF000125F /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; 2077C5B596E4D880F57984623A877334 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 208B4E659AB8A1C35128F4A68ED6CB67 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; 2092880DC576AC0B9FD739B2CF2DB729 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; 20953006648FCA7D3E6AB8BFB0E02E4A /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 20968529B02D627571B5FF52DB9FD471 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 209714EB0688ADBD2F3F36CCB41E0EA3 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 209D16DF7BE26200292E3AF53D619384 /* 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 = ""; }; 209E7C68D889E228DBA3424F426809E6 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 20B2C3FC3CCE44DE744B06D44171CECC /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; - 20C9DE01AFD50894B7FA6AEC7E747D52 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 20C9F86FF97D42BB26DEA30C6A1B46BD /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 20EAB90EF822713B7D8AB265ED3C7BB0 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; 21174BB77457E4F7273613A16BB08744 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; 213357BE51F85CA354F34E93E29CA4A5 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; 2147009ACA77C71C0042CE90F8F9FC1D /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 21717E3C7228C968D72955CB29D078F3 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; - 2171CDE876D03C2388CE54F7958A6B07 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 217BCA3060C1EB4F73E25CBBAAAE9633 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; - 217E4D6BC77FD0A36C10CD85B47B4E28 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 2187EE7FD2E6F6DDD7C64F9F46B17BBA /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 21A304C5A326E04E00FEAC020DA809F9 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 21BA93BC1A1FF706F6A5B7560A334F79 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 21C25CB38B6A575937CCDBD087F8E3BA /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; 21E0B16CB42C761661095F417C073820 /* MMKV_OSX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_OSX.h; path = Core/MMKV_OSX.h; sourceTree = ""; }; 21F3594DFCA45CA204AC184CC6A1914B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; 21F61F41ABDD6244A91BD73515AB9C3C /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; 2202230CEA646EACF64B721865C58DD8 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 22120B437DE83F29307E3F517E940FD8 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 2236EE97FD7E16564C2954938BFBE98D /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; + 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 22247E6BC5D6A3B1C48E23C163EA26AB /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 224449707078BECC1912130BDDB3FA41 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; 224CDF3D28B97DC3F74B7C94A47DEB17 /* FIRCLSURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSession.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.m; sourceTree = ""; }; 22543CFC8553BDC4AC26E293C01A5569 /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; 225455752F6E169BAB78BCDF65CCC8E3 /* CodedOutputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedOutputData.h; path = Core/CodedOutputData.h; sourceTree = ""; }; - 226BEBE36B4D0C89FDC323CB3EC1A847 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 2275F4B1696D163848070BA812EEE1E3 /* 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; }; 2284E5DA42D24A8ABC297F049439F808 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; - 22963DC665AFB9DD4221D121C790D4B3 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - 229795A32AA2151A170DE8C6F5E910E7 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; 229FC863351FC15A1ADA9A4F9477F91F /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; + 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; 22D5A0A3D76A2E8006E0D6AA16AE8B83 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 22DA82FF7F1C63B1FD40CB5EF1745FAF /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; - 22F98158F902E7F94336F3562407C8BB /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 22FAB21A7F60383460ED6C9AD9B679CB /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 22FEE90964CE911CF9B035C2DE71DDBD /* 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; }; 23057612E2F96F6EA0C08460935202EF /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; 2312870F8AA8F7E32810D2C3A482E216 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; - 2315C3C190483488A8F4D8ECAE972147 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; 23308581FAC968AE6B96CBE461F93822 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; 23483A32107EA6FC876494AFEEC048B6 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; 234D27B3B35A09D366BDE4F3841A6C71 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; + 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; + 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 2358E4C41369E72DA278AD42A8221CBD /* FIRCLSURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.m; sourceTree = ""; }; 236024A068DDABE38303EA3FA7AC8994 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; - 237C8807356F273D4CFF4AA2545EE5AC /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 2381DDC54493DD318E2730F83893CE29 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 23863380FAC836A1C4469C2DCB32DE67 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; 23A6D752E35310294DA296C586EA1124 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; - 23A9632B197DE52B6893CDF4433B3874 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 23C1DD9CD7BCDED2E5CEAD484F539E30 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; 23E0F83B878A2015EE63E9131CE3F4E4 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; 23E9107ABDF1DFBB3B3DC9EDDA6574E9 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; - 23F598B1982F8C1C25E05583BDF26E8D /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; - 23FB808DA54DB260FD071C1113BC47E1 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 23FF7EE257854C1239EFFE1E86057AC1 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - 2403D6BE02B9DC894FACA669D4E2B68D /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - 2408483E2E11CF11B790E3BBDBF39A38 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 24102FD6ECE5EE858D343F400BDA1F30 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; + 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; 2411FA79D201C0BEF5FBAEE14F689966 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; - 2413DA9EFEEC8972DBD2B58DFD628088 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; 241479B1A70265C5EF920CEA1B30E3C8 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; + 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; 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; }; 242A428FC17181DE990E8D5A2153E786 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; 2432C8A76487AC835CB14BF897ECF870 /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = ""; }; + 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; 2443987C91F8174E5D7EBDE73B40EFCB /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - 2467724B23BE16DA80E86D26837EBF77 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; + 246B2548D9EB5B906A07596E70E8FA1A /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; 2471035527AC86FFEA69DAB45EBE51D8 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 24878E3C9339288309F57E390D19000B /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; 2488CEDBFF4B43A5A73FE5D4D3EB1DA5 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; + 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 2497AD2C3A38487B2E6A2C14553F93DE /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; 24B3CC1D6BFB09CE852315D68783AF14 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - 24B6223F41B3CDC9E617CB1AF51B90A9 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 24BDD9E7A1AC7C7413CB912A5E22F76B /* 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; }; - 24DEC0F0DEE8E7A7CAF1A7FCFF5EAD26 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; + 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 24F55790C52341EE3DA7424D39C6155A /* Pods-NotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NotificationService-acknowledgements.plist"; sourceTree = ""; }; 24F58F88A4882E75DB6F2D62653C730F /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; 24FEE9D59B580AD1E776BF92C274BB04 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 25033FDAD85C7AD9C0FB4D9CE82F9824 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - 2524D22CB8F38C41F5E5F2A2C7DDFF26 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; 252F20F357703BC3ED2A24EC0FFC9F20 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 255917C889220A40D1C74A8CE6D91F63 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; 255D72B71BDB0BB5FEFE4E338122CF8E /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2583B5136BA9F9BDB0FA0CBB20BDCC76 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; + 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 259BCF6CD8BAE89C80BECAB813297A51 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; 25ABD9EAFDA114E22BF8ABFBAAA6A1E2 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; + 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 25F7E87473388FF62E1EF44A8044A21A /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 261D8EABC1B5ACF4822AA0EBCA0ABE19 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 2603074FEBFC477C3D117AB5C694CAD9 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 2608A00DB071AABD68B93DFC7C46A01B /* 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; }; + 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 262E9C9B6F4347B5DD35E88568FD8D34 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; + 2631E8762A1DFC1BA0B0348CC1451B19 /* 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; }; + 263274F1FC8F196D9F7C9F2C12F26D52 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 2636254F42F58F2C1C77ABFB08F3DCBD /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; 266151A83F20C54689F48626C35E50A8 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; 267CB5D5CC6EEB55D13D01B7E6864A1B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 26820C24813B74EC02F3E78390E76315 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; 268311C9CFEF146103EE89227C3AF2B8 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; 2685DB9664E678CB0C87EF6BD998FB13 /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = ""; }; + 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 26B3C514048574CA7CDF45FBCFB6C059 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; - 26C9FC5EDD931700847087DABAEEFAA0 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; 26CA0968F6DB5D4F3978C98664823F04 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; + 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 2707E2961B55803E7B7AEA39B57A14DA /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; - 2718CA08F3B4888614849B4871AAF12F /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; 272C770751661D7921F1846D2ECEF1CF /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - 272CAD82F92A5067AED0D916CF87456C /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 27303A73F415EF82B6EF8B6E5C5B39DB /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; + 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 2735C75D069E8CB064C5056FAA472EE1 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 273A9F95F24B0E55A32AF14A8C1E12CD /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 273DC0B4ACCCA75F8010799AB521E296 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 275B4471850334F18F614589E6556204 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 276AA64C33F2B43E6002D226CB1DD7D7 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 276F3F91D7A31DD7EED2F990FDE60364 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 277CEA201910B02DC5F2E127BD9E8BD8 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 27819B9DE0159480E49C07274F025758 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 27A3F275CACB944025971F87E5D157A7 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; - 27ACC469345EE9D21E0DAA14B4CE1E39 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 27C19ED383EC256AE0DEB299C4E9B08B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 27D3620E5516A7CD19F78992AAD108CF /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 27F486B66D01BBEC7C8F93CF3AB4032B /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; + 280A32BBCE7F8146256E7F950329E303 /* 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; }; 280AE93CC3396E5BACA7C3D85E999106 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; + 28105B13EA351F4B508FE0E4AD5B2230 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 283746EB44A8BA8825A36D950715DA43 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; + 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; 284D0BD80F7C7263935C9B333C8C7128 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; 28523C655665EF3B1660B49735AA01FB /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 2859D8A74E85984B3D62DE383B20517D /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 288BC9806E8A2497001C8A27589A399C /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 2858B3C406226118D28DC967086236A6 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 28884FB1DDBDD4E9BB48826466D84D31 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 28A50FB61E64F7087DD199F877950810 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 28BFE045C9B62D7C872945AF797A0997 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; 28C6B44415916C55BF988662090BAF2A /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; @@ -7252,155 +7258,160 @@ 28D0D3BB92A46FD0A2EA36558524FA54 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 28D6D678892B43BFF90B8EA1E9393866 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; 28E4EFE5ABDFAAE5543E2DC0B5E63800 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; + 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 290719AB3B8C5CDAB1C89C312F465D55 /* 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; }; + 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; 291B8471134F121BF9EE155EDDAB0AED /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; 291ECEDE7675204DB498E8FB478238F6 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; + 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; + 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 29622706EC0A8413E4BCAC4ED3B8A4A9 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; + 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; 2987799D477A67FEA74BC1C02AEB1F48 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; 298958769545D0A0CD4F77FBC0018816 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - 29931BA3EC220405FBD417A4E2529D23 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; 2994D9A17BFD3845635A5464DF64D026 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - 29C2D5AD37C2DA180C49C1137CF1BC18 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - 29F15F3192A3AAE4656CAE842E589BF2 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 29F286A38D9F8077D66B2907B4471EFA /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 2A03B1EBFD1362DD6B2E2D10AD1DA412 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 2A0D48513A8D99ED1A00A076F46C3816 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 2A1631C0D42B20565DB4387199E33CC8 /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; 2A19DD955D3BD5CC92BD4C467B640CA3 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; + 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; 2A383877CCA66C0321486F218ECB64CB /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; 2A5457C15579961852C2E4BAE3AC7CE1 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; 2A59565B3D6519C10DEBBEA7F5EBB4AB /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; + 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; 2A8180D9D0600FBB6EFA7C626EDA808A /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - 2A8801879744C457321D771615FA9E1A /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 2A8812607051B6F82B2D1BFACB4230D2 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 2A8BFAABE911D0257D142DF57EFBB406 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 2A8EBB4B5F45A5138F54DAF266AE2D60 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 2AAC17BCE6AE3690326EDC7EC3714D56 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; + 2AC79DC8FF5BFA7C2F59FAF82DA5340E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2AD6776FCE89F01F4AE3F91AB433250E /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; 2ADA4F6534A98D5CDE31EBF47F865BA5 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; + 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; 2AF63C27DA331326A58B61F06A0B59F6 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 2B0116198CC46BB0EE518A7A397E5DD8 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 2B14B0084BF02DE15FE62812E1288436 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.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; }; - 2B1919218B8F63E04843B4789A349BE8 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; 2B2893702A7AE0EE6CE82C97E8B04B27 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 2B66533D254EEE8688D4D571BF460A85 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 2B67D7B50D4DA591A9D6C24E43E8FDF8 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; - 2B7DFFF386629A13BDD874F24FFC60E2 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - 2B9982B1352F7029AEFB90F1362E6736 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 2B71EBC4ACEA997915594817EF22B58D /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 2BAC07D32C32084ABEF37A044773789D /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; 2BBB0AC7C7BD3E24D4B5BCF36443E456 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 2BC3B279EC7B3584AF1AA293619E4DCA /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; 2BDD96A156450AC5802467E6C6112C3D /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 2BE94CEE4DD622DE3A79995DCBB38F80 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; - 2BEBD02B3C49A8B904680723361E29CF /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 2BEF946517D51F07C30335F4E6121076 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 2BF111DB0426A996E4ECBDE94FE5C87E /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; 2BF49EF972AFDCEF4147E3631E9E8D1F /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; - 2BF85799A90CD0293E64FAF057EEF5B7 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - 2BFAE8F405BB41BF0BFB01969B9EF3D4 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 2C05937C718A1A204DE6AC17B844F985 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - 2C0B53B80D1B454491C9231D96BD06EB /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 2C2E2C86F58A2C06A7A53CD7A30C6172 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 2C34BCA804FA4F0B63431AB1118300D4 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 2C43861D198567296F1D650D6805EE04 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; + 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 2C4669C842B9EB28FB777A181968F06D /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; 2C573CAD70E719BB6148A58884594153 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; 2C6DB314BF7A6F6636587528F40E6E63 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; 2C792AE38779EDE06A21B3BE620874DE /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; 2C907FD202E0FFDA105B5A509A977743 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - 2C95887DF54710521A88FD294C10C35F /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; 2C9DB9B33169804F44FB8B9867315459 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; + 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; + 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 2CD7195F3910E7BBF1092BE51F12F91D /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; + 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; 2CF0981CDCF6AD04CB4CBBBF64708A21 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; 2CF6864156391147F5F50F664D9034C2 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; 2D31F2C1537ADFB0C1D3169560037E9B /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; 2D54B60E17BD1E4A90B5E9DADA8D9256 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; + 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; 2D5854CEEE48171B65B02E63F0EE548F /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; 2D6FBE67EA6C7D82BF4E3C55391CC500 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; 2D78F9C00BF67245B935CA95223EBF9B /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 2D8660B900062D96AEB1FEACE642F61C /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2D88FF40C3C206819A95777E179C8465 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - 2D97F5F6797C3C24100DF89C7872EFFA /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; 2D99345BBB430917AEB5318D87DBCE64 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; 2DC7121300C3748D152EF165854E476D /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; 2DE6EAA6583B7AEA30CD4407AD012766 /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; 2DEC40F401684953C7258242084802C9 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; + 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 2DF33430257562D27ABB73A05C9ED0FD /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; - 2DFF569091508B46D910200710A5C6D4 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 2E19AE3D17C1D6EED5F10BAD74140FEE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2E27C351B16B6D0C56C854A347B16CD7 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 2E291DD718D8678E695D1CB3D12E569E /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; 2E3B7B5D952279C78CC0490C8F4C222E /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; 2E3BBBF03432E9D906358AA7E355DD63 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; + 2E5FC021907B516E89D8CC0F3E05853E /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 2E71255E3D468B7D445092B63D2AB02A /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; 2E84B732C1D63BD1ADCB8C8869AD6650 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; 2E93CBD601435B3B6E299AE1396B0156 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 2EBE2C17455A54B13BAB477FD7BB7E2F /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 2EE0B0BD1FEF20B614A4E2359C91BC25 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - 2EF2967E2726D04058E65F36444A3F67 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; + 2EAFCBAA5D97BE2F1EBB907AC5FA7666 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 2EE7BC04B336F4E7738CF15ADD4B1334 /* 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; }; + 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 2EF375909FB5EA0AD94C44236A72537E /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; 2F17AE626AB48BA2FECB01DC890BE7B1 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 2F26214F701F10382741E6FA2C6F1E8D /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 2F2DB7F8457A7488E3B2F102D842E99D /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; 2F3DB85865D79F4A726C43AAF5A91103 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 2F5CC0C18D289DFF965C99B40EA1A70A /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; 2F6398AD8936BEFE99D1B77E39D38A53 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; 2F657A85EE3B3EEC36D93838FDAA2691 /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; + 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; 2F92B6663CEAC4B5F3C08886E565F523 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 2F9AC0BF52F59D118EFD17E5FC6F1092 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; - 2FB9D78EA07DE99F693EEBA901C4D8A8 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 2FBCD2B4BD585A64AE4DF49B7BB67F9B /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; 2FC14241A4FB4A7C07F5B0D8922B4AEE /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; - 2FDB07B532F29B21583DA6417C39D247 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 2FDDFD2EDD603B22FB67D2FDE3651F3E /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; - 2FF3199DBE26A41F0F05D343A7A074CA /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 2FF5B47DA6C608C1A74A71E0C1C11648 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 2FF6A539084A7D2DAF113E7B09679D94 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; + 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; 30163F074732A3DCD3326EAE9F1DF671 /* FIRCLSURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.h; sourceTree = ""; }; - 30165B8240703E3C7EF0200ACBE476DD /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 30183117647A8EBFA12586C19C51951A /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 30280E5221530CEAB4B03E7F25862BD4 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 3034E8103363BE765D13AD9F0899C6A9 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; - 303760AFF2199F0D4A16F1EE5EAEEC6F /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 303FBA33C47F840E409C2F636171D63C /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 3048556EF9ADE6F8F8F1A29C19EDDA59 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; 305E4461F20DCC332F3249BAEE807FBD /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; - 30788B55CDB4C0148D7FE3670AD9DDCB /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - 3089C64E161B93DD317CE563267157A4 /* 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; }; - 309E7623AE75DB40418A48E071A38736 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; + 3073C8F0BE8E66485FAA5EFA26999703 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 309FD4BB766095C8FFCE8F8CA5ECB8C8 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 30DF021651DF127193BEA6500A9FB246 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 30E7216A300013A4FD7909722A8BC12B /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 30F012AC6EB22C8B61B124E148E58C29 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; 310035D1FB78DE2D64DB8961EFE8ED01 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; 310A9521535921338D30708091A337CD /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; 31242A4A3BA081BE176B63314AA7D197 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; + 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; 3132647FADA358D1B0D5C4B448AE9F02 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; 3132BE5A532EA723F412A6285AC85FC2 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 31393E962E278B010F84ECB7CD0472E1 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; 315C9092CAC50B21E5C250DEA359D298 /* CocoaLibEvent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.debug.xcconfig; sourceTree = ""; }; 31680BAC2B5D1D52543FCFEB90059311 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; - 317A012E4BFFD64E97515D365236FDAD /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 317F01BDECBC5146ADC88CB6C75D1F83 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; 317F36784686BE8DA048215444CF35F1 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; 3181D83556FA3489517437FB958CB6BF /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 318809000B2034C42F024E63559E32B6 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; - 318BCBC7C8DDBD935B9B73974ECEF4C4 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 3198919F3064B327D1044E70E2ED666A /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + 31ADD9F6D606D4723C903E071B53FF57 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 31B9F5606C0A003A29164747152FD690 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; - 31BDF1FF8D89908EF066F6367DC217E0 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 3217A87B53EF22776DC07F1BB8099DA2 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; + 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; + 323CACA5D98061184BA9E6A93C37C476 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 325718916693D8D2D6BCEB6863EB2BDD /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - 3261259C3AEB3554D945C180E143806B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 32748E61FFC7C92EE0AC455FDC59F435 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 328B0CA65EF2262F638651C7A6AA1AFF /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; 328CBCB00EDA5D464EAF30F38790A598 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; 329C548D9C662F038B5B5394345EB26B /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 32A2F852FACB7687260A645A7CA35306 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 32A30B52E9C591000F8E2A982098C433 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; - 32B3BABE00CB6BFBB3CEC558EEE4D240 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 32B6E207F2147E9B324143ABFCD08D3B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 32BCBF6498D7E16EDB812799F055648B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 32B6AFB4FF39246C40AF62895EEDFAFB /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 32C409F711D136ABBE7706D44CB72419 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; 32E1731084B4625473B52CDDD4F4CE46 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; + 32EFF23C5D7562F6C858A50A7A4258A8 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; 32F0C2598813B8577CA20426C6F8C906 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; 3301911E754A4C286ABC7C729C5CE04B /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 331430CBE1AD5DB6F0251DA42DF33E66 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; @@ -7408,101 +7419,80 @@ 33362207E38B4AB33CC5504F86067DB6 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 335D38318F50FD0275426F0ECD343B89 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 336524F926836BCF66DFDEAC3E03F669 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 336CEDFFACA0C972208DE707FD79F5B5 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; 33910D6A569B0891909C64F4355FD973 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 33912B7BEFC9913C52ED717340764985 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 3391B4E3F9BE2D0663AA02FA39A6B896 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; + 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 33D51A8AFF07DCF68B2BB41459E9B8A1 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 33E6B448B3D85943E75ADE0EBE98D463 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 34035BD0C190B26A0634E24C0E63A8D3 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; - 3403ED4FB9015FFC4874DA2C5F2703B8 /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 340A87757E3E91E2BD60537F55EB75DA /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - 343C97A4BB16924994F8BF12F7D2E396 /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; 343EA6117AFE0D52C41B73F2E515E0D0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; + 3448D6404B855EB294BFB114FA1124DF /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; 3489F8F38CF643B6E1A1188CFBF5A45F /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; 349608C8E9EB5761A5358BDF70EC0EA2 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; - 349B0C4A4790BF2069F3A89945CDC85B /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; - 34ACC58172A5FF16DC138EB1B7DF0ADE /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 34B5E838B457CDB0B30A72FC203E30A7 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBAnalytics.a; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 34CA3EAB8271BD27AC665FABD6262137 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 34E6A76E0C888C98D45C31A60EB8E29D /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 34E7F7AD0CD6CB2D7FDCBCFD985F5E2F /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; - 34EB70F95E2C1B99316B59AF30AA8B23 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; 34EDFC0601787FF6E6B34F444FC4958B /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; - 34F4E1006582BBB34933D2EBB86D626F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 35275E01F0936419312AC295FA720ABE /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; - 352990121E0A66CD03B104026B87B37E /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; - 353340E8757DA01E09290DC9AA2D119B /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 355ACA04FDED80EDF1C324CDD7B49481 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 35690712AE7EFB66FE528D1996482480 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; - 3570D5A579ACC4AC7D594C3CDA2BC5CE /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; + 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; + 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 356C3802AAB930F1B1EC52AD86B24EB9 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; 3576D97114092E1C8E8FF8FBA128C15B /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; 35837220F1231EFFCA25FBC405F6FC14 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 3588C1837DCE8B57766EF26179A0C7C1 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - 358EC2B17447DE2EA1730C090D336BFF /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 35967FA5DF24995ED311FEED8F36AB8F /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; 359B99B052DDAC66B0B97187C86BEA36 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; 35A494A764DF4FE9DAE895F6592A6FEE /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; 35CC24F928CAC54296E03B0F051806F1 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; - 35F42453568C7D35EA99333B28CAB9E1 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; + 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 35FAE16347FD77AD4FA13BE95B2EA6EA /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; - 36216F26D2E9DEC04AE009AD5476C98C /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 362E6DF70DDF44613FAF8E9C07757DA9 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; 363051A351FB101CB4DB757D0C56E942 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; - 363D49E2C079F69A275961BFEB3C0E96 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 3643CE7BF073A819C3B4142D871FE13D /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 36451A4CE71787034E42E9E117ECC49A /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; 36532AC1B65DC9D399C97E41F28ACC54 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; 3663B2B47DA53BA34C56D1CBC6DCD2D4 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - 36A2438BE060132EF4A25AD96F16032F /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; - 36B82AC85FFCEEF9132F8D15E211E8E5 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; + 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 36D23D83A4287B8F5CD12CFA96EB3202 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - 371B361317AADFCA2EDE6C40D0CD0063 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 371E7EBA4B68DECA2F2E723E8EE42914 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; + 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 37260B6F95E6B538C77461B4B6D05114 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; - 372DA27E5F1A0ED7C36F0BD979C4FD26 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; 373838BA43BFCEFAE7F39B409FCC7B47 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 375033BF1816F43387051570E1E5B279 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 3750DCB8CD91AD520B68D632A0F0309E /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; - 375925AA15E11378D073ABDA0144D8CF /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.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; }; - 3765694BD8A7931EF9AA151B8BFFB135 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 3768CFE13C9C3B148082565467DE292C /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; - 37788B2527D5751F03EA4192B6243CB8 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; 377F76457D9B686BE546688AA47B8CBC /* Pods-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.release.xcconfig"; sourceTree = ""; }; 37880D003F3EF2EC6BD191F6E5B2A95A /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; - 3788DF3FEF2BD13F973CCCC547938F87 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 37919E73B926421805715FA31167842E /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 379D18EB4442E35A9EB4EFD0907E472F /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; 379E0871E8C66FF621CE516373586224 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 37B01A9E249125C6BDE674885F124BA0 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - 37BAA62F703E8E7FB51E88748A5E943B /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; - 37C301A9041FEC2E53E2371F42E4484A /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; - 37C62E7C8B92C3475544C1304C7C5443 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; 37C6BC43D1C6C0993A711E4BCF33874C /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; 37CDB61E056A7D391B5880650C9902FC /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; - 37D74F5DE2FE2876BBB51C45F8AF660F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 37EA124FCA0ED645EE4CD92EEA1BD069 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; 37EC3FDE845C5437D57F971031211C33 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; - 37F133AEBDC29BAE5DB91012D3E13206 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; 3819EA000C553270B052608173ED0BAA /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; - 38257B73E8D20918F0D7F91495EB8CD1 /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 382B7ED7CC50FCC22787DB5FEAE68964 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; 382C6B3C504308633B94D4FA7269C619 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 3830B31BCB6F903CACA5A51999979FD4 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 3839929F403C2B97F7183148382BF0B2 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 3845F62847242E19C0EE7C3CCBEA4BBB /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 38584C66D40FC322B431CCC520EA0982 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; + 382EFED58DCA8E7193FCFBD1BB62B4B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 383144616A9AB20CBE8698C62B6FD237 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 38722CCD059CF731E8EB87988132C588 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; 3883532CCFB6AAFFAD2F38BCA6B4A0F9 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 3890A2E9E1D29DF9E05B62849B17B7BD /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - 3894FB528BFD740A3A2244DD60DC9429 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 38D52267A3623C31952EB1951D4E20A0 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 38A9A8F8C0F7BC70FFB6E6D23E57F3A6 /* 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; }; + 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 38ED227967D423511B8471BC47BF9760 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; 38FF482A8A3F534C5AFE2BE09662E9AC /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; - 3909AA63E20BDDBA020EA572C512A4DD /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 3925EEC2D7C61026533E0154C4D7D572 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 392D8F649B573D0B71F6FED94B8ADB3A /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; 392E85A6858ABE7569F9F5529E2677B4 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; 3933450B6CBB5C6E3C628F46928CF0AD /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; @@ -7510,53 +7500,56 @@ 3947E3976826D1D8395F15F91E0EFC29 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; 395D5B2342644C97DDCBFEE82D2430B0 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; 3966967B277AC2F3E8AE6BCF38087818 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; + 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; + 39BC26BC21FB366CB0D48385D4F5E46A /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 39D0DBE2677AD7AEB0D115FAB6DA6B3C /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; 39D749A4B1348C9699081C2A129C5607 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; + 39F46680FF08FA6F0073C1BD702C5DCF /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; 3A3D1A76F4A5CF45A49B858F6A0DF324 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; 3A41EF9B487EC8CB415C49EAF6C94677 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; 3A4F4C0BCDE1E7222A9C16BB552976D5 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 3A5758BC8356E0FABC5DE99BC0C4C1FB /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 3A5C68C3E06CABDDC5A1124E030379E2 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; 3A629223F976F71639D71C0F1B2F28BB /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; 3A7A586F95076EB0F0E104A783BD36ED /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; 3A989A3AA197F38D1E3B7C0B70A38760 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; + 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; 3AC5281D725EF697C3F1C31564DE860D /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 3ADB54D5118EF457C66703A234F34BCA /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 3AFF9FAF94EB8249D1B1287FF2C0FF3B /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; 3B0B72635B68DDFBEB61861EB08A22AF /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; 3B0D4BEE27801FE7549D8D8F0F0D82EF /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; - 3B0DDA544AAC9FB433F9AAA0BCE5D9A6 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; - 3B18A0457BBAB21FCCC265D41AA00A7D /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 3B25C1D8D16448684FCFD474FA53279E /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 3B5FED3127466CFCE12B1296EA6318FA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B678A2A5D006AEFD812E41736A0304D /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - 3B79009ADD1F378E70D0306497ED1E5E /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; 3B8785CDB575B476AA2434A57D38EA65 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; 3B9018C017CE1F173655CFDBF3C9505A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; + 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 3BA42568CD090374443F4F1F27941531 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; 3BB695259EFD1A6F97D63899C791A673 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; 3BBB608478F4976B5227E0BA4CB6140D /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; 3BBF5ED6E7690FA18D4B7A816F99EA92 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - 3BC2C1FEB288C0EBD311C9072DE6C912 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 3BC5033AF0CAFB17D2BD347A0CD9E3BA /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; 3BC736F5F5CDA57D61E6A6765CC3A096 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - 3BCC72616908960A33555F8E2312615D /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 3BC93B6831CA460AE41FA2A1BDC200AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3BE6681C640A8D82C22D08B78CD22781 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; 3BEB19D93D64C83153DF541927A16A6C /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; 3BF0A46C403E493EA8A1C2CCD49A4467 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 3BF39DEAF74C02F0D8A677124D3CA033 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; - 3BF4F6823C3F4AB6F4D376E4BFCFA857 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 3C0E93B13F0399C2CA63A93A6229967E /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 3C1A76D1F95A16DDFD31E78CDE0813A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 3C3430F5A0D8A81F8525A9C95E35EB43 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; 3C45C204ACA134AF52D11B8A41D1B43B /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - 3C6300E881728F8CF35D40641CCBEE3B /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 3C6452F13967E498C581E927CA7720D3 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; 3C67B195860C64A4CC32AB983E044735 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 3C690B73D92E233C3AAA4D4CBB2FF49B /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; 3C730A18F65EBB943DD2FCF35B15CD7A /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; 3C7EB4BDFCD396924476A09480A4AB23 /* MMKVAppExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVAppExtension.debug.xcconfig; sourceTree = ""; }; - 3C8B2FAA47900FBF98B06503FC48884E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 3CA677BF651865EC11C8D20C8EE515DE /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CADEB74AB3984448F4164432656C152 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; @@ -7564,2011 +7557,2038 @@ 3CBE4B35B932B5B32DE48A6B3EAE8C5A /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; 3CD3466D9D3651B36C3E28D89CD26C97 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 3CD7BE93FBD27AE0A01D306CED6B70D6 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 3CDB0A036C878B62CB2C6C33D1E48698 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 3CF2E48F483BC6372E72A622A3F33401 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; - 3D04337651E98287D8F25B9E2B933C41 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 3D1D567D854AE7C6FBEE7784FC2FA2F2 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 3D1F43611A98AD82B4CBB574250B56D5 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; + 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 3D217D6323376C94A847B7E3E0C06B74 /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; + 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; 3D54A3464FC502058D8DAEAB77A89182 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; 3D6234CA033ABFD8DB0D4C4A979F1E9B /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 3D671A8DB96D321151A22C7777886198 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; 3D77FCCC3D68CE58388AE633913FFA2E /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 3D7EF236CE7D5CE2A1C72FF683F2061C /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; - 3D8655ED43A6270E35EA11A8B75E5871 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; 3D8B57121FD848BE72A353E5A4934B38 /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = ""; }; 3D97A62D5F7FFFED570E9717C1B77CA0 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; - 3D9F6AC58CF7A8930A08AA3C2F3EF1B4 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; 3DB80E5B203ED5541F1AE27D3A1D23A2 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; 3DC9980050C1C0795120E178659C52BE /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DD6E5969079ED345439BDF56B78FC83 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 3DEE9AB9AC721D2590B458D6A97C44D8 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 3E2894B758C7B9EAEDCF0E7483C3FEF7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 3E376827002A3EFDF2F7F169CA20C0AF /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; - 3E8B612897576AECEB807CCB36D99CB1 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 3E49EF9E33E2321EBECA937DDBCD35C1 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; 3E8D77C595107F9ADB666FE144CC4495 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; 3E9242EEAF4956D0A3E9005B662766EC /* MMKVLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVLog.h; path = Core/MMKVLog.h; sourceTree = ""; }; + 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; 3EB61D181C72318042B364540B702319 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - 3EC3EAC14693F848200CBE8A3D56E8BB /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; + 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 3ECDD200CF993CB41FDFA3BF409D7DE0 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; + 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; 3EDD75C463805A61CE3A8A8B3F02D62F /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; + 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3EF274C30290A8E7AA8535DB4CC73D04 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 3EF83A7377D693CE9E2B1BBCD4B15792 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; 3EFA24A2B42781B009412AFED35E2FE0 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; + 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; 3F0F60A319F2108039CA8F128E66CBD6 /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; + 3F13EB1F5655AF4A8A32C61FD6D851E8 /* 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; }; + 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; 3F2C303396B0FFDD7D6A3AEC6A490B96 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; + 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; 3F4107EB691C1753CB2A9F8D56920179 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 3F4A63D4185C26E6DA36BBC46F8416A9 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; - 3F52085F214DEABE26AC0C16B9E8846E /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 3F541AD96404B3ED7F6B9922FEC7E1EC /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; 3F56FEFBF48F3D0E555E22F8D5C2AA55 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 3F57F9C17E28EC94693F4AAC962D9CB4 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; 3F6DC6A2F7A5A7A399F24BF1D784F4BE /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; 3F767A46DE9CEBA6202BBE963441F3B7 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; - 3F89A3999443465AEE687F68B81AE431 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 3FA37F565C59CCB9CB2E16012155EF72 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - 3FA481B9ADC7761E5D17F53B727F5616 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; 3FA4F4A0876C0F4828B223294121BEC4 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; + 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 3FAC56C1C627D0D35175C1C8DE550A10 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 3FB19765CA1C2E9E22FA7A7F12B5D186 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; - 3FB40CED4FF6252A0FA720AD3CBF6151 /* 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; }; - 3FD4CC463B932B69492B9B8CA2FDA286 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 3FD75A2D68DEE72F3B6230F56AF69715 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; 3FDB5AC702E5812B74CD37395DA72867 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; - 3FDD7287EC101566D68575F95293482D /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 3FEC4902BF0A2704D790A3260B7E3C2F /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 3FF32756FE29546B636CF6D7509CBA3A /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - 3FFE76169012BDEDDD1847959AADD9A6 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; 404087D898128DB18555B2F000165B9F /* openssl_md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md32_common.h; path = Core/aes/openssl/openssl_md32_common.h; sourceTree = ""; }; 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-mmkv-storage.a"; path = "libreact-native-mmkv-storage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4058209DFF0440C625A956E49C868465 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 405905D8326629E31F5EAFB935A3EF01 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 405A5F68DBF642E8599AC1FF863B1E75 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 405C114DA410609B3B3DFA9B4B7E5D31 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 40875AD0B326AFC7FA447DED64B32BDA /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; + 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; 409A77FBCA194CDF50804A2106A459DB /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; + 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; 40A2A9441C2073C5C62DF14189442683 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; 40BA46164F7B6B7BF35D6C75120060FB /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 40D842DB6A4676722749E9BEF28DF9C2 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 4111E7D34BC0881ECCA3AF8731FB1175 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; 4118C5AECDFC37DB9CD67E44741E5F90 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; 41190A372C1F0B2BB22D5CFEFCD71099 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; 412B38AB8ABA12580A6E2542B6393808 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 4144DFC0E38513E8A0F0651E267AEF63 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; 414709D1E0A881DFA14BF6ACA8171DFD /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 416C0614FA40A2E25E45DB6091546885 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; 416FED6D5C634CCE9FD36AB52F46D134 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; 4183BD06849CA1A16C75157F6A8A7827 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVAppExtension.a; path = libMMKVAppExtension.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 41D4ED8E1F778F8232320E09D85E217E /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 41D82A78FFC03041996177629FFE327E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 41C2E2C1CD378DA7F3D84F4A99A6B16E /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 41DF63D0BEE787859D69E4C80B1A8C0C /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 41E8306CB1F27800347C7C82B616F599 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; 41EA283E65F1C71F711C4134E71A771B /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; - 41F116D846E7F12327A13775643D1337 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 42020D0F7AABDA3F155C2F8E5B8EC948 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; 4208A3511E3AD49A9B859808AC623DAC /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - 420C6C081DF814E29660B6850CE3E819 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 421264897478D2046C35BC7685C02D81 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 4232D2FD77BA802AFEEAB02E4A2EA05C /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; 4233895B66E94BB940774660B1D548A2 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 424E6D77CFA2CCA59312A2F68111BD12 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; - 424F70302F9F47C0194BBB2D77EBF863 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 4259D4B9966E495079C85B5204D7C926 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 4262276E6F7D763EDD664686FFCB8F02 /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; - 4271CB6631869433031EE33331EA0986 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 42898ED8A82E58FEA2C156EDF46E873E /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 42817937F1E875A7A8871155D62D0947 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 4295B57AAE8A51F29CF4FA7D56C33278 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 4298B632D8662ADA04F5546E967DA855 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; 429CF81F3064960AD6BC66B20969F187 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; 42A313947B20CDB26F47B4EC13C31194 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; 42AF36E09DEF089E3AC8A2CF3A8A811B /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; 42B1D14BA71FB1347DB1A28BE8DCBF6F /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; - 42B3FFF4DCAEB5A8E36E27DCC08C6A54 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 42CADC23AE51C0C0973C83B906D51A90 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; 42CDAD17D9AE3F90E1F51B66A1822465 /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; - 42CDF25490573F0F4326626F69CD41C4 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 43077A161AD964BE047EBD2928AA5E45 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 431639D851E7F30F69FFC10118B1A28A /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; 4319295AF4FC4DA2D372A7A2242DBC0B /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; 431D80E032AC703E4C57DD6BACFA373C /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; - 432B63230EC208F5C88679278D14482A /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; - 4338C554EFAE9D867C075E711BBE8E46 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; - 43445AB4ED7D1C215F4680208C9B1E34 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 435279C77066A21BF19D14BA7885DCFF /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; 43861A3E9C38CDB6C58D8536D09FB96B /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; 438BCF03D12826D667D099BABE52E169 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - 43A3789C40165148A9DFAEE2A958441C /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 43B82A8E2CCDE55D7BAECC9C37FF1734 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; + 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 43C6269C3EA36731F03303FD9456F208 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; + 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; 43F78F152FE91303A0E243061A1E2998 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; + 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 44377F6BC1FAF629CE1B8348F488032D /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; - 443B073FAA95C1077E31868F46A6B736 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + 44539B969639A3408C91032DED89095C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 44589B4B1C5771DE5CCCBD34FCD9E7EC /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; 4462CFAAA8C9BBE3C17275FDC4EB45AB /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; 446A7B4CAC5AD80116A78511256976DE /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 44700FC89A7A4C017D46E065805CCBEB /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4481E2199E9285DE68947C78FB832DEF /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; + 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 449F342C2751DCD055BE843E0851F4DB /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; 44C20E449661C3A845F1FF5A829A3E6F /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; 44E626EE32F3CF1BEDA84CBE08DC2091 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; 44F4D9618C4088D58BC5692C82AD25CE /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 45030FE275DEC96B6F65FCD234104CEE /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - 4506792DF6D13BEBCD48163466D7CBF9 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 4513159A26710D3292AE0741631A8AC3 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; + 44FA0CCC87E584A5543A1280B803CA4F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 45285BDC1BE6A2B4446854BEBD3F9B64 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 452E87A8A1899C42EFBEF4E5BF46216A /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 453576AF85EFD854EDB3E3311DC7604D /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; 453CC615D2DAE67A94EDFB31C4B2AD85 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - 453DB2BC6EF01AC50DDD4C1A4994A50F /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; 455647DA819AB2181BB6A6A53BEA523B /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - 455FE0721A514775C6E681F0649586CA /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 45721CC7B42E663FA87CF4AB23686C28 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; - 457F720C9871D282DD682D03062F7880 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 45809FAF67F2952419D4D7F8B3B2E511 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; 4587D2F17BE183AE3AA2838593FCB33F /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 458FAE22CB148A3D52B8570D6075120B /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 45A23E988D94A96CF49665CFDBFE0B28 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; 45A74F59BDD0FE86114178946340A7D9 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; 45B231AEE93B68860961A4A535E629CB /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; 45B590ABBD900CDDF8DE8BB2836E4339 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 45E3E3A4A0F6534DBF4CED91C0272662 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 45F51FDA868E69F187D9FC22232C3AB2 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - 4608AEE64CA507BE240C95A8B2840B8F /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; + 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; + 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; + 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 460A56D8ECBF18816FA81ED31CF827B0 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; - 462203BF26F7FB5BF488F334CA061168 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; 462F24E629C595A36A26BB3523701DED /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; + 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 4655489B1F8508C8D8E42A11861B59C6 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; 465882AA71039061DF7EAF94045B05B5 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 467C50CC3B7F61CC7FAE84F15E130419 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 467975AFD9EDB1602266121543BE4CBF /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; 46C3F960F2F470828033491C1D3D158F /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; 46DCB7305D8602FB7F98C639EA262C75 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - 470EF1B9CCE7AFA44016C5FA4E492987 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; + 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; + 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; 471C8FB7DF0F4F3CFAFB00D4C3C24BD7 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - 47257137896C296152C0B0E53E0A76B2 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; 47399E8B0D6F2C448463580DCD3137AA /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - 473C41D93CC6D1773495862DC826218E /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 475E047424CF03D95443F7AF5920881A /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + 47499BB309F53E2C9508CE83D0567930 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; 479D4739F12395A5D7A99B49ED3351C2 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; - 479FC0A8AB10F8478593B003FEA594D9 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 47A611239770596FBAABEF02CE533C53 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; 47B0637420115E94A5E606433A5CB9A6 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; + 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; 47DA31411E38B59F058F2A72E0D3B893 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; + 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 47EEC04E68C554C648F1C10500C90103 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; 47EF3DE89344103E4EFFB2621B2A847D /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; - 48052199FB109BB2CA9986E3A7E67887 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 4806111C0F5EA9A33CFCBC19A7408D66 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 481CDD302EC82AD0628B97F4D1EDF6B1 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 482963E68B742542703CB33AA739B756 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; - 483913E29C3272A722AD73C970A54390 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; 48410582EC986A3E6F0649D9FE8F9D39 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; + 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.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; }; + 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 484F863453629E403018AB42730698E7 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; 485209EA6D0397BC5BCA057BB7370F2E /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + 4856E4B99BCEC6FFAED5E4BED783FF19 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; 485E3C444F6F2D3117FE1ED31D9B6242 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 4866196335D72DFE1CA40EC5C33D70AB /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - 48675413E5F83ED979FF3B47C9ACB5ED /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; + 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 486C141CD8F90940D6398170558F0B40 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 486F4AA74FF5CFDE0B22AEA2A27428CE /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 48700365D910E7342D98964C607737A0 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; - 48A8DA835765CEA2F3A4A0F2BA3BB2F6 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 48DD544A4A0220121B9CAA704FA49F53 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; + 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; 48E2D5BDDC08A1611AE371598671BB5B /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 48FFFD1657781DE7B48B64CCFE5343EB /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; - 49029CFAADD3D72117A128C4BE298666 /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; - 491B7E66177CD34BC14F006304497FAD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 492F319E5A29E41357C7871ABD3F7AC8 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; + 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; + 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; + 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; 4940DDDF644EF093529DDFB834F409BE /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4960427D2E93A9CA8D0F5EEFE4171793 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; + 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 4970DF907C454800B98BA5A0FA62DF26 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; - 49795A659C3D3330075CBDFE211348CD /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 497B3EE29A71EFB193F3A3E014DA8053 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 49802B6AF77454D25F55FD6EF7221C17 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; 498249EACC04B3EAD707CCB97B1D05D5 /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; + 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 49B2852213173F5CFF711D59E572336C /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; - 49BC5C1725241ECECC272897FCC97DD7 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 49D61B0F77E923C8AD911A206F2F169A /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; 49DBC109B89F7D5A72A4000B12774106 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; - 49F03C11EF98B0586785023E492A678A /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 4A041B18F495C3F549F646CD9AE0E0BB /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; - 4A2AD76B82D22E12FAF2955FC21A38F3 /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; - 4A30E4166BB2230FA571FBF90B707013 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + 4A16DF5A7F78ED5DC9A873E9D0302993 /* 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; }; + 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; 4A3F3D3D3660DF724982F579A18B9D82 /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; + 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; 4A5232C627636ED7608172E5B61E740B /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 4A6A190183BEE368A85FB4BFAEF80435 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 4A82CDB88107436DD2D192B9F33EB9FB /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; 4A95CCF2E6F533CAA1CDFC6D5E9FD390 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 4A9F53A4D7F2FE6DCFCECFCB4FCA2FCE /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; + 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 4AAACEC58ABAB756C14C9B043CF24A0C /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; + 4AAD645A89AA53AA46FF2F2EA406D435 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; 4AAE8646B15DEB7323FBDB87255F1019 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; 4AB02C78C715E4FAAFFA79E3129116C8 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; + 4AB53F9C77EF8C2263666249468A480A /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; 4AB5FC4247F0BB39E819B3CA773180AA /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; 4AC72A1D88D2EF29FF478C63A05978F2 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 4ACB07BA438DD46A63C3C2D5D0D6F55B /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 4AD64825828096788A5172C0A9C52AD2 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; 4ADC1964B240D9CBBF4C261A41861ADA /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; - 4AFC17F5C559815998C0DD2ED630A965 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 4B12E07DB5C7ABC90D9F903C0E42928D /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 4AE9D6CF50E23989C0B2606E12509C7E /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; 4B2FA3F110E2F5285F8EFD3757E2E7F1 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - 4B3F1BE731E11F46959700EBAF6D731F /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 4B53E40ABBBFEB903E35684CAD1B0D67 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 4B682F2098BA0DA46F5BF88BC2C537A1 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 4B7875F27F127CF8396F2E6645C875E5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 4B78FF6506357498CC492CA458DCCA57 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 4B861A2A0BFBEFE7356A8262D7952623 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; 4B9FD8B9EFE1CC37430E650C6D194813 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - 4BA6EBF5F20BB2BE9F96D3806F97F3BF /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 4BCDF8118425C116E712ACAA617DE01C /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4BF09CDE71F1FF8C5D5DD40D1CE53E0C /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - 4BF92E21B7778DAE98C6CE57778B3314 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 4C1610C23AAD55677A6E6C77D91EECF8 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; 4C1FD842D301365DD7B5A66F61D69513 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; + 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 4C2D97964960BE1EB78FEB26FFB22972 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; - 4C355FD727AD8B25275A4D0ECB54A60C /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4C3923D1BC230914D29030F45F767C34 /* 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; }; - 4C4DEAC15E360E994008B58DBE5A3371 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; - 4C5708E49749212F8563EF422B97DA0E /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 4C5BC8126FADA854265387D3DD55D91F /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; 4C8C64BF31A681D4543C73482131964B /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; 4C9501DFA8FCAB26095C27C948853084 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 4C9D8E41C9347F5B9DF6F6B812193B39 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 4CC219A7CA19102C8A93B83DC75B8F42 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; - 4CD4FEA2EC50EDDBC720C06975C92FFE /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 4CDB9425EF8E65082AEB3B13FB362BCD /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 4CEDFB8123EB6971DBDD6FB633B151B0 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; - 4CF220E1D8A9988FAAB4F481EFFB4B45 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 4CF414035C434D8AD1F8AFB3E6EB47BC /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 4D00D2DFA3CDC20D63939FD5E53A919C /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 4D0594E68D945E7A8AFE9B4364FC05E7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 4D0ADF9D9CD9EC9CDBA609B43FBB4F9F /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 4D139BC9E108DE20DF1A0C52DE7188BA /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 4D34A9DCDE2F562665FE562C08C0FA4B /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; - 4D4D2FCCB5279DBDC4DFB5C5EFB354AD /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; 4D592DC0D8F76DE84571E878CA12A13D /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; 4D60C99B1B4C99EB0D05E65A41B11DBD /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; 4D61674381C4C65445B8F2A346E6D32F /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 4D6FC01B76455ECC5817D1AA6E0A046F /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 4D89C1DF8B188C624C01E6F765C88C23 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 4D910A03E2BD03EAE274F7C05E50F5A5 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 4D99BA9B27AB22CAB03D1EFE09E33E0E /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 4D9B5E822DFD353429E2CCC69F4124F3 /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = ""; }; 4D9F3BB9AA002ADE44729B78D65ABB82 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; - 4DBA0F44A7FB7C0CB468984DF19119B1 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 4DC5995E8AD9B68CB591E4AFCA27351B /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - 4DC6477168966C2DF86B0B2BF5375B6A /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 4DCB530F37CDD6129D7DC4E184037CCF /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 4DD1EDBFB319C1E306DCA5C5300748C5 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; - 4DD31703AF83035CD66F6AAABB86F823 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 4DDBECF15C17BE448A73D31A46C107F7 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 4DCE9007D77EB18D5FAB788689DE140A /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 4DE4E309CA0BC85CD4E6A063E9780708 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 4DED4D23B0669071B283468905049422 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 4E1C6976BE3E1CA3B110921CEF5DA72D /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; + 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; 4E22E2AED665251378C43B45AE08032E /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; 4E39F7CE4B77FAE97B47107518D3F547 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; - 4E4123590FC530BF1BD285D9CC3CE36F /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 4E55597204DD8C0034E6D87BF0396554 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4E69C91826A40B89D6913BF2F2196D84 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 4E8ACADC22ADA1A0B588A0E77C0F87D7 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 4E539C386CF7E1BFC17E306D127E55E8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 4E8B2D26280BC86F63522EC0DBB03402 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 4EADDB39BC2F7D6BB1A80CEFD58B09D5 /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; - 4EB1A4DA9BDF28C66925E12EDF27F78F /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - 4EB22447DEC2C63182FE809DBA4F07E4 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 4EBA92B532BE23DFCB3F304972B74DEB /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; - 4EC113C0EF7B82E21A0472CC6E26E39E /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; + 4EBDDC34DD5EA2B46AFD7CF6924496D1 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 4ED0B1D843E6B1401918FC160A37D0BB /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; 4ED27D63CA277829D5E58F99430AD316 /* FIRCLSURLSessionTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask_PrivateMethods.h; sourceTree = ""; }; 4ED97801AF64B223BBECA86F35A42827 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 4F1EB129ED99747100EB71F7D8923F08 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; 4F2055BDB57180E82727365BDBEA6CBB /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; + 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 4F46D2C4EA18AD659465E7C64770227C /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 4F4EEBC511FA31D0639827125E9729E6 /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; - 4F50078E62434E4DA8C72D9225A9E228 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; 4F505FB26EAE16EA0A8AC26397048EB3 /* openssl_md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5.h; path = Core/aes/openssl/openssl_md5.h; sourceTree = ""; }; + 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 4F806D732ECB4440DCAC96A045EE05C2 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; 4F80DD90C6A1DA871F6F33CBFFF8BC2F /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; 4F82EAFB74F63EB62458ADB027AEFC7F /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; 4F87D1A058F174B42F92C136D26FCC41 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + 4FC5FD206FDA8596406D871F557C3CC8 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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; }; 4FDD2B0099449721B413A98305EC1602 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; - 4FE494FF00EF884BDA414D2C2CACB29D /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 4FFC77F4A5A209D32104BFFA64ECA5D1 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; 5038C337F9F4692F1393891BFBA14580 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 5064FC9D762EC64CC35AEA5F824F6B06 /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; + 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; 506901FC236A1E68773A2C4EE47C2941 /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; - 506DF3D395925462A6CB31F10E0D4ABF /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 506F061F7EBB50BA4B72D1A358EFE177 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 506FCC70C04FCDAF0FFEBB0EA7B20F57 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 508445BC9C1FB138C10A18EB86527087 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 5084940063354722127AA25C453D6FF3 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 50ABED557B2727B15D5F04BF4D42865C /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; + 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; 50D1012FBF01F82968D1B23DE7B2AA62 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; 50E99880D429EB1D95CA9C9481A7723A /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; 50FC14BC25E0E93C7E481559276BB9A3 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 510E3B9E9D879159DB412367A37476E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 511E466B8255B2411184CCE113C7F953 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - 512C1BF7AD4A3E8967C60FAF86AF9838 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 5136063FC836B31BA8064BD8AEC7C845 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 511FB5C01E05C9515B9DE2BE7DBCF5E6 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 5145977F0E57DB5CB2A88B1FFAD79FB9 /* CodedInputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputData.cpp; path = Core/CodedInputData.cpp; sourceTree = ""; }; 514821ADBB2F303EDBB9D58B2B41EE75 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 514C8672C2545CF1A75541F6EC6423B4 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 5170F815269BA25F87E628B2FA0C6F18 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; - 518BA055FC9DE3C34EFB047C599F309C /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; - 51908AD46D835320AABC9C81D96F687A /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; 51A15AC41CA6565459F389839B62A39A /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51CE4860C45A1EECB6A574CBAC419AF7 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; 51E64B2B3D62A2355AED489906EE2961 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; 5203742332341C0090DE075D3F7A6699 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 521178A93A26A6919A1D013F742A4415 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - 5225BF2A7F7B61EF9A2558B51FA60513 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 5233738FC62A3A8BE45195C8268F1771 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; 524155739FC18AF285E601C5421DF51D /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; - 52556F603C304852E2A3E72D9840AD74 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 5262A96869073E1B25783F9E6FCE1685 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 526AE4F7621EF6AA86F6624CD97483D0 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; 526BA19EC83345B82436604077420426 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 527C827169FB7528B82A4F64E94F6B6A /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; - 52921158AA1E041CFD10AD48858BC565 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 52A6FCBE370D580A0D0FAF2F6EAB917F /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - 52AADD7F3AB596E615B73E00DA880A3A /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 52B0111728A81A7F015E84FA28C08909 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; - 52B5B6F34145D2493FB62BB2FA27DFDE /* 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; }; 52B9A4F94F136CF7E36F8C113BC2A8F2 /* FIRCLSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionConfiguration.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.m; sourceTree = ""; }; + 52CB8EBF34160CEFC2CB2675D6FB6492 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; 52DE54239AB0D7C69BE7689F26E4FFA0 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 52F5D2B9D9020F8F195D9275074CA98D /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; - 52F5DF750D883B7546CF61B65C4BD98E /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 530172C0FFEFF59AFE590ED116E9D897 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 53133026034A1AB4969D0C355D691458 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 53189377CC587CA423403F74E0A8613D /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 531D2B71FA6B7E9275671F117385490B /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; 5330812D0A621BACD7B7D952A9E42A82 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 5331DA9B969A270E440309EDD679944A /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 5332510E48716BCC1053DA998FCBB751 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; 533287C913A304B3274CA5BF049ACD95 /* openssl_aes-armv4.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aes-armv4.S"; path = "Core/aes/openssl/openssl_aes-armv4.S"; sourceTree = ""; }; 5336EF9ED47680F00F818CD94A8C5461 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 5342D7D17B1B53BBD355BC0198B57E68 /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; + 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; 5343C119674227B662AD65232D789027 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; + 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; 534D29CE3C9383C583A3057269CB9F1F /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; 535B743A191F399420E426D8B0102A3D /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; 53603E349ED12173875E797E6F2F58C8 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 536768DAFD91F3C9D31A0F9259BF0826 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; 53802D932EE90CEEEEC3100997F04314 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 53A133D9B8E269670A35C24D3EA264CF /* 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; }; - 53AEED9E88B798B448A12CE9F987C568 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 53B1A1306C64D608EB4C738C6388502F /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; + 53F35907FAA3E87EC41A5869F4B00646 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; 541001CDA928E0618A23816C3D812E19 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; 542587AD8D684CE26F95275D3D6DCCCF /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - 543160FE64728D2CC3B8F488E94228FF /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; - 5437A481FE459083C85E5B56C9B64AFB /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 54418F66A8596E74D65814550846C0C0 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 54464AF9EE1A9304D6B960FE9DF1EB79 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 5447E2B09AD3989C8117F03B66368A75 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 5448220EA7FC470AE752F236EE90E40D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 544E1C89B5009A76214C371D6EB4772C /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; 5490400C4A176BF4168D0F1F26459996 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; + 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; 54D41B96EE4B65363EC4BA183A382418 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - 54F7234D7E8D508D4611CF40AB3D7F25 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; 550DDE9B1D1807636182189F5EA16B4E /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; 551CB042CE6C647799E32E8656CAFF10 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 554064B418906E5291EDAADD86DE209A /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - 55604CDE98DBB0C6FE8F4E5AD7A94E98 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 556BFA2EC56CA0C1FC63839589D38A7E /* MMKV_IO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_IO.h; path = Core/MMKV_IO.h; sourceTree = ""; }; - 557AB26BF7FC1B2780D2CC3C15CFB7F2 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; - 557F17AC0F84D455AD2593C1E72F528C /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5591E6B7FACFC8679C48A0C91F2537D5 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; 55A1DBC2A01AB6C06BE89546618B8587 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 55B865411C4B8E5C6B861F6963CF6C7B /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 55BD7B35C0C6FCEDC6AA8FB0F8614304 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 55BF2C412969FA684CFFF0C788DBF0FE /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; 55C148DD9C760727E79E0E7E047ECBAB /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; 55C8E8C591C46A9D06F786270C1060D5 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; 55C9337079C479AAA349F5708DD01725 /* openssl_aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes.h; path = Core/aes/openssl/openssl_aes.h; sourceTree = ""; }; + 55D10A0B7C4CD81504231DEC178F3312 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 55E479C3D615B6CF1D28016626DAEFAF /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; 55EC19563235B84E3C16129902421BC6 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; 55FD0B27006A8D0CA898A67F3118A13A /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; 560348BE2BA7FE148BB7A43B4B1FBE2E /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - 56038ADDEA7D61887F3E38F732A0E15E /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; - 560B5DF42CBDBD47BA0CDFCE162BB17B /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-NotificationService.a"; path = "libPods-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 56461E06661E0F052AB26B2AB7499CEE /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; 564CA8699EEB111B2ED88494E0150D5F /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; 565351C7D9EC3CA46AEF022A4814280E /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = ""; }; + 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 56654F409553C3328B0163C2CCE56603 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; 566D950549D6BD2E8E75319C81486A88 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 567EB2683F79F5C1754B22B0EA5101DC /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; 567F2C0D0A1DAE9A369027A7A121B6E5 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; + 568155784873CBBA8CE28A9D27D4077F /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5689DBABB6F7C93E584F9F5AEEC5068E /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 568DCAB4405DB14F4D48C8583397499E /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; 5691846E62D41417D7ECC5B8CEA51CAA /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; 56A05E6E745281FC8E38CEF381D72BA5 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; 56B9C9D1B578DEE39C27584AC980B45C /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; - 56E7875761A309B620F0C786777863CF /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 56EE8BD9D121CD7DCB1FF164E88971D6 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 56F1392380780E408157162DF512F677 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 5701382D9A8846ABC000551AD5031595 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 57042D1B513B28351EFC2CBE1C8F6841 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 571019617498472A2AE1884EAA39B0DF /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 5710F0EC3562FB8BAC784F3F73462BD2 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5747F11F935B0F7BFFF54F3F89C667EC /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; - 5748AC6F062D48CD3496F6655A162ABE /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5765AAB98C6396F70703386F034304A8 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 57682730C5EEF91CD96A67BBDDCDEA8A /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; 576DC4F828CB1BD80A51684E1474B47A /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; + 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 577C1C8DC38F16DD4F965E1B128C0CE4 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 5785C1E2790EDD34B14952BC5F668B16 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; 57ACC4A2EB1803461192E7AF83BB585C /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 57C1B0F82FFE9634396424B1D8AFBD0E /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 57C1FF508577ADE93AF35B4186F9F660 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; 57E672092DD39DA8E468857221841AB5 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; 57EA5080E0100BD28FB9E83EF1DBB2EB /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - 57EDB6FD342F2C956D1ACBEC796930AA /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 57F94E78779960579BA8E3D95887285D /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 57FCC889D05598718E2D52E33E1FBEB8 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - 5813ADBAA0C15D71832FB96884529B48 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 5813BF3A80226B687E4D4AC417F962E8 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 581A57A5C014FB5079350A89F7FCFF0A /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 58358AF138411BD81E287BC141376FE9 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 5824C874CD967A5B1C78DA4C750E2D41 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; 583F7F082C7E9067D1A86DCCD4C42980 /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; + 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 586ACCB789EB27261770E79DEEADE202 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; - 586F14AFA04E344880F54BD25872AF92 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 586FFADA846B4528EB8C44A427BFFDE4 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; - 58703E196236054882BB78506DE68BA3 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; + 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; 5893C1031EF50C30EDF56EA0B4249FDB /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; - 589A44D834F812143711213E0E2FBDF5 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; - 58A7D2A505C738B2644E5CBB8B43B159 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 58BE37D0CFA670B165C00D3DEFD85E65 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; 58BFCA34CE520AE47C12AB8FE5E89E18 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; + 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 58F222E7537A0134B613713ACF0E5447 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; 58F45912CD5BB643A8BF9E1502089FF5 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; 5908855AE8F1A6DA636E4A44861817A7 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; 591C4155DA9D655F91FBCA3318F9E178 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; + 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; + 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 591D5CE70F0224E56390E436F0C0F733 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; - 591EB1308889D486345A46D358670D70 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 5953481880AC05A5A0256CD16F6B6C80 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; 595A94AF4B94EB0044011648ED952300 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; 5974D8F45A5814D581CBC194E78D1FBB /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 598D73B27453B8143FD429705BFA0948 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 59A33289C1C941EA60F877180CCF636B /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; - 59B3B1EC90186B5AC5358F582FB40FDB /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 59D2AD844A9F003BAA74DF898A3825C7 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - 59E3E97A18E1377F38EDD619109F1446 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 59F68D916F77D550FA740E5871A2C700 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; - 5A15611B72EDCF7261B4DD9701CCA4C0 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 5A2D9D96E2554D5E6D72A75D0E694419 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 5A2C14A8D023869B15AE3C8A886173EC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 5A32E7EA27BFF86EC84B8888A3DE0290 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; 5A336F63F5C60A88C645CAD3FEA23CEE /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; 5A34DE3E221842CC83469D3E228715AE /* InterProcessLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock.cpp; path = Core/InterProcessLock.cpp; sourceTree = ""; }; - 5A7BD13E3626B368D600C550A048FF4F /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 5A7F69942D29F7B96C7A01501E594784 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; 5A88740BFEF9E93420EA41D40E2785CE /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; - 5A8A7A840DF2299EAB32476327A690FA /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - 5A93CBC6237D460CD3B25CF466DD5A78 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 5AA5C427DBA63F6B091639D34F64E46C /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 5AC8611EA20C4E9E9125A4EB162777B5 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - 5ADF26B88AB64806E1798B085254B958 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; - 5ADF6BB4D04AF57DBA445CF07AED2ECD /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 5AE76409F8E09674460079D1762B5D5F /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; + 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; 5B0A69416E97C57EA05236CFC7270896 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; 5B0F4BF42A2AC476866DA8552C7F5588 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; 5B24135BF3E27AD67AD78E014B6DF9F5 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; 5B31C00F86A06EFB0136A743BAB25CED /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B82D463BD29B4C6AB3DCEDA8619034D /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; 5BA67FB4B490864158D645577BB7D080 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; + 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 5BBB53EC3DB6AA6AA25C9D3D328E9200 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; 5BCBA3305D0C7ACCE77288EE92A0701B /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 5BD7A2BB0C37D8E61CA16850DBDED244 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; 5C375199C5FB66581663FA8CB016F62D /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; 5C4F7A26EFA8C7A068F457F025BF1CB7 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; - 5C637B6A50FC1BD8E160F8DAC7E0E003 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 5C64C15D6BC79FCF5CCD31A1C9B16810 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; 5C8C278630EACD4C65DF9089CB815DE8 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 5CA20EC06BDF84FDD22DE7DD7A603327 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; + 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; 5CDC547FF7A95A71C57CF1992E1C59D3 /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = ""; }; 5CE5C5C34D7AC5559328A2A311322501 /* 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 = ""; }; + 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; 5D068D916BBBB1CF821F31827B18FADB /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 5D1026A08112DAC42F5B576E16FCA06D /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - 5D140B32A433A03997642E0B4B840755 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; + 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; 5D462EB7698BAB22FC3D470A86C03554 /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; 5D47D1761FDDD109DF7A044A48F90918 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; 5D47E74EDA59580CDDFB291043FB6694 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; 5D5D2817A32EBC04C23F895A96070206 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 5D80AE373FC2798EA3AE13E79AEDFCDB /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 5D8C3E4A4D49DA6642E5FCCDB0A4700C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 5D929FE4CABA939AC717AD6BC099A274 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 5D7E1A1A103C6C31878F10EE018CA0C5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; + 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 5D9451B5759186B2FEFC890E00B66CF3 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; + 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 5DA94A4C46543CA8BF8CAB0E4C79E992 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 5DAD1FF108FAF1CF115C98B196C0FE41 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 5E002C0B8E7AD5C6BAD20356C5EA0372 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5E115E2FCA663E2E4FF3E0D84490191E /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; + 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E4F446132D23565B4DDE72642E68872 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 5E5C64C703102920ABDE4AB698FD1256 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 5E710D1100A122DC52143D5CF9C532F6 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; - 5E882BAB378B024AC3C1C2524F2DDBD9 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; 5E8F9DFC3E9F233FD5B82DA468FFE387 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 5EA1D5A4634AEB461BF24C75CBC1E12B /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5EA6F0E87B63E1232C20D9483BE5FF54 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; 5EA700B9347F08F911F2287AF43DF8DD /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; - 5EA80EF50FC0AC436071C8C39F35C4E6 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; 5EA8164CADC66E4133EA05AA9B8B8B20 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; 5EFCBD3C5BCD71E59B7DF221F564EFC0 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; 5F1031B9505164B107149851320633DC /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; - 5F114128E907A0B271B9E581B7429DE9 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; 5F1EA239387237E65FDFB1FF1D516105 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; + 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 5F62545782D513B0570CC4018A2E037F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - 5F91A8AA68C3D8EC78DEF9F7CFE4653D /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 5FA3D34D75050A897AA0C2AACFA3144C /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; + 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; + 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; + 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; 5FA48097A60E3C79497DF00BF16B6F8B /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; + 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 5FB800B2BD33B6A01010A0575B6294D2 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - 5FC4454EFBF16CBF99EB76DBADF5AC6F /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 5FCC21E33BB4030AF367ED7F1448D5FB /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 5FDE972D4AD9AF52016E548F83A398A9 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; 5FF53F120C9636363D6E1DF805BA4847 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; - 60096D9651F5AD11DDC2E5CBAA617416 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; + 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; 6021E553B770F82E73B0C63684662267 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; - 6029EF04764BBAF67A5F5023B7E71C44 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; + 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; 603F3515483F15AD3C050F7F0B253AFD /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; 6040AA3445538DCFB1FE879336BF1102 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 6057CB753D22B49D3B6D49899E4819EF /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; - 606F1F8206FA2631EC8472ECA0D452D9 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; 6089DEF6A522BD0393817AE2C87A3376 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; 6091F121AFA5D2D5CD9411F3E6D01B95 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 60A921CF66497392C9B959725B563EC9 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; 60A9F34009B96F3FB55068354EC32B6D /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; 60AE6989A5796CB59E49FB60BA6975D2 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 60B6275CE5F7D80B0C80254CA5F105D4 /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; - 60CAB32A34B8454CE801473BB49046D2 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 60CEB4A382BD7439F09781B449EC63F2 /* MiniPBCoder_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MiniPBCoder_OSX.cpp; path = Core/MiniPBCoder_OSX.cpp; sourceTree = ""; }; - 60D6E618995733345A1FD4755B63FC2D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6104E11717EFC5656AED600419E5F087 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 60DCE50527BD6D2744ED2908D45D957B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; 6109E1F1875E47099A00E210146E5DD2 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; - 6119BA2FD711FFDFE0A1E52C6BC3CCA1 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 612AECA7913B21FCE0440247FEC8D3EB /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; + 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; + 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 614819B2D574266BADC22FC38FE98BCE /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; 614DB9EE5C02F76486B1E159C320BE2A /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; + 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 616723362C3DB79DB2DA7B7FA93E8404 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; + 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 61762F11F9DF31EAB9C7312E6B679C47 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; 61876661DE00A6E1CCFEF073CF75F138 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; + 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; 61A600074F1E287BBAFACAAB9EB3FCA5 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 61AA4648EA2C60E5B8702693A9423CD1 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; - 61B8A673737EDD2159635330A16A0EE5 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = ""; }; + 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; 61C875414226907EB3B46857E800FF1E /* CodedInputData_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputData_OSX.cpp; path = Core/CodedInputData_OSX.cpp; sourceTree = ""; }; 61C940B8E70B47D19346B71BC35441D0 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 61D49DF49E3B767A7A2FA0FF79EF6A73 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; 61D4B512312F11187441E3F4D2B4857A /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; - 61E3195F7C25FD9632FC9F74617CC280 /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; - 61FB853950F213BE1994835AC2526789 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; 6219D0009BCF31A711488F8CDC5076D0 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 62276A24A9F41501ABB0D00ED197588A /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; - 6231FD550B250E6CE2EB0C7B3ECDA2AC /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 6238E85A660C449FE52C3E60FE0505D1 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 6259AF9D0A2989D383A979E63518BA11 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; - 62660F1DD07C198ED0D6E7A6C45D57C2 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 626CC6EC015D37301F18521C042995CD /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; - 6281BD8A8FC2E45A2696D73E4BD359AB /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6230D56843EEEDD6911A8EA529A78DF9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 62745929D97AF49C979E30DA0E40E56F /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6284A02AF8BD292CBD1C1D1C5702C4E5 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 628B91F5952637F53226870B395B7975 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 629066CB3AFE43DCAE1D0D6F1F500BE6 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; + 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 62D3A4F9F0F687E5C2C9460D77238CF4 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; - 62D7CDB907FAA70C5E5D76AFD49DF8E7 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 62D8F7CE9484A6D1A6D41237B9943D40 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 62E045829C1BE20F83C7B787A38B5F33 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 62E4F52BC4ABF08F5B536A77DF830CB1 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 62E90BFD41A96959799C69CEA9F27A13 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; + 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; 62FF8DB2CA6E62BC91939C2346AD6B3E /* FIRCLSURLSessionDownloadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.h; sourceTree = ""; }; 6304289097410B42387B3F2622F04C0A /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 63326DF86E22B325A5B08C049B95D1EE /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; 633565FF07E1EA2F970452302215455D /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; 635272A78BA73A420852C116143B0EAE /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; 6368CF85B3E4010BE953086B81C23FC6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; + 636D45E785CA25BC4B4D6972DA3F1758 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; 6373E4A04BEC6CBA035060CA99F0CC11 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; 637BB8714C78B885B4751C684DD857C9 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 637D8D1046415EBB7A82B18D024458D0 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; 639135DC52CE870C6E44464E7B08EE77 /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - 63980E49F92190E5FC36DABD9FB0F023 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; 63C5163727A4A172C8A5BC1F4E73A4DD /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 63C7EF17E92FE2D4B046659B2C319AE8 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; 63D24CB1447F4332B0BD656806045F5A /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; 63EAE19ECA487B6B1CBDA895867FE21F /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; 63F5F11A6995E23FA806F847374AF55B /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 640F5F3B13DBDF8DC19FBAA7E7C062A2 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; 642508DC22DE2C9EEA86FE4D8EE7D2E5 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; - 6426F1889A9791E3CE94D83466BD1B69 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; + 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 642F60369A61D9E2F3CE29EB3D3A6566 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; + 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 64459AA4D1DF8BDFD3F3A69BAE30D27F /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; 6445EA0045D686A18AE86087E3588140 /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = ""; }; - 64A7E842B16DF838DCBAFC29B45607AB /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; + 64943AE33232EE083680F7A06B4520AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 64B2E21284F96DC922A617C4E62DA34C /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 64BFF90718D392E1110A4D7D3C7C95DF /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; - 64D0AC5AD2DA4070D34ABFB08CDE01B0 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 64D48BF2C1C949D940E05FAA654BB4B6 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 64ED78E8A26C2BEA397E9514E783E94C /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 64F79130284FFE31CC621C77B5F336F6 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; 64F86ABAB87C308982C8C8ECB369E1E3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 6504583D3024841C61E23BDA84AB9350 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; 6505F6C062E4A5D1040FEDB7153756C1 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; 650839B18ADB322F125B475EB54E4FD0 /* 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 = ""; }; + 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 65140110B413F1F23561D57B4FAB24F0 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 652F3A596F67FFC587579C04CAC911CA /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6549E342A6172E43AD498F2E37383650 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; 654A23D2C1C8537C84CAD0D175556716 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; - 656DFD80961E896C650124823645B1F3 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - 657B612EFA1F6B2A39F2EB10C3373613 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; - 657B6B2F34BDF60C841519231966EDBB /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; 658F106F5EE323F0D8613DF1D358CB7F /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; 659F71FBC500FC8143B83A886FF525AD /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 65A416E98CE08276C9891C6E88EFD5AE /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; + 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; 65CE076EC76385AA678905F342C2BE03 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; - 65CEB9EE157DB644008298F667A18767 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65D3432402A4ED51AEA5007E42107E02 /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; - 65F49B2C0DCD73D303980DB2C3C41BBB /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - 65FA32D12690DBE4244CBEF4FC560664 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; + 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; + 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; 66092E3A89FCDAA9CC2FFD9ECDFF4E28 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; - 661028630A68D382124ABDF8AF9A8FD6 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; 661DD4092B863C163DDA6B5A061ECF21 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; 662665FE9F09E2A8AB99BADB2B35EF08 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 662B84B153AAE768AE6BB2B488403157 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 6656F58967C010370695EDFC5C939AFA /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; + 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 667F0DDA57E645FF1582C17C842878BE /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; 6683C86DA58980A55D1577C5A8791350 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; - 6692B8FD79F9BD5FF6D035B9D224E594 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 66A1B5C9B5A580EEC6213EF295CBBE5A /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 66B41B6896BBE870A2C8D111635F45BE /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; 66BF14000F3A0E5D1CF940707334EE3D /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - 6713D84483B575462EEFFEF7E3AA2820 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; - 671699EF7F9403ACBBC723CCAB1F01AB /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; + 672FB528F5AD5313A27A93E44D7275C1 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; 674DC30FAC6A728796E8E311ADBD20CB /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; + 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 6760358F1BD3FC8F858FDB499C36A5AB /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; 6761EE751437179A29FF8AFE464AF759 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 67879F515FC19F59D69857C6EFFAE1B3 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 6776B518AE3CBCB9932E94BB1A5F1DAB /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 678ED3E1F085D3666FF228FD63BD2F48 /* FIRCLSURLSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionConfiguration.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.h; sourceTree = ""; }; - 679EE78CE2218A00785083968D3493FC /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; 67BF88A6307856EAAFEE39B3AC5A73BC /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; + 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; 67F0D75FA6FCBB0C44DB4773B08C38D2 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 67F9576D5F082D40B434E83008BF800F /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 680D00642C08BAD957E2B21EC098FBDF /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - 685324F0C256DDFA8F8CD68DA624F92D /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; + 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; 687496EEE6014D805ED9D32E7E1C0943 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; 687A0DD40562984D7463CAA78EC43E80 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; - 688D960074D7FDD96EB555A71DB044A7 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; - 688DBF90F448D67995DF1023D9427E06 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 68A5FF9B15BE42BF711F3373C2C7005E /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; 68A6E82644D6D2487795445909B5948A /* 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 = ""; }; 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; 68D4DF3318AE6B2A8A4486FB97A71F75 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 68ED9870EF85FA63A104408FEDAB3A70 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; 690512D5B3049B47B2D6F5D44044199F /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = ""; }; 690F5784C704DF287B139A9D7C750AAF /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; 692C68C4459502808EC208154C07B8A5 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; 6931A5E79688F5E3798C562A3BD97709 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 695B288BD0BEA5E6B089640AB5DB98C2 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 696159D6CC4669CD010CD022345B21F8 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; - 696AF49D8FA3B331D645CC3AD0EA0E37 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 6974B2DFE54AE54F6291176E818650FA /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 69AC2D0EC742977F2556217C1F9D9682 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; + 69B026798EE5691465D083B5DEB9822C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 69B8FEA92ED39FD4AA68B5B1591151B1 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; + 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 69E34D6C25ADA1C118057E1787651A66 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 69F2C9ECEFB9B5003CF764D8A13AE79F /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; - 69F41E065574B68F3DF23FF10964A45C /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; 6A0BE58E58F10D9043E9517CA36EE7B0 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 6A29C604A57BD42B8900C43C824826EF /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 6A4A29B3270D512E1CE14CC308046DFE /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 6A507C0CAFFA75505C7E301739281A59 /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; 6A5A3EC7FB31A95B5849F67973BBE458 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; 6A5C6E09A8E3297C23D5578BD608C9FD /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 6A5F3BDA5E155FBAF3D85E3E5158B4C9 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; 6A6BC9F12658302F121B6F2020AE8C54 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; - 6A6CB1ACFD815D1A962850EFA68A5267 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 6A7F9D1A896005B07AE306D1E3B8FE24 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 6A8ED40A291A6AE124B7B9D6D6C53D18 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 6AA5867FE895A65536F3F6148AA6BAE4 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 6AAF491696AA6BD70BDBE52FF3B63503 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; 6AC3CCDF257694E48C3C9D1F69E2775C /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; 6B085D1FB16245A0F198DB2406EB08DA /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; 6B0B134EB010CB93640619051AD559EA /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; - 6B26EB9C31336D94C378B02A673B0B72 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; 6B34CF81E97EE6356F87B13D2F7D9C67 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 6B4457BBEE1B2C2D1D9285171529B43F /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; 6B532D3A71FE4CCB1130CF0B704D9A0D /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; + 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; 6B8FDEC15882BDE790AF498EFE474716 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 6B9B9C991B6C06853B8C573A449F3D36 /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; 6B9E7BDB4580E6F119D6963E3658182E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 6BDE81089D767A4D2FF02DA2519FB7AF /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6C1C57C3D02AFF465CD48B79CF588ECD /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 6C6488B2D2AFBC4384652C40B9A5B63B /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 6C8FB4B298F4E4B9770BEF6BD042EE04 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 6CA872FA3C28D2567D18F599B2E803C4 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; + 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6CC7B99C885158580AED5D67E7775727 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - 6CE83BAA13012CA7A2E06E5EBA69338B /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 6CFBF16997CAB2F677E714F1C5AC2884 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - 6D16F5B4C4DEA22DFE73B1421CB0C3E7 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 6D1DEDADF65CC4C395C2BFF7C8000F5B /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 6D23AD3DCEE35A3E5AF54D2BF5E009D1 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 6D326D6854826E51E3B60CC4C38C3D10 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; 6D44648BC266F8BA11F0D943B8DD5672 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 6D45C9B339C3901B3AA0E27B74381F0C /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 6D52261B21B4B2B17750F2AA5645AEA7 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; + 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; 6D64AD85EBBE2207BCFC09A8B336B7FE /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; - 6D910FDBCBA0953E7787AE9BA1ECE110 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - 6D915D485381EED95275C38EA9CF0C01 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 6D84F38E5C54AFE11D41E2D745A1B65B /* 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; }; + 6DA747F672C6DA97EE0D9CDDE2852993 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; + 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 6DAB733604A3A1625FCA47DDFD1AF471 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; 6DBB46C4A608B5F4778C605300D7D817 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 6DC8F9EF582F373968C2AB74A0F7189D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; 6DCF7925DA44E6B3EC578DC49BBC4C3E /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; - 6DDE655359A15D05BE109AF8F6600227 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 6E100A4757E47255D6BD074E6D4DAB18 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 6DFDF2EB4D321BF1974B4996B4D1A3F6 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; 6E2449633F1E0C2F5C501E47997BFF00 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 6E4C2D4833B6422C913419373FFC9CF1 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; + 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 6E594EEC19882003326320AA9B66CA32 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; - 6E86A43107B6C90CDFCB4201487DE0D8 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 6E8B8D3EE9FEF770EA3E9B53FCA5A4B4 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; 6E9904691569AF1FB8D6897AE9E4FCDA /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; 6EB73B975BC128BF092B73F3434D9BD8 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; 6EBBDCC72A0C6FA1D97D7635369DF9B4 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; - 6EC151FD8EFC96F9EE0286604A838191 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 6F0236CCADA4FF86302D88CA23FEE55A /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 6F156B2599F5935F219BEF7CB50F9C5B /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; 6F351E2BA4429656767AF3FA39D69E68 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; + 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; 6F43241BC00005D58AABA0BD122B8BAB /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 6F611A459B23C2FBCA166A2F8DEB34A5 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - 6F7EA5D29828AF9139880A6C47F4782C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 6F9B0246F602E0AB9F6C3B2246998377 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; - 6F9F5BC74CAE7ED926C9A1221129CA37 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 6FB1EF6C30200767A22935984B6A8E04 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - 6FB5F8CFF4168E5E659411A52894D5D0 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; 6FE4E579107908C71B9FF111623B4B70 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; 6FF4907F0B1E21B74D2FBCBA5A4FBDB7 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 701FA21003D5AFD9D9E56FEE8925AA7A /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; 7029FAD1B4E7B93A288461D93ECA3EA6 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; - 702D9073C61160F0897DEDA40D8F41C8 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 703311EF445FFC66F07CFCAD563D418A /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; 704D92845A4F1BF56275B4F99E32467C /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; - 705061F251640523DFDF6B7F22ABE98A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 7056144BCE38F9B4F595EB0A03FB4227 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; 707A486419CB0C06F413C938309E1ACD /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; - 708361AD98622C496D934609AAD7DECE /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; 70842C9DE36B9595408A0070537B0B4D /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; 709326B45A597DA29C6B1F39E4CE506F /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = ""; }; 7095C3CCC82012A0435F91A76575C28A /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; 7098517F01DF39E78F5625884B61FFD1 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - 70BFB8CE2985921B4231D11015731350 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 70DD0ED2791FDDA1EA8F2C0553EE951B /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - 70DF282B72D68E188FAA47721B65A0F4 /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; + 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 7105826A2FC29395592A32C5E98A439C /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; + 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; 7122BF2BD7C5191C0D0DF2FB528A1061 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - 7130D3DD21E3A2FC8FBD3E7F72549B6C /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; - 71378FC31CB3A783DEA54030CD8E8714 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; - 71470F0BAA472F5B0C82152E311DD6A1 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 71634BE8362887E78557650C5B02C864 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; + 7128817469619B56E1F4D7C19B4A2A2A /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 719D7A4DC21E41C48CF70C840392E6A3 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; - 71C4AF489663C23D5BC35750058BF1FC /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - 71C789B7D4E90A945EA950B6CBFDFF80 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; - 71D27DAFA075A7DCA5AFDC142791F4A5 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 71DC31974AE9F7DCA7FC4F88DA8CBDA9 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; 71DD819B8A76B525536896B3EA7CDE0E /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; 71E91A604A5AAA882EB34BA12611AC64 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; + 71EE0824B08F01894BCE4A04CBCCE009 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 722696C1A7A2E6B2AD5F9DA93ED3FE16 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 722EBAC60CB81A25403068B5AA96488F /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 72433052C6A1352EEF820CF79DFCF9CC /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 724B3ABBD044987FBC7FB1977961D670 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 724B5819306C482A103C3F90A346AB40 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; 724FAB388B350D55C035622BD40F0C3D /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; 72502FDDED0B761879C841806F4A27AF /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; - 7250E8606857F0F70912DEF37DD89FAE /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7254E18DE87EA152AF8F9300DF7C38AC /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 726676C12FA1382D109C49D130369C6A /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 72746ECE8BB7706AD18915DE158D52F7 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 727EEE16F29306FD34854F46B3A8B762 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 7297C9E3B233B6C109D53F693029CB9C /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; - 729C5AB3CD55EDFDEBC0668A0EAF2A69 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 72A1752D64E7BF2FF0CBAD15EBA1EFE8 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; 72A3EAE447C5BE0968B71AABBD1557F6 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - 72AC987B22B100B64312A2C13B98D22D /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; 72B556795D8C4553211AD8B77C5E48B1 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; 72CE922B3754DEF832DD70ABE9EF23FC /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 72D703C80A9A50EE0C6C40F29C03E854 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E399C07FD8EB2CE3BA62CA285B75A1 /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72E4C9E864E1F4845769E5BF13AE2E44 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 7329067D94E992BB8BAE71B494B71BDD /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 73427C2B22D89ECCBF3EA77CF17C1302 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; + 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 737458C07B96B88B234E2C441DB04B85 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 7376B739BEFEFDDE1BE109B7653CC88D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; 738A67103B504ECD54BC2B905A42B479 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; + 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 738B85F81340FD1619ABC152FCE14868 /* 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 = ""; }; 73931F72550A6A3BFE331FDFD5420031 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 7393B1DB75D338321C6CEC0FA5A684A9 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; 7395B37403EE0C69672FF57413CF7877 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; 73A77F48EC09117C89737776DB4899A4 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; + 73AAE5A40DA4CC489A5CADE17D4DBFF0 /* 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; }; 73D9980559B77CA957A03153403CA841 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; - 73F628A2752986DE0BC692784E5C65D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 73F9F5C2ADF396741AA8B04729145AA5 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 73E9AEB2E778BD948922EDDACC00E7F5 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 742912E2BCFF65A9888B6A3128937A57 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; - 7429D080F7516AB8424004612D84AF03 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 7435B31117D04AEBC9ABBD45D17E8A0D /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; 74428EC61E0188E17715BC61F69D9FCC /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; - 744F7FC9C5AE5710B56A2B2F3F9D18CA /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 7455879FAED5208B13E584DB0167E954 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 7461E1C5F7F18D5FF46A3B67FCAB4D49 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 747262C8838A27CD99D77DFADDBF424D /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; - 747F222DD33F12CE7143A62F540D6332 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; 74806217A3F03610417EB6686FE65993 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; 74839CFEA87170B641B5B759C7C8EBEC /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = ""; }; - 7487231A9D5705D242C2DA39CBACC90E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; 7488AFAE0377A21CFBCD91CFB1D7D4CF /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; 748EA3EB396179ED935CE176587C6920 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; 74B2D0E582086F68A8B110AE777A2DE5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; 74C8BC1CD4600E60C84F3B0D429967C4 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 74D6661EE15B5D7EC79BFF58A8696898 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; - 74DAAB0892E5B68F2AF79380A289610B /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 74DFA438BDC14E0082C3D61B882B7B23 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - 74FBAD16EF30FDC924BE0EFB56FD6B87 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 7503E80611685718A42E1BD074E3DDA6 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; 7513E1C06F889605D74D2B5B2BCE287B /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; - 751B2E0E7907B4AB7DCC2F12B3E88B52 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; + 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 7538D18193E47EF2911EA32F73FC5723 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; + 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 754E0BE205AB1A8A7039CFC8FA3BD918 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 755548BAF1B680D52CF25B4984E8CEA3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 7560EFBCDE7BDC75B9270F74BC4FF733 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 756C2DFD99B862171487A49F35009A23 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; 7585DFE66F2A77135D0C671011CC324E /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; - 759C944D02BC3BE1893B6CC8D0130D4A /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; 759D903A284BEC849C04FDF842E0FF44 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; 75AA86DAFDDCD07DB9BDB4C748006A0A /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; - 75C37B64557C975C219559D6C08ECCD0 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 75CD3856553F85B73142E64B3A6A3AED /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 75D76880A73AB23E0BE5F072C04A8479 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; 75F00DB42604AB2AE3D489DB738A4D7C /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; + 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; 7617FE73C482AD138A32E3A376494590 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; - 76210A68BD11993C84B12A15DB0087AB /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; - 76260783CDD7E3E17D39337B7EF9BE96 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 762ECF139423D2CA6E2716D3D73CBA65 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 762F91AA4CC210073E47021B742A3D5A /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; + 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 76518D0F346A22AB0F95C26087ADE5C8 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 76533A976C94536C1DD2B99D506A31F7 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 7656942892C161E23A868FBD6692B259 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; 76605841FD1A47250E4EFE1499D3F6B7 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 766144D14F2C16186FD40B07A9EC70F4 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; 7673F97A0B8CB74FE0DEE39B6AEED401 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 7677DB755FB7597872802668909BC0AA /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; + 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; 768E2C7B161AE5447DF5BE0DF31527DD /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 769FAB53B4979A07BD4073FD8A4F1FDA /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; 76A6D710792A77CDAA54EC7C75C1668B /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; 76B682D87AE0E46B2F8526E74CC305E7 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; 76D18DF309C2FE5E34364E98AFD5B5CC /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; 76DD833ABBB2596BE24D44AE41C63D50 /* MemoryFile_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_OSX.cpp; path = Core/MemoryFile_OSX.cpp; sourceTree = ""; }; - 76E4016415EF323973F15B2C66B23662 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 76EE9D6067E78704159D55A1587B25EF /* 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; }; - 76F4F0674853C7D0CBFCE1B6A9CDD4C5 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; 76F902F856558ECE30D580EC2028139E /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = ""; }; - 77093D00049D223624BB3B6E81C2DEB5 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 7715D0E3CFB75F67FEE64C273A3B1703 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 773F6EEAD949E379CA3BD9EE0F29FC22 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; 774A3866A31D76FF0046D1135E862EED /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; 774C2B51FB32A49702C6285EB360644B /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 7751B4CA59C5E15F1AC2B6314FA90B88 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; 776AD82841419512C42D473B47874F49 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; 777D876DE04191F5FD7ACE4451E1CCC8 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; - 779868D8D76DB548B7BB99FEC32CB197 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 779BE223DE836270C16006E859AF645C /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 77CA1F65AB048F7CF75E75CFBA0FE1BB /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; 77CD8D54EC4D250726C5F464A7488576 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; 77D599491C6E13B1E7BA39C3E1DA0135 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; 77DF6DD654C7B0A5974A812BDF1651F8 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; 77E2F5181F368F5F02DD7F9C5EDE2FCA /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 77F173777922F782D1B13A4560470586 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 77FE32325544867C63F9BCB585EBCF62 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 78198D667724C3045EC32B0E335E928F /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 782C5193E20173687BDBCC3A97D82B29 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; - 783F492CB119986B44C6D820A0E8A4F9 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7864190D18C69C165E4170A9228073D0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 7876296B34DE0344C1134A5AA1CBADFB /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; 7878B44402143B2E25821AC0F73C2728 /* 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 = ""; }; - 78812300FB3459C3005765BCDA4AECAA /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 788CC5A86818F2EC6ACCAE5A2B067599 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 788DF881192CA8C3E14AF7D40F5179A6 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 78958D1821C95F3354BE422BC63B8D57 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; 78A3D0014B2EFB2235CCE8067329760B /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; - 78AF35345782DF4B651DEB0A6F2267B9 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; + 78BBAF7CBE7A037C966EBD2DAF28E9D4 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 78CD3415891AA0B040C339108DE2C350 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 78F214CFDCCE89A85495D226062916CA /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; 79053C64F1C59AFD89510405CF94C623 /* FIRCLSURLSession_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession_PrivateMethods.h; sourceTree = ""; }; - 7916C36E951F7C1C6CABEC68000A34F3 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 7930255AEF65CABF01261C1F1D39B464 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; 7930271857191A912EC82FABDE1113EC /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; - 7953D21C3398F60EBD4FC532EB9E253D /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 795B5CE12E9C856E908F500504ABAD1B /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; 7960E58007D093D75C17B5B39DFBB1BD /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; 7965D381856406721521103DA1BDCF90 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; 7976DE3D96AC7E782E421031A9128746 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 797B76318FBB9F8DCF996160D4C79A6C /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 798DB6C8DFE6F147B46EB55389159322 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 79A7413DA3DE425886E4F57C513970C7 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 79BD40226FCAE98BFF25D1A9E91B6685 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 79CE051EE441FB1A53DB09B59DA174E3 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; + 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 79F8319745A77E7EC514938CEA67D845 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; + 79F8ED89BD94F8EE6B1B828CD57F6CA8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7A01E18194F6EA7B8074FF79ADEFA5DC /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 7A303DC83D1E9D0301E8E0B35D75C22E /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; 7A36DBB413643435E8629151EB8FDC16 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; + 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 7A993ACDEBFD7E0ED90B4769206BCD30 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; - 7A9F6A0C599D88CCE1E7E2D2C89F9104 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 7AA2205B0DB48A881AA5FE79F5E2E62A /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; 7AAD4EA00627682F58A932674A34A7CD /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; - 7ABCECC63138C11A27583A1F0E866E6D /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 7AC571A141141F6091B06FF183A38007 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 7AC5E17538F2D470843A507744C3420C /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; 7AD2D5855891003013F45F608D5CD6B4 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 7AE28AEA7FC6B3229ACF46227E87689C /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 7AEF9523DD3A511863BFB2E9AC5ACC12 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - 7B0B3CD97CFD9DEE34B5B8E734CC6C2D /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 7B12B24F0D2B4C9ABF11C62EC0707101 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; 7B2D5BB702C692DF290B229E14B42714 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; 7B38271B66DBC0D7269A0250EF2A082B /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 7B3B901EE245E9C710F1EFED3D715361 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; - 7B45549C0E5BA98E5CDBCE7255BA8C44 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 7B5310DE7A9282EA96BBB3F2842D7DFE /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 7B458DF706EDC0CE70F50A6C1CF721FC /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 7BBD17E2257061C54306749D6F782A0A /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; 7BBF8A1777BAFD5C973260BD26414770 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 7BDAA8437BA9522C166711B13F38EDA7 /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; + 7BCF154E10A7B538805D44D3345C4AE2 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; 7C0B09BA43FBD7AFC8F6086713955F22 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 7C26FA4EB37E02813691240841A25D46 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 7C41B8A88C3EDF158200E82306E5C1DE /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 7C2E6D530C35035871EC5B2C5D0428C8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 7C4F94790314F30293D00F192FF27A2D /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; + 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; 7C5D833FDDC6F413BA538308A6883112 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; - 7C652AE8776883D817384DFA525C52ED /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 7C73D3BB5E4BEDFCF64752FD0C7FE9F9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 7C9BF74DA58AB4B8C2F083D4E9F01F56 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 7CAB054EF59ACE8573887C4C0CC0B289 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 7CB6B95323D59DD380E20828F800A2BC /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; - 7CF0F48FCB7DA3B597CF530F497768ED /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; 7CFC93A785C1844A857C11A4940DB17F /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; 7D152770934C6485E9D0EA7BF5063F28 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; 7D19397EEA8F7A16C85C82BF80D6D443 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 7D413EA356D41A308D1FE05DD999DD51 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; - 7D48D64E2999C9E38AC3AA1B67429F3F /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - 7D514F7ABA45792D8BDC4177C29DAD6E /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 7D4E4DC5E49587673355D1AEB0FBD285 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 7D6F1ACCC99F3B7F18025DDFD98FD4D9 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; 7D78452A62DD6AFC3C3C521F35B8DD7C /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 7D7A972B2B3C3AD9CB0E366B9CFFFDA5 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; - 7D829935540EC256843A70CCA787173F /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 7D96E3C8629E55329090753268A30B3F /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 7DA35140A87FA2AF61FBA6763B8A3B3B /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; - 7DC3C36EDAA167E488CB77FA21DB4FFE /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; + 7DC06DB3B31DDD3D5B151119DEC2BDC6 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; 7DCEFF71B1D9E6E5355DDC8CA604AB79 /* MMKVPredef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVPredef.h; path = Core/MMKVPredef.h; sourceTree = ""; }; - 7DD42996F2FFC95E36CE2214811ABCDE /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 7DE4E7799787EAEE48EF32E6B4BAA9E7 /* MMBuffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMBuffer.cpp; path = Core/MMBuffer.cpp; sourceTree = ""; }; + 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; + 7DF188500B821D2A3F9FE8B0BBE2C438 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; 7E09AEB3FAC9D47ECBE2D91BA4E05E5F /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; + 7E0F178A220E33C2EB642977FE77EE0E /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cookies.a"; path = "libreact-native-cookies.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 7E267174212E19B04A01C07145D71267 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; 7E329C27A9B42D3693F968168A55ABE0 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 7E34DF6B49E2A767E056271CAADC831C /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; 7E34E90938E61A36DC80280B0622C2C6 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; 7E3803028B3463B243421AE1D90AE493 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 7E3D24BA6820EC26A3C4941962475C8D /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; + 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 7E5492EE69D6815A8CC646ED50CC3904 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; 7E59ED8665250F877CE5436A11220676 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; 7E6283EB09705FAEE73DEC01419581CF /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 7E62E919A84C7AF61D51E519E1DB1978 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 7E677A38DAC2F1BB682006C006DC2FC9 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; 7E687F5C65DD3BEAFF47BB5E8EF7D5D9 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; 7E68C181CA6DFFF620CA0E551DD0813C /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; 7E6C438538BADDCBCF210BE8AA412E05 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; 7E7248EE9263456BF9C65514F5653EC8 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; 7E73E820E0E7570C0A536DCF53EE5509 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 7E79FDD7CC2EC9F3DAECADE3628D7323 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E8567410FB034BDD864AA4D2080275F /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 7EA86E4662B26C8A93FA761E0A51269B /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 7EBF0B3032A56309C27B438746A70349 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; + 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 7ECBB15C0BBC77F5F9CF70A64A07A1F5 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 7EDEA5452550CB951CF4200FD15053EE /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; 7EEEAF6D15E85574F3500AA19CFA1847 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; 7EF094B4DED4A47E606B128C16F4A3DE /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; 7EF7838F5C51D7F6A7D9CFA412DBC1F5 /* MMKVMetaInfo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVMetaInfo.hpp; path = Core/MMKVMetaInfo.hpp; sourceTree = ""; }; + 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; + 7F01863205DBA6FB0E14ABEC758298F1 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7F0DAE1D2DAEBD977A1EB235FA09069F /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 7F1001B1349B03B91C1356C3A36DD84A /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 7F1268F69DB9F48462D2E8AE12F62688 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; 7F248CA22956534AD12562822B288A0C /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; 7F2DB13D06542D69EA4B6D188B4DCC5E /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; + 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; 7F4678509AA6CA3186B21D19E4C8B205 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; + 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; 7F58BD9A54067B2D76E77DC7D89AEEBD /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; + 7F59A20232A82C3A1F2221D19BDCB4B9 /* 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; }; + 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 7F6BA9C4D13FE5267F6561724E575CAF /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; + 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 7F723522B3B4D24FFA19D288436A8758 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; - 7F7D6FA0B612CD4AE1D408202742E242 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 7FA0EF3446FDDC7C7A7A5106D12014C3 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 7FC4C2FC787C6989441D30100AF1DA27 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; 7FCCB2D65FDA8CA77452B1513BAC7872 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; 7FD1894616432E8801F4121C9554199B /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - 7FECA2743FEC6FE8A9D991B3ED16B2C5 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 7FDB299549A5E3A7F289B83A8CDB39D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; 7FEFD67E2F1B67EFEE3B6E755ABC5B56 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; - 7FF0C0A9749B3B486459BB8DD1C2F24B /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - 80086B20D034186D33C1375FE9E128E6 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; 801375BE59492F7CC0A17EE8309DD8C5 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.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; }; - 802CC5F20ADF1952DE5F0339EF33A0BF /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 802E30CD5AA274C12F53486996E3EEE0 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; 802E746E88582C5B35531B625684F6A6 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; + 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 804A1561B96171A6817526601368BB87 /* 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; }; 80594D1255F9F858C24487EA080220EB /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; 805E69C01A0845C589EB05FDD1BDF743 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 806A6A850804DAC387E194717155CEA9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 807B40C47C86B2CD10A78565F4FA9D18 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; - 80869C8F5B2A254C1EAB92E57BE49922 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; - 808D5AEA18F38E3F24F5F2EC4FECF644 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80B3B0A820A8CB3C626A79961674B639 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; - 80B511EBD47FEBE7309AF44EF877F037 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - 810565D15FBA2F800AE983E945EC3726 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; 810B053F3DE377A223D309DD9A921207 /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; - 81247E4DBC0FA3308C4EE16CBB74ECBF /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + 81118BF48D985BBD3F4B1B670E8F2DA7 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 812A96082CF253DD45C204A145030104 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNConfigReader.a; path = libRNConfigReader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 813657F95726447622A48846C27065DE /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 815C3B6343CAD30CF200A1E5E6492B88 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; + 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; + 81477035CACCD5F63C95CD0D19747EB4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 81766F98093BA351E98CB69984609C69 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 8177E6FFA8F27C56F779F481512EBDDC /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; - 8181181E4E52933568FD77E02422F72D /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 81997E58DFD39BE48DF769EDEF30A1FC /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; 81D0D073BFFD90E161F032E4016B62D9 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; - 81DB8245279F0695B9EC71EB4EDA66C6 /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; - 81EE02F9950AF7F84CFE06A0047AFCB7 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 81F33DFB7A7EC0F2F363870421D366A5 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; 81F7428E42F559BEB3AA5AE54B349465 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; + 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; 823198FFD540E2221CB3DDE2502289AE /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; + 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 8239A37AFF72B7EFA62A781E5DEAEAD4 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; - 8246DE92DD7559379E867D53F8FF0BEE /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 824C0788B7CEC37E8ADA11F65ACF9939 /* MMKV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.release.xcconfig; sourceTree = ""; }; - 824F23E11E9FCFF1BF1056E07FD26665 /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; + 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; + 825C7B2B3BDD9733C1E1600EDC6C50A9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 82797D5E6E3C1AB7F502D4FF66EDCA93 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; + 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; 8280F4060EA2D45A4019E40097D94154 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; 8281113021EE8CA8AEA3728AEF6D1060 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; 828CE730DE4AC8F4E0336163B9D629F6 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; 828CFF4AB4C0EBD7C6C166739540505E /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; - 82B2055F0CD5236FA95ACE35065A6788 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 82D0E220F2D5B5E0676A13272BDB5264 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; 82DE099E6D2D0B84C2B4E68059902254 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; 82E38E652C533A063F37A20DFD9C5F8F /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 82E999EE849E2AAB0365CAC694C9A86C /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 830C4F640F8687F78E2391C6481BCFFD /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 830F897DF7AD939E47E8155FB34962DC /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 832399E6C502C8A70B8C4EEB26ADDC2C /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 832D92A44D7512814FD76FF6F2D14AF2 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; - 832FCBC92AA32C76BFE1EAC2D56D09E5 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 838042ADD47A0B40530DF4B9A05FC3E5 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; 838AA08C8AF575070CEF28CED0DD9667 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; + 83BB5276CCBAD0A5948874E042BED951 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; 83C0D7C288E68D751A5685052803E1BF /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 83C18E68F81F772E1F1618C49B3BEC99 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 83C80CF8E5F47790D5B11A4C4CB44ED6 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; 83D19653697B29F16CBBC9A7C10B26CE /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; + 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; 83E6288D790089E7241E112CDD898675 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; + 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 83F22593E2A934B430841A48D9801164 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 83FE38D0CD33C870FDF6CAF08CA26264 /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; + 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 841D44BF593332B09202C9A5E64459B8 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; 8420AF8C1F6EB4650F970C34B7221111 /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; + 843B1EF185471BC08E9BA3B40CB9DDB0 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; 843F34EAFD706586CD0C9EC3F8F91F99 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; 8455A0761227B6709D2A80B3E42AAEBA /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; 8470C2FB63AEE836B0FCA64A7F812BA8 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - 847A8608F349EE5ECE1951620E181DF4 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; 849B9F78534074CFFF971C3AB09A80A4 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - 84A6F9033D23BB0FC3865FA431E5FB6A /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 84AFEB5F65C2E8045DEE3F7DCAD073B6 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 84BA8F29F731B4CEEB1C418BA9EB2114 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 84BBD9EECFDDC532701B9676429F63AC /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; 84BD9B6AE5CF36F13E90AA9DB2458229 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; 84BEB0EBE212A77C545C1D889DEE8C90 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 84BFD5650DC70FDC7139F58AEBC0892C /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; + 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 84C1CDF6C3ED9D5001A9EE3CFC4BBB7D /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 84C65027A1E199E3E2C6CD1B1A0B3F17 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; 84CAE4A6D9E6F4B0DC6B348BE84E85D3 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - 84E60F7E748AD1A7FE5E90EA4646DFDB /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 85367A4907755BCC42651195F306CF88 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; - 85482E2C070557F0DAC64B563CD678BA /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 856FCB255A581E3CF270291EBB650860 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 857B473E21FBBDF59E332A5FD163A7B3 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; 8581342460145C7EC9F6B5F357C02246 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 858251DCD9E3940CBA8A7A4311DC088F /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 85A2E9904AF9039027E40E6F9CEA6210 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; 85B16069E70D320C65095CDEFF4AA15F /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 85E6F658BEB77105D9B54AC764256AF2 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 8602DB997C9B9C93ACCE5460D2F804C0 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 860EBB29C61DD2C826B0C343492DB7D9 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; - 862A89EF54BA1168F9F7B6E0A575B091 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; + 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; 86321040D1425732F69009DEB176766E /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCrashlytics.a; path = libFirebaseCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 863EE9EF885CB6777021B32252D7B2C2 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; 86427295E421BD825AC814673C436CC9 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; + 865C102D39A7D472F578BF83450016DC /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 8674700211CCFA5D9360B3DCC5C57A60 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; - 8677E0BF848829D3E1652A025D1E4D78 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; 869ABF8F8A07E63FA98A00C3EB7D1574 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; 86A7F03AEC29DAF692493D9250BD5F37 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 86AACD3FBB555A4A9D3B69E444327A4B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 86B8AE93FCB0DA330838A9B7B2B4EC14 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; 86C038FB837827595E9C06CBE6265F9E /* PBUtility.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PBUtility.cpp; path = Core/PBUtility.cpp; sourceTree = ""; }; - 86F6819397830D723FCF535395C4446A /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 87119BEC3777AF6B114BD339692E9A0A /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; 871DCC73830C467E5BA61CC8CD0BEB2A /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; + 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; 8722B9D0CBEA355542FE99C936B63CC1 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 8726FEFF2B734B95167D1273D3819551 /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; + 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; 8732EC9F817772D591B4DAA3C772D474 /* InterProcessLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InterProcessLock.h; path = Core/InterProcessLock.h; sourceTree = ""; }; + 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; + 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; + 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; + 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 878EB6EEBF09463E2211023187B5CB3E /* MMKV_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_Android.cpp; path = Core/MMKV_Android.cpp; sourceTree = ""; }; + 8799C6D324F39F47AFE742FD3F5324C4 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 87A27DFB848B1D91986B582737F67521 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 87A31FFA08703E81B60B5FA7AC490C18 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 87ACC83C68C147641F3FE7984C2D84D6 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 87C89C4D2728A4A4ACB92CD0EF9AE81B /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 8807F8279AA9D8328C725CC8315E6FA9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; 8840248FA393A26F5DDAB7D0B2FB3635 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; 8848377BC15E3C22E2A7E2BEB7A9F87F /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 885590BBCA9B83685361583B2E7872B6 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; 886D771EBD66B9842FB466D235D11AFD /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - 8885E57EE811F401B1A6A5B25CF3D0E4 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 88C3924B860C66DB16F359BAE6CB4A58 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 88CC90FE0B189BAE2F58DD54E4A55C04 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 88DF92488961630D3C3E6F342E5EDD6F /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - 88F8791845A0C218083BA10592CD6F5D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 88FE8128E0B06B8EBF6848BD8ADDA9A2 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 890A15DFAA3269F1E6B3068E7BD95D69 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; + 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; 890AA27BE2BDEA25925DE114EDCA72EF /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; 89429D1E9F98E5621C0D0917AF24680D /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 894E75CFCE337BC472BA115415977912 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; 896DFE496A3123614B651C512D768D4B /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; - 8976EDD7CD940020697DD076A18E5CF6 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; 897EE487D5DFCF9DC8D5A277501259A8 /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; 8982A7DC531ADA3AEE86AC93C775649D /* CodedInputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputData.h; path = Core/CodedInputData.h; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8999D50EA985660D0C1EDA6538E48133 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; + 899BA33EB23D74067CDDD7DE3142E609 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 89D828C290E303B1B3631F72A9FB86CD /* InterProcessLock_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock_Android.cpp; path = Core/InterProcessLock_Android.cpp; sourceTree = ""; }; - 89E372F16A6F0282078F209A0A3DE776 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 8A154717B3B07FF994D000022B4FBFC5 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; 8A1979B97D255F084F2CDED967B5B6A9 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; + 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 8A3EC40F8D83F2576BD5667948D04DEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8A469455F7808C1B76A4329258F6F6C0 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; - 8A6C1270E6344C5BF528E6A506EA59A6 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; 8A814E92EA07C7E1929E2126C99FA790 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics.h; sourceTree = ""; }; - 8A891B8AC31C09D2B204B0A70FE8F490 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; 8AB00D2E6F6DA172BAF0ED3617D64A42 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; 8AB163A2BC1DB6F0837718EA750350CD /* ThreadLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLock.h; path = Core/ThreadLock.h; sourceTree = ""; }; + 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 8ADA55D682457995E872F8370FDB53AC /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; - 8ADBAD79833820B8603392B72F74CE1C /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; 8AEBC87CEBF5C2C74564537E3E555AC6 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 8B24A35CFC63AED4D4D4A62223E308EB /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; + 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 8B325C64F03917783D3F653A2700BF79 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; - 8B4A12EF2BD6266DA9BFB33CC8DB6AFA /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; 8B6829B2C89A64CE5FB5A5CA1D9D81EF /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; 8B6C33FEA3B536CA832586E380533053 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 8B7868C6DEEAB78B056F86DD424A6BB6 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; 8B7E13AFDC5D2CC40492D4340BA0640C /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; 8B83BB262BBE5BBBE29D484219313691 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; - 8B86FF9926A558E1D91C033A7C0862E4 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 8B8DAFCEEA8153C96566A703F8DCB2D4 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 8BA44650E4DA05BF923D8D0C78170676 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 8BA4766E612369BAF78ACC4EBB3AE196 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 8BA69F4F3BD05094361D999C5E097E90 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 8BB1B6BD0F2EBB754F315CB745A8D9CE /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 8BC5CBBB6BA3FF4F74CA75F89AF5F937 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; + 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 8BCC0B43A01F577F47B92A3BDC5256E6 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - 8BD9A1F50D09E2EBD8A5C437B1EC94AE /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 8BDCF623BA7B069648767D94FF300111 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 8BEA6863779A6BE3FEFBF103D066C84E /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; 8BEC4C534A6D3D670A75EBA4EDD819D6 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; + 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 8C1B34730033D942D6C95F3A713F9BF9 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; + 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.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; }; + 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; 8C41ED7C5AC74BCF1865059403971088 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; - 8C4496D628C42AAE64D6CBB4BD2768AC /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 8C52C315297E24DD1FD38925FB48D52D /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; 8C6B8E2682440B9BF16413835AEC1954 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; - 8C6D07D86FEA4DA05A4A7A59F9E587D8 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 8C7E9381645AD62ED99B805756965501 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 8C88A49AFD541B73D9A26B8F5D5760A9 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; 8CBE4963EB65015C4E9BE84DB25AE408 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CDCA41AA9F933074D57720A28E94412 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 8CF1FB8B22E115336F0A53CF3155F4D8 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; + 8CFFA97FB688C0969FCD2DA93D21FF25 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 8D0622FE2CDA6CCD1D6D689EB4C1DB6C /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 8D18F70546F85D4E5C0B93A7A36FC86D /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 8D38F97A810600D413DCBE98977D6ACC /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; + 8D1134DE526545AC0020485B53160E33 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 8D2E9A5AE0578008F281459CB9A08251 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + 8D3086EF2EB0A64D617B13589B800213 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8D469401E7282C56A94687BBD09E5E22 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; + 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 8D5B9420E822B44A0D897C0AC9B8C336 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - 8D6227F545FD087DA36FB43B07B8100C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 8D6B5697FEC6EA4DE7B3E76D5D38F147 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 8D6B664D18299F557A9D45D6AE6F1C85 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; + 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 8D7B9DF14EB9BB9B9F75E12937A9172D /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; - 8DB3C04487A2C776E7B4FE3FB30FEE6E /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 8DE7A55B5DD992C1A7299BBE472BF3D0 /* PBUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PBUtility.h; path = Core/PBUtility.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; }; - 8E0415AE584E280A0A25587C03FA02C8 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 8DF78B4B81C3C19E39ADF3D34859C626 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 8E05BCA7AA269FAA683F130F26D3A81C /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; - 8E19C2AA81ED836C68BFBD3FA60EDE41 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 8E2A0E7F36CBD96AA86B6CE6DED962A1 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; + 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 8E3894AD3EAF962787F17B00B35BE4AE /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; 8E3B8F7A4FD176040E2498D2F3F57C62 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - 8E465634B3191DEAC1DD5194882DE193 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 8E54B77C10474AF8FF36361BBFE17477 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 8E60386A9340B7A605CE77694CEF68F4 /* 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; }; + 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 8E97FF3BDA7FA877AA08E7C4A8AC7D85 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; + 8EA5049FEBF87BF99988F7BB6B3A542A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 8EB7BA7C2D608DD4B24E71DF6890FCF3 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; 8EB952E1C1834C0CEEAA4E5B7C8DC4A0 /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; + 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; 8EC24129B4FA709297C0376D4F3DB49C /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; - 8EEE4B6DD4B01B3E6247D690D3B0AF9B /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; - 8EF57F84DCB0CFB86C5A0017BD979E75 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 8EFAEF5638AA5214DE537E972803CB0A /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; + 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; 8F0BDAD9EFE406337A2721013B9C95D8 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; - 8F16E6C6F82C2B8B2FFCED897BF2AA81 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 8F16E7ADC4C026ADE02A4F59231C14F8 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 8F2B98A5CB6CE9E676C25C5F561036F0 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8F2EFC9F3617C8132B2F6ED699A3FC2E /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 8F300091273A35CE5E7A76C6F4A0129E /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; - 8F48C9A2DE3AA95645BF6F10627F1F1D /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; + 8F48120974347F228002F54F74B3C924 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 8F53895CE18DB5979CA76E1A13E482C2 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 8F652EACDBA01D6B41B81FCD70EE4755 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F6AEDA79A8AAC0437A28D32567B8E55 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; 8F78C6C493DC228F73D41AA872A1C837 /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = ""; }; - 8F81C7172CC0ED5CE08DB1A37EE0DE43 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 8F95B87CBA8D3DEC656CF9C2135D0B04 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 8FCBD30184D082DB092DF89642B81A4D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8FDA51423F51D4CCE2F3B6D6E7D768A7 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 8FA1CAFA4C9B4AD3FE1691EE96767F7B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; 8FDD40201F0C41EE6AEFC14203F65DE8 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 8FF1B3D380A38534BA390C059897EB82 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - 8FF702BD926BD5A959A4BDC01C8AA12E /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; - 901CD2B51324A018CFDE677E9D2BB213 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; 903F37D638B5A2D8CFAA8D79ECFFB78D /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; 9040CA74CF22B52BABD4D4B8B77ACE34 /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; + 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 9054638FF8871861E9C23D6601268C24 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 905730C8133332059FF44C6F8C55600C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 906166F8F6237D4A6C79C75455EC449A /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; - 907B70E2563C91715715DD817F1B8355 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 908B1CD128E2967199FC5CC569F1DD63 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - 90A918715784DA6F201FB5844357D785 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 90AEA309616B0DEB92A68DDF81BF2B53 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 90C235A36EF61092E414856544339A50 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; - 90D0B942150CB45CD1A912B5904B7447 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; 90D63813C0FF0B6ACC623D4497FF0AA8 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; 90D9525835B6AB395CDB85717D5A9F14 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; + 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; 90FC79C77E4F46863DD475533D06E8F4 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 90FEC82AFA52FE21CBF13AABE226D9F9 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - 910BE4D029D425D203607CC5ACDCCB12 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; 911F870DD3159E5F5F52BA6B6094D2AA /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 912AD498C53D702FE4B8C960BDF6B80B /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 9137DE80A4B6278CE8314E0665C508FC /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; 9143FB31FA4301876510AD9235A3C234 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; 9147902687EC685DC7A0853698C3F430 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - 91492957304F8FA228CBFB465E72DA95 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; 9173891E3F3EC1623353E06611BEC253 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; 917E1258AD649A23A7D45A50A6F05A94 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; 917F98C847A7B25E7D52D5C48C15980D /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - 91886489B3266BCADF488AF827094922 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 9193D376AE96352133F2775A0619F92E /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 91A57ED6E8D884ADC9A6BF08290E518C /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 91AD235C714EBB54A9B7D23DD02EB46A /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; + 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 91D35E2CDD2B60CDB96841698F3B78F4 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 91D516947EFE99A8E6D7374748A59FEC /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - 91DBC6A1E416E2CFD76FA9F6A6C67DD0 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; - 91DC1E9B1D633A2E755F1FB2CFF6831D /* 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; }; - 91DC2211BF9562F6F4C10A0A887E55A0 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 91DF80F6E910A3C8CB8A694937579421 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - 921FC6106D14A1CD680A9EB1105DEFCA /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; - 922A29D2636D81AF4F0042A215EC5BE8 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; - 92350E78D05B4E9866E82163E3DC4DAE /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 92672784570B66A01FFF23C2E8A1C554 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; + 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 9289416E86B95FD37AC0002DD58D2C24 /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; - 92E5CE0D154F389D0A9006DCFE8D2C54 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; + 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 92E8976EA262E215049AD45EEAC21C54 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; 92E8E2E486970F4DB8BF6C93FB711312 /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; - 92EE95B93364400F2FC3510053427587 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 9326B6633EB6025A5554380FA266D727 /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; + 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; 933C27038580EAD8CAE905C91C0BE11C /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; 9352FB7DBE05F5908BBEC7CE1034322B /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 93576F5BC3193AD26A3965D35761AA9F /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + 936D72B3D0E143CB516F5BF22CBADAB4 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; 937253B4856F1DE53A7FD910DA71B5FE /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; 937CACDBE2FDCB5F2864652AE4CB2CCC /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; 937F2556B135DB1FFA4339F72FF08A5C /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; - 939157872D4A8B0A7EE428C2143F8A95 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; + 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 93A400BE9A8667F9CE4942F5DF5C10C8 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; 93C3EC20DAA7C79A3553580682FEA63A /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = ""; }; + 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 93CBA8312ED75FAD8501C96FEFAB5F9C /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; + 93D74EFB015CFD784B0E79903C6773F4 /* 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; }; 93DB970351CFB42D89631ED4E5475730 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; 93E710FA9E3AAACAA3D2107F0F8F8EA5 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; - 93E76055CC941B5961D1066A9B83B898 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 941C70F45DADE90A44CE03CCB6FA618E /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 9447D505967836D58DBCC077927687D4 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - 944D942E113B09A0E9DE0486D1E77562 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 945BA2FD8A0CFBC2569706DC93627D71 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - 945D0C00A4CEEC778471BDE6EC8EA3C2 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 946C22680302D08D06B06AABA99505BF /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; - 9478AFC6D204D5B541C8DB5111B3FEE7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 948B0D78654C4D4224E35DF17A8D7165 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 94B1A05E1C51C61F15A58D587C78F9E4 /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; - 94CF3A524730CE97D5699E57E7A98E67 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 94D1498095DD6CBFCF581AD7D5F99A9C /* 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 = ""; }; - 94D31BF7F2BBFB5B35037EF7540173A5 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; 94F9E3E5E9EC0B8F78F414B70D50FBE1 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; 94FBC8A647FFBC1523F9F0EE2B213506 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; 94FC7CB00AEB28FEBFD5D8AFC620F9F0 /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; 95164075C77A0ED9148AFA34AF9AFCCC /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; 95362C0876B6F247A01415419E797923 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; 954C19028C0EF32BBAB56BB49FF5319D /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - 954E2BC9DFC6830F2330A56B71539E62 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; + 955B0ABD6B881D56D89D8467D05E1026 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 95792416180CB79A3E224367C8411ABF /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; 957C501B84FB837BF8EECF92583374B2 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - 959B66E0A5FD36C3AB97C95FC9071C65 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 959BEC47F401BC75EE0CEB1CB434EAA4 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 95D4EAA6E2D783E6BA3CA1F8DAD7F97B /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; + 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; + 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; 95DE5B6E1976CB78D2814FC724DA3541 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 95EF4F0CB4513629B5B7DB27B2CDEB42 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; 961935ECB499C57F8D4C22EC2E4B497F /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; 9622397634A3DEBEC00CE06C1B64BC8E /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; 963491A9E62786E0785789D2BF070D8D /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; - 963BA3D224ADFE11ED4377262300CE63 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 9642778E87FC8AC3F9807B8EE25E64BE /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; 965A9B1B192D2C5521B1E99C0A146FD8 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 9672D26825FDEA0DE700B59B47C0F9D6 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 9693507BA669B54D34BE095FE22B459C /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 96791F5A9A48663AF83F84E7F2133EAE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 96962FA38898F1D7D4495FB7F8ED9007 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; + 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; 9698A308246F9C475EFC0CF7FA7A64DD /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; - 96A7AD52DAACFA12029D77086B9D7340 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; 96ACEF693DD14A9B36554DE1C8837282 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 96B0DA33E801A10963A645AB01F62D93 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 96C3EA56CA8D0AD7611923CD09E52544 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 96CBD3DFD7AE046C50C14ADC5555748F /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; 96ED6D0B147039A5268A285F7593E9D4 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 96EEF734B66B5541439641B8F21501EB /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 9703307287BB820F43947525D8118ED1 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; 97110259DEEEC959980EF0B409E72C19 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; - 973074E2F7F2D7250F1497BBE021F076 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 972C4F6156743DD2B5BFA918D19EF30E /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 9742D07E86C58B356E1D2CEB3111A2C6 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 9756F390C20B248FE2AED8586A06FDC1 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 97574DE18C289347F6F2311612C39496 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; - 976531FFAE322F1FC546C191937461F9 /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; - 976B5795551A2E7A56C658E34A7FF6C8 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 976DB772344133D19FDC9F43AEDC2612 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; + 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; 978853D7DE99A100A1E0B34E3A260704 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 9789C35A20945543F451817A8ABB5903 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 97AA1F288B625A0272830DA8D840D5A7 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 97A7F1B2F686CD42E85B04316E0C4EB8 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 97B52D167651C3523F3B2CAEEF7423B0 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; - 97C5151C88E72FD02091261320924F46 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 97CC0FF8649FB8EAD461676E8C9E66EA /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; + 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; 97D45684300495848DE355FFF2A07FF7 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 97D8041A5C643181CE077EF91E535EB4 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 97DF756AD67125EB16F06106BF5E7483 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 97F49C664B0AAF0713D044859ED1909F /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 97FEA7485A09F5353062258212D80D74 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - 980B298D5BCD8C16C3F0E8541E137A25 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - 984C4187BF19B9711D69558F599B9D64 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; + 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; 985640F0769CFC44BE8784A0524828E4 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; 985B607491C9F769B6EAFD506485D15A /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; - 98632DB487A8965B5FEB5DDBD6DF791C /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 9863C2536B6D6EE6E082E7FC842FB6C8 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; 986DBEC29D4033BC81B8504B155CDCC0 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; 987E724D105C08C2B33EF09F8AA46FC4 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; - 988019E4E9CF2D827C9E95B3FAF0765C /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; 9881F43C243FDB00FAA65A90C28A02F1 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 989083A91BA8AEA471DC3DC8E4646D57 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 98BC1C34B1DC7B5C3D34F711F68A04E4 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; + 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; 98BDFC3334866AB049C88363913B1E61 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; - 98C4B0E90364991B51449E243D87171E /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; 98D10C3C764BA701C0A2378F32F87478 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - 9908478D81E222F97102D66FCE95155F /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 990F70B96CC4B43314C481D8A39032F2 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 98EBD075FA88BF61298059B8DA66AA69 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 991B3A59C2EDBD7A7B485E185AEBF277 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; + 992A0C44C44C004243A5AE0CE646E74C /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 992F321CB4568B26B5C1CF22009BF270 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; 9930E8BDE14FD0D5625A004F75A0E2D9 /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; 9936E01F702B68A71DF6FC5030D94EE3 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 99559E25E4457091FD3799EA6F591DC9 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 99720D30D4764EB212A54A8391F1E358 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; 9972B9BC9C002FD13E6707E9A8DBFE6F /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 99764E3C24325146A38FF9DF1BD40846 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 99AEEADA8EC16435EEA450BA7441D9E0 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; 99C813405B591F8BFD2D6CD68736A8E8 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 99E1A96874575E082922F6133E50001E /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 99E7CF3EA72A6DA8531C1AFD6D8E4F43 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 9A03CDE512E790DB004FCB666261C690 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; + 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; 9A0AEEA6606F62C0D917BF535E738CB7 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 9A0D97A2A2DCCBEF7F6915B645783FC3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9A1FFCE20159753D7E09360DCAC6D3DC /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; 9A243DF2061DEFDDE291EBD729D7655D /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; 9A3A339A287C5D9E83CC0225775DEA6B /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; 9A405F82D82FA8A50DE20C1F529C0E82 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; - 9A5D088B7AA2A38C1475B82511FCE848 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 9A5E3C8A967801A97877FE39C9AB0A62 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 9A9F42B5250933CF88C7877509252FCE /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 9AACC56222D3F5D2DF4F8E5B065E15BC /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; + 9A67BC0E541A9D25F6A5A49A2496768B /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; 9AAD329D923DF61B72274D9B19EEA53E /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; + 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 9AB29DC06EE128715B33DB814DC5E8AF /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; + 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 9ACDD1DA4A9D536AC0542C4DF7A4D413 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 9AD189686C14007ABBC4D2C9A5F6B31A /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; 9AE36B038AFA428DEBA76CA96A143D34 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; - 9AEF4114EA8A77EDC4DB38524A5C12CA /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; - 9B0848326022D9285AB3B2D7CFBEB1CF /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - 9B097595BCE54A13A315BF6390808171 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 9AECD6EC4451B67D03D0D7D74FDE2039 /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 9B388418E1C1B0C5BD30ADC617A0BD2F /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 9B3D89E7E25E2144F84984ACA68EA4F3 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; - 9B581F219FDC85A4553A12622AC187B4 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 9B644E8F792C7D96366611784707B904 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 9B64DDC4A896E17E030CC492A037F993 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 9B78BB3D98202529AB26B2984777EF0D /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; 9B7D9C2885ED2D1F790D780396244B06 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; 9B7F2E6D40A0A33BC5C39F075891F642 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; 9B87BD89FFC807940769C52E39B7D396 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; 9B8B0A5EFCC70AA16059E58D6A0F5686 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; 9B92A8C3A17DC006F69609EDB40FAC57 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; 9B943BAF7A4D7FB395F978A04887D78D /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 9BB9524520A33B4ADEADD94FA1308CD3 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; - 9BBD96324E72B900F754E91B9DE58130 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; - 9BBE357D0DAAD5903587B286984F4105 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 9BC053C25CB8BC3DF533B1927CF9A6F9 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; - 9BD6647C5614301E99E5512C1AABBCA7 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; - 9BDBEAC98C62EB4400B7F64634450AA4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 9BEB0EAB4D68D6F21D99F23BEBABE8BC /* 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; }; + 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; + 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 9C008C1F8B7D5C3D0ABD2E35A1E531BA /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; + 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; 9C14C10E415C0FB7E8D386356542A928 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; 9C19CD202FEDA943E5C4C727D4503CC1 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; 9C31B69AFD927F9BE6E1A94CCD9164E1 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; 9C386215B39976F2E820F9A16C88C6F3 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 9C44CF29220EBC8283BD04E3DF55ECAA /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - 9C520CA3686165532684A995B2A1558E /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 9C4817758DDF25685598ECC209BFEA71 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 9C535830E31A68A8EADBA46E7414357B /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; 9C58E09797BE08EE799C7076EE6C01B0 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; 9C60B15390B5A15B6AD61A8B8AB6D5ED /* MMKVLog_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVLog_Android.cpp; path = Core/MMKVLog_Android.cpp; sourceTree = ""; }; + 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 9C73F356DA3B1B322CA002072CF42AFB /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 9C7CBF2C8CA3576682FD6A03B211A1A0 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 9C886AE4138A4F9CDAB06A835C9FA12C /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 9C8E86F5C34BAC129CA6E2D869FE1CF0 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 9C93949043EA3718D0AA4236C94F6D44 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 9C94FB841D192F3EB68DC8E42209D490 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; + 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; 9CCE0DA26BC84DBAE8148CCBB079AB04 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - 9CEFD4F488C804AEC4D80E7A140BEAEB /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; - 9CF39A4979C551317AADA0F275C00C15 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; - 9CF77E3065652047D6A490602EBF425C /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 9CF89B85A794B593C2AE74CE7073EE37 /* 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 = ""; }; - 9CFEA41A844ABF4DE1C0C6FD75558E64 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 9D02B362DE7861F6C9B7347A03D2D01A /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 9D03F12A4E88D55B9DAB3A8CF758FCF1 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; - 9D0730330E697589D830A36B2AFDFD49 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 9D20A7D80D8CFABC26E75D42D366E4EE /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 9D211109B139C4F112758357ACA1723A /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; 9D3D5B888BA8A95E4120BA945FED3CAE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 9D3E26DB46227C02DBE7BCA3D0F2E47A /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; 9D442D7D50ECFFDDED55BA30FCB89821 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; - 9D8460F27B31D8F9AE5110D70F179BDF /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 9D9D9A65222FA9A86B8147D0913D4418 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 9DC8492EF48EB02B79B84699D1B99F39 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; 9E0B1D61A483077FB4BDBC262DE16D7B /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; 9E0CA6933B225B17A6B95C12EB10D68E /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 9E103AB9D5EDF48A9FABFDDBE30C1E4F /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; - 9E1582A303A42A23ADC566CED1C8C326 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 9E17D90CDC0CB979623935CA74C62CBE /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; - 9E1C02FFACF83C156465292CC9A2ACC7 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 9E235FB4D7E0FC2F6BB891FE35288C5D /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; 9E29D0D7334990552C28F6888E1C4D0A /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 9E30AE02186EEC8A70B2EBC3C766AF8D /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 9E4269D853F0E5869A7364D8ECAF81CA /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 9E5018DDC168FC068C8643A56FC722A5 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; 9E939B8E866B114B5E15E3AB4668EDFA /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; + 9EA6F3D6EA1060EB6E4E2F552FCFA1B7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 9EC316318A17B21512726BC118D88BED /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 9ECAC559F363AECB0176E62D356832C1 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 9ED083F33A0F5839CEF34A1AAAA3E985 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 9ED09204DC31E77A445E9EEA39700E53 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 9ED19ABBF136854713A6A0B531EAEB55 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; 9ED7836E27AA6987A9009F6A6F03831A /* openssl_aes_core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_aes_core.cpp; path = Core/aes/openssl/openssl_aes_core.cpp; sourceTree = ""; }; - 9EE3B0BBA08C81F04B45CEB96D3871EE /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - 9F02624BA977AB475D20EBD94C668590 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 9F02B8E06B5366040123CFC317EB0B44 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; + 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; 9F263719772A77F5C2E42FDE20EE9DEC /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 9F2BEF9C2CDA35054BB8CDB6F043B70C /* MMKVAppExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVAppExtension-prefix.pch"; sourceTree = ""; }; - 9F492DA4602599FE1AC754B16FD07503 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; 9F4F55FE24F77A70BC872152E4464161 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; - 9F625D25120FECE65B6A6CEEB25AA28F /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - 9F8FF700310770E6722C190E33588993 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; - 9F9F1A2F116D98D2951E4B527B6587F2 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; 9FA0CAA0DBA73E40FA693E392FDDF4B0 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; - 9FA431D53C331DBA0DD85D98FE1AB946 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 9FB411ADE790C2510C4E0DAD1B87E5C3 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; - 9FCE69F564C5DF3C7A4951E49DA46CCD /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 9FD4F19E4FFAE26D101861C7BC5EBC3E /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 9FE7DEE152750D82905E5832F1204F44 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 9FFB40693130816D3663EF2FD82D6B22 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 9FFC3C5337925929AA6B9B0077D6FFD3 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; + A00B982F3152D612DA89C42AA3D557D3 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; A019E28A9E6E9CEEEC24F9DD589D9797 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - A01FF1CCDCA83FC7E71982962A8D3042 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; A02FCE0F66D4AD8D30EF8F3D3220A020 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; A032E4FC910ABA49E338E0AC91B2B97F /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; + A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; A038B84D33708A323BCFB602B94B3342 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - A03F3558A88EFBE6C41D5F4D040E4220 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; A04E55087F1F61F47FBA0C46CF8C0F68 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; - A0631A98F512BEC52F1420E9EBD81DE4 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; A06DC7C82953AC69C5D7905573C55933 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; A072AB80F980D7FE4CCC2BB9E9D99BBA /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; A078DB82A9259F4CCE65EC283A390837 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; A0860189B4CD7E1B30B0913458634F61 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; A086D7B4B5A4FE6CDB6218F2B406B9C9 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; A090123081DFFADF3C37F389302B64E2 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - A0A1F76A0EAE8C915823DABA35B9568F /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; - A0BB518C14A15A56648290B177BAA21E /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - A0E40C90009EAFB8D0C7E7BB34EA6EA3 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; A0ECF424449EA2D5D9C79F30028F6038 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; A0EE4A228D6AAC610D5CD90F8E99A512 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; A0F9F4DBF0A8CF4BAD10ECCEEA33001E /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; - A110CFC654B4030D0993E2983532B012 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; A124B205AD056AE7D5175FB2AEFBB3FA /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; A13AAA1E21D717E129A83F88BA0506C7 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; A13D2823D396306F5A6DD2B6663F7976 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; A13D90A8141DAE1C808F1D456817890E /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; + A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + A14B74BF4A78AF2FD2CB9116BDEE4A7D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A14DBDBC65C0A86381D0923F3853CC35 /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; - A15F613C808A7DF83EAB843ED238BA8B /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - A167F190E4ABC5AC1491C59227F50A0D /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; A16BE67B30E1D5B41246BA8E281117C9 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - A1758EBCE4BF789C65A1E79FD8A79C5F /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - A18B38C4FBD0747CBFB21D6F1FB5D371 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - A1B6EDEBC112325BEBA60BE9161C167E /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; - A1B74E6836D44799DED3702CA61119C2 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; A1B869AF16986544C09D0DEA7D533A67 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = ""; }; A1D67376FE91717287EFD003995F1603 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; - A1E5E43D11B548EF0407DEE70F8A3ECC /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; - A1E6D853F65029BF42BA1692B5EE1D63 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; A1EDD5A33711F21EEC893EE19A9B8F24 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + A1F4D676DDF4AFA47254899CD233F1ED /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A1FA99C9A41D79C4EBE972BA7A8CA3AA /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; A21FADACE1F2797514A803DA0320BD79 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; - A23EEAE241A0BDE6E2EF7828BBEC8637 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; A24640E466C96B084FEE8B215616C1DF /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; - A24B4F453E6120E6DF8BFB1B867D1375 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; A255BBF778461528CAAFA14B8CE397B7 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - A256F2A26CB704BCD26F3511781A2DC1 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; A274AD7F025E5AA596B5E18F9C42D782 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; A27549C6E0EC15515609E01AFCE7938C /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - A278B0D38AE628106EF8DDE09A9EAAE7 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - A278D90B54A2BBE0F724E45DED0A0B60 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; A2842000BC238E4A5FC678C67173DDA8 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; A289E61D153279A9DCFBD9173687CB3D /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; + A291C68FDF6EABA33847A4B7BDEBD91B /* 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; }; A294E318618A97FF297AE1D68EB73C1A /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; A29F8028A89602700407D094ED630714 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; A2A26598445C79F8BB93C4813FE13509 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - A2A6B58C5A357BCAA4C1DA66D60110E9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A2B137CF8290FD43E9A9552820EA2F1F /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - A2C74282D982E72086CF307238D5F5E7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - A2F13E60E0476038E4598E5DC9C1AAFE /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; + A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; A307C23F73060CC6EBC22ED024F3512F /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; A3090845172D72D4D19ECD5800982FA9 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + A347E733DD144D64D06020C3913C52B3 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; A34D911B5024A8FAE46EDF359A0B735A /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - A35ACF61E819D51DAC49E3686FB6D2B8 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; A36EB7EBFDA2BE3CDEF486C51CE6C823 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; - A3915613FC7F793FC43A12A1AFB1A57D /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; A3931C325E746C77373C3AE340D4ACBD /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - A3C2A4D215F38C04AC262DE863776695 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - A3C7A3754F55AAFA5B4E91F0B9C8830F /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - A3CFE45A4F15CB1D24932C11C9292E85 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; A3E8E3FFC84CC4831A5883942616F125 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; A3F587860661F1E7632183EE56BADE72 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; + A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; A4062230649EB3CAC5B2271CDFEFD865 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; + A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; A41B1B89AADA3EBB33CDDE3B901F241D /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; A425F067B5A19475E60C81F33C517AD2 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - A433A0364BA5242A77F3403965A71642 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - A435C1891B0D9C96FFB2BE5B1D046E0B /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - A4395A9D680EAD963EFEC1C87247E4AB /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; - A4420FF6267583F40CA966F815D649EC /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; - A46F11438F7B4CDA138E6ECDB2005A91 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; A47AB1A17382867A0F0F2E0347948C84 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; - A48522EA0A383575734E4397FE6824C1 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - A48648A2E4A8D6D50E6596F6B3A006C9 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; - A4887DC06D6D5076CDC455CB5695F3FA /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; A49223A38130B4616CA93C4947B34FC3 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; + A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; A4A83B30FE31C46C92E5800BECFF4B29 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - A4B8A0A9700975F91433BD752EC08FDC /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - A4CDB0D9C73E51FFA334B04682922010 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; - A4D4864EFF83C585A5F6649A04C15C12 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; A4E59AA55DD9A126F59C095029C9772B /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; A5066F60713A65BD0F391A4315AAA8C8 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; + A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; A510ED9C562098C6CBA48E158517125C /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; + A5190ACF6DCC4A3587DB78E561CE8A86 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; A52DED6EABDCA6B67A0AC1036133D298 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; A538681767405B4E9FF83C15780AE054 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; A540849F2EE5DF78C104A26980E4B083 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; A54D6B482F7F4C1CC41A67369AAE530C /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; - A55251730E9B0658BF746EC7F25139FA /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; A567147B5F4623BAA13C514E701A3F52 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - A56A945706CBD80781012DCC652B159B /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; - A58F9A9E0B4209A7BDFD1D6D8A459A00 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; + A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = ""; }; A59EB6859E98F06D6B27ACDA256F18BE /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; A5A176C2A092D10F8B06080D636307A4 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; + A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; A5E47FFFD2C6FCEDA03AD43688CF0763 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; A5F9643D2F853CD41A855F0FDCB49280 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; - A60C3F73C95B68C51F2ADD208E146E1D /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - A617C1D6C8CA8A58A8E15995D33F0A27 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A61B9B90F1F3F013DA9E5B34526101B7 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; A625D5B1A00836A8D8D0E7AD63B34B02 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; A6307680F6EC7F7048B72294B68290E0 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; - A63170E511426653865C518DB425C63D /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; + A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; A64B9EBCFC5B834095183ABF0C4B1D6E /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - A651428CB1B26E47A76DCE58B8568222 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; + A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; A65E6A1E4A701FDDB24B67AB64FE9135 /* Pods-NotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NotificationService-acknowledgements.markdown"; sourceTree = ""; }; + A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; A674C6505A3B291E753BAE47C2EFB218 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; + A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; A67B2DCB63EE65810BD99DD048AFCCFF /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69354C4F0ADF78BC18781EEEC84C7E2 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; + A695A13C0E5F831730D8888E9514AD6B /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A6A30629E47DB05D80D3CE9BC7C774F1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - A6C680711EE2C68E572587F007B3D64F /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - A6D9444C71D21458FDDE2F3C027CCED8 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - A6DC7A56F46C2112721188E13D736639 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; A6DEDA22580431B2F80D82C15169D982 /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = ""; }; A70267AA3D3AEE12F21F1A7876760084 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; A713BA4620B719C691AF9CB67ED5756D /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; A7145A05F714CDFF5BBE79B4651EF4D3 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; A72747DB044F16258ECE383BE6729A6C /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; A73099DD75017003E8AAB31EE4015F3C /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - A7409C79FAAD7C1330FBAA89BF53967A /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + A73E5D101D8AD4362F724BCA7D09A2FD /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A741DCAC4448E118A33E55A984865F2A /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; A742E5671BD890389F43F6E3F4283722 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; - A74AED9AE7F475C24DADC738398585D3 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - A7519D8DB210259D70E75CAD919781E0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; A76F3740E25161D6CA04EFAEA904892B /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - A77DC9EF4D5FB31CAC70FF3C0D5093E8 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; A77E722608D3EE95549C9CCAF5BA7C98 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - A7857C979B94CD9DA9AF8529C28346D9 /* 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; }; - A7C0625203A33BE888C56B17EE0AD136 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - A7FC575ADEE4F53309D7254C630BE9F0 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; + A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + A7FFCC9D6C2098659C31E890B08D598B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A805DAB37BDE5B7587D60828B5C486DA /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - A80962DD9C04567AF28B364DC5947C6E /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; A80963FBEE1028DEF8C4D32F24614CC4 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; A830A63EB2E8514AC5D3C09FE3CCDCB7 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; A83221DB1AED012C6FA71A992212C881 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - A84A35AE99917BE042B79F922069D257 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - A862970B27586A522D000F790CC79A99 /* 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; }; + A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; A86DBE92D35F38B5102FD97D4F332059 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - A88925741244FB2F7D19AEE6C9B2F904 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; + A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; + A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; + A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; A8B487AB07482E9CA902D4680970FC82 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; + A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; A8D27969317372F0383D1B9F1533BFAF /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; + A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; A8EA16EC81E65B135245D99881BAA99F /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - A8F66D2702499EC09BD8569800380308 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - A8FD6AFD5332A5C260CB3E88C9FD448F /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A8FF134B307E96301A57005807D2726E /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; - A907F87408A2A4ACBBD17AEC4364D0C3 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; A919D11DDD00D385BEF1F93B4617E820 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; A92991813AA6D28B2E0C94DEEA1CB5A6 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; A92E79641B310162AD0C1942F5B389D8 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - A954A99B1855EF7E0DCF45E3D72E5D57 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; A9858B7499131D73458CCDD42363A5AB /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; A990F3724B389E9A3F1D99AF48703368 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; + A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; A9AA1086980BAA6EDED10FF8817158DA /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; A9B22405078EB22D6B97880B7D72BA94 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - A9B5082E9810157B467FDEBCBA134270 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A9BC48E400E1ED2E1C0240E038929D42 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; A9CAB9883D8334AFA0E33C8F4507BB6F /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; A9CF7CF5EE80EEBFF0913866EF73067D /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; A9D230534FF22D171D1F2799C5C38FB0 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; - A9DF9FC613E6147B5063F5481190661B /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; A9FBDD16D8524D04F2E9A34E9A7A877C /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - AA0FF811D8740D4E736612F4A20978FB /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; AA1F642328FC006E73638E971097208B /* MMKVLog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVLog.cpp; path = Core/MMKVLog.cpp; sourceTree = ""; }; AA2A2476FB2776F5D7B808A2C5A31C05 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - AA2BA432F71A8DD91B5123E64DCAE060 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - AA362D9DD0F4ECCAB45FC5EC88ED3692 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; AA3DD2346D2A8EC698CFE0B7382E1E3C /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - AA5E7348653A3937E94DB3A2E499323F /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; - AA6CC12CAB9F7D42AFFE5C260CE9D327 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - AAAC38381CDC3D218D73F4945F716C13 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - AAC98D681B86BEBBFE86C4BE23A0AD3A /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - AAE940790A5924D7E033728DA7E02081 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - AB1251B8DE91FB9547F8EEA0734C1FC4 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - AB5375DB3F24B9B116567C0EDAB83688 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; + AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = ""; }; + AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; + AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + AAB3E5DC0F0C5F5097B3F081E87DD052 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; + AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + AB28F7A9ED8DD36DDA6C790D3E11AEA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; AB5987B23611640B17D0C9DE7EF77858 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; AB5B0DC5A3DB374E8AECD4DEE739D781 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; AB79FE13137E7659391D350C4D520D49 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - AB7A1809EF13D7C53A95038897BF263E /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; + AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; AB941A4A795E00CF510B118C62D04E69 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - ABA7A6545454AD458FE43873123D5191 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; ABC56A6AFDB3B1D8D1444AF070284180 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - ABCA33AE0BD9E4632697DE558DA823ED /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ABCFF258998CE1FBECE5F27DF83E6367 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; ABD4C2C2142A3E7B8F43D1879A0D991A /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC0A6C8D5D38EBC13F5B8A8F5598FCD6 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; AC23A228A9360E31082397AC2793BDBC /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; - AC3756005F3A665301DB75982D9BE67E /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; AC3B704C6912BE8AC0725F4978560525 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - AC42F42E007DD4FC1C3404A4885D5F81 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; - AC4D89DC055743B6D3C35541C591CF81 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; AC5B1C9755B9FD9C7BB41BFEE70F6DAC /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; AC5DF7E8E353D35E40BA8F49221C40A1 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; + AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; AC7037C8611A45C4CBE6A7B2600A75AE /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; - AC77A36EA9EDFEBD9E5891D0B7C06AE6 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; AC7FC17AB389D472D0513E74ED376054 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - AC9759E576A9BE20BAF9895528E10CD6 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; ACA09118FA42AEA231FE0A5A66AA78F1 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; - ACA2C7C5FB8BCE12FC69745BA4FA52B4 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ACC1D49C3223D0787BCE5A43FDA89DAC /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; - ACCEE285559DDD716A2D27C6E00242DA /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; ACD73B37A1B1D19DFA67134D35AB9518 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; + AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; + AD1058B0F20D3C367979F14EF0242078 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; AD2623201AFB1ADEDACA7BDA3F7B18BA /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; AD396C56ADD49C2490D8B950A3BBEB7B /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; AD3BAF3EA12400C8FB7278F1F215FDFE /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD439684480ACFE8F0F51B52A85432F3 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; AD504639AA59D8D167ABFBA539643A19 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - AD5883319A51B95FA97C71A2FDE674A5 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - AD6B817761B8E2E9EC23F01C5FD81DAA /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; + AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; + AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; AD8FC31B2B3A41E2DD01AE5F916D08D4 /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; - AD9B25A8024811C070BA66D1FEF3F7B2 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; ADAEB1B80B33709735CAA46171F2C305 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; - ADCCC178323BEB8B5FBB40FAC84D7E80 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; ADD9680BE4E70DAC99F4E8F28E80749D /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - ADF23AA1A985FE7AA0EA26D6310EF410 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; ADF8285F30743113F4CDFCE81A0E7309 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; + AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; AE40C330752602693855FAC7CF6345E4 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; - AE4A8E7D4B9681AD961295AC7A482D0A /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; + AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; + AE47709761629CABA2BA6E4131D3A178 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AE51BE792CA89F0E1F9399812F81756C /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; AE7BD1DDAA769BA24E081873660E99FE /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; AEADE573DECCDD96AC88553DA9D0DD70 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; AEB612B0E9982AF890DAD9C6D1AE7055 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; AEBF8573CD3A0D7CC987247807516ECF /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - AED1EB8FC2E5CEE44B89AF8A87C1E780 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; AEF23C7434D886C7B31145EE2C9BB147 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; AF025C179AC97F527B225FA45CC41CA4 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; AF02C242465A72DCBCF36847EA043397 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; AF141004709B4596316A54C26690214F /* MMKVAppExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVAppExtension-dummy.m"; sourceTree = ""; }; + AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + AF4B58897DB5D08DFE4FF967DDFF100D /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AF613F926031A1C3D3E307B78680D2EB /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; AF7652D1D8ADD58645565C3FF3CA65C3 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - AF7954154DB1CF4A16573D13B0E740D3 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; + AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; AFA7E759EA59B6DF7EA8476959CAE618 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; AFB62303CC4672914C42861A7628B4AA /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; AFC8475FDDB23E3A0129FA3A18980686 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - AFD02F6A5B255CC437C699658BE9F7F4 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; - AFD41F4608390751ACB6E396AFFA0C5E /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; + AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; AFDB4C9806333C32509F4DD1BB3599DB /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; - AFEAA4053C613F9D156867FFA9FBA36F /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - B00050AF49AFDB58E7DFC270D4E6C1FB /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; B011AF2233ABBCA46FBEEC71BD95C430 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; - B01388C67167AE4A22B47907EF5797B8 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - B026C07D70D49BDB94CD184519B0BBA9 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - B0313497B41AF83839A837E1606711D2 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; B03E7A6B62A8D69B3718D40106CF4404 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; + B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; B044E7381B12A15E93C5D3C018AA9CF5 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; B04B2211ADF548091F1BD6F7397CA8E1 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - B054CED19DEECEDFC631A81352C9E462 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; B054E6F3AAE18522B8731B7599F3E2F1 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - B069438A3A5983AE69EE34D182D84A42 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - B088A3AC137B7AD179649962D808EBD6 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; B08F408CCA7E09F164029244AF013E1F /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - B097AA51229244C6EA25EF8B57BBB1A1 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; - B09F08E99E15DF1FE879D2AC71A89178 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - B0A197C3C8AC135C935555AD09ADEFC4 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; B0AC1A227C55F22C9ED263554CBCA903 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; - B0ADCCD9872B693F95E35EA36CFCA01F /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; B0AE3D11636D2FAD72C01C50C8BBFB80 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; B0B130668E29AD268BDD4885F908D6E2 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; B0C1CDDA67C37CFA92D06224CD0FAA4F /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; B0D08483E73D8C4155335DD497F872AC /* 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 = ""; }; B0E60F02DF445A197564B9B096161BB2 /* opensslconf-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-x86_64.h"; path = "ios/include/openssl/opensslconf-x86_64.h"; sourceTree = ""; }; - B10D9AFD6D4338678CF1ED225B93617F /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; B10E1E091970AE1097AD6223AE30D8D3 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - B115D8D68282724351832DB38F25C185 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; B13463CE34BBCB8B266C1D76A2696ADC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - B140C5D2948B7E35261CEEAEDEEC6EB6 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - B141395E864F5DB8674654FF4E361B8A /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; B14B78DD999F7DB67027B075EA4C3753 /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; B14E29DDD3220AB16B5AF9D33BF183CC /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - B16DEDB2E78FCF1F8F83AB4CB88BDAB0 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + B16412C2E33D7A2B1376C36CE5CDDB24 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B172A9029098F47FCACF4F7708558907 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; B17506706E8AD362D7034C7950E45A4A /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - B17BA3751D3B4F869EE1A11EC9ED280C /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; B182D57D7021E327F308D5219F260659 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - B1AE798127CD3569385370EB0CEA8562 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - B1B6672333382D5B13F526B215EB8A39 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; - B1C98D41BB9E5A3D8AEEAF9E071B93FD /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - B1D44806E9198CC0F0E2175D1D92AF59 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; B1D93473A86CD934BD1038A56853136D /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; + B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; B1E993A38989E296E043B5C53FF43EA8 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - B1EEFA2A7AA56DA2A2188C134C29F3C0 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; B2004B4E40576C4C203A4C5BFDC702C6 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - B2356ECC6B9ABE8A8CF3488375A6086F /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; B23FCC900DEE77A7CB9FC85FEB2D8393 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FIRExceptionModel.h; sourceTree = ""; }; - B2670751A97310AE5AA215BBE20D9645 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + B2783E8C8A79BAE9AE51E80D773DDB2D /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; B27F6E993DF24D410A1E20DF23310A0A /* AESCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AESCrypt.cpp; path = Core/aes/AESCrypt.cpp; sourceTree = ""; }; - B29B155D5D38D41B1A15462AAC4699B7 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; B2A31DCF1982C952178C804B30D8FABC /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; - B2BB7021BF8CBBFAA5C1E8B3218F9351 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; B2BC55187E416A8E6A3A73827798BFFD /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; B2C2327B1E76FEDC5E1BC5D098B75DF3 /* 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 = ""; }; B2D02B74897288E6885023A05BDF492C /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; + B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; B2DD73F23E8E47F3810615C46B94DF58 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; - B2EEBD1244327E359E2B5D7901D85136 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - B3476B5067085EE84616F036513051D4 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - B3622F0BD6A03A834E4E101D1A89D5A2 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - B368B9AAE410585F75A227CB8DBD051D /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - B3899DC9DD118473DC8A4ED843B8CF23 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; B38C2743AAC0846B2D22EA0225E3AAB1 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; B38E379A16354B1527B0C98E5DB7B2E3 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; + B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; B3A052BB92C70494B7D1908A0A3CEF50 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - B3ACDDFF33E86B07EC03E8F70F31070B /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - B3AD9DD291ED51D0E0F1CC44136DE80A /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - B3AFA96A667389C4CA89E98BB73C2A77 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - B3C052F03275EE44BB2C9D5FE290405B /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; - B3CD37F75CA5168D4D3911E55ADAC6B8 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - B3DE3AE87641354FBE8D6ADCB239D1BB /* 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; }; B3E48D4E52F4BD78C0908507ED2E4102 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; - B3E8EDBFB5EA37FB6FB895A6E3F05229 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + B3FBA663983BBDC4F2180010734E046B /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; B402A5E83CF2AC341ED741CC58C7188A /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; B41E0974D5F18FCCEAEB4B15F97F957A /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - B433A05A8B2D01A1F22FA9A055BB3789 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; B4348DCBD70BF95ED2AEB6DDBF395C16 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; B443013ECE064D18CCA3446CB228F884 /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = ""; }; - B461E480570A317749311A8AD88A6A93 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; B463BE1B95E31FC56D2116708584577B /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; B465936D467BDA0138F2F1E491FA9478 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; B4708E70C3180E114A6D1632FEE02F33 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; B474FCC6971E073D35E97B0AB5F2D70C /* Pods-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.debug.xcconfig"; sourceTree = ""; }; - B490D1D95DD6CEF97E0344553BB8DC53 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - B4A30C7F4816E43DC60E9932524A564B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; + B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; B4B17C81BE735804B81E8213F740EB9B /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; - B4CF26B3A572A32E3548A3BF62BBC69F /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; B4D313D8A49A00FC938EE3BB7005BAAF /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; - B4EBE2A9E08BDE917D2EA07D3BDF5A00 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; - B4F5CA118313BE2728A3FF52A6216808 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - B4FB171311E3FFF3799EE2E419CAEF22 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; B4FC835C27B7AF6477DE7EEB0392E293 /* CodedInputDataCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputDataCrypt.cpp; path = Core/CodedInputDataCrypt.cpp; sourceTree = ""; }; B4FF54CA08915921A79C644F03386D42 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; - B503E31488AE8659F432E15C7319F4FE /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; B508DFD455108C925909740964433AF6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - B51DCF22D60FF88B6547415A2548B15D /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; - B5231401CF02666D23907ABEFD844107 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - B52A61730AFF2D677E328B262A2D7B1B /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; B52CD50EEB7B58A8AAB4403DB7C3A509 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; B52E5F294AC830CB71560C2923E82B0E /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; B536DE787B684F3AA2D7A02FFC256A03 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; - B53F20CFB59A32F72D9E730386FE3C7B /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; B5442A1BD758B0329C95244F108318EE /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; - B5464E016C06A4508A341FB839654EC5 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; B54C96C636E8209C4BCF7976B30710E7 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; B54D8624CE6218BF163A9B3FE6F328EC /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; - B55BADFE24214C1DD81A359070BCD0AF /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - B5728199172032F9FA81D04B4D54A54D /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B5748CB2AAAB927F22B385581467F17F /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + B56B664308FCB6852CE5A0F93B6EF57E /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; B598759CCFAAC0644CCB774DD52E7B7E /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; - B5BE8EC1E7ACB1ABEC2D7D569DE30EAC /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; + B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; + B5A0E639535A43CD1EE73AE08E99399F /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; B5C69E758FB2D3A24907A0129B96916E /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; - B5D2C5934A468F8D6EDB7AE6D0EDF05B /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; B5D5546E4E9B124EFF83BF5E6A7A285D /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; - B5E0DC5E1BC3BBA16837A8CD9FFD8A88 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; B5EB86DD26EF41F80D4D3BA670D485F0 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; - B60A63908E158D8558B4CA7B539FC1D0 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - B60E5A38944754CB0E0FB304F34C7139 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + B5ED26149548ED377E027FEBF35D4DE5 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; B62F3C7D15B1B9DC583296B7645BB20A /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; - B64B80EEDD3D9194429EF5CD2A1F9DAD /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; - B6684ECDDA4F69F6F86EF20CFF72B9DE /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; B6884E848787ECE8DBDAAEBBF4E527D7 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; B69A2764015E57C0D5F50DB351FBE1FC /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = ""; }; B69E2979DB6DF82E5B9E92C3DCB55EAE /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; B6B97EA2F8977F3CEAF07603545096EF /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - B6D51677174B819C212DC134047038F3 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - B6E080DCF6D040B38C1CD1DF2EFF52F6 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; B70A573BCA9B6B41C0BA4C0834D5680D /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - B70AD1FD8919EF72D41C5964FBDBD118 /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; B71AD9BCECD7CDE1AC011FA0CBC35ED9 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; B71E6BF7C24B85671CF6AB6FF48ABCFE /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; B7344D282B26110B08D7B8D7D1895AFE /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; B73E01033F56F4F9DC335F480B01F175 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - B7473579B5ECD99A173E7C4C3CC480C8 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.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; }; B76DDEB4FBB4CA8EE7DB029F225EBBB7 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; B789F70E8E422A96F5F3A64A6C9B970B /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; - B79DB8695CE6E5D16922C2C2E8E096D2 /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; - B79F35BFC568B66EE5CBB1E49720ED68 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; - B7B1B26952C9E6BFC7F36231BE4628E5 /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; + B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; B7F5850370B91FC626DA274DA5B4D8CF /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; + B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; B806E2897D1CD8A72BB53B436D046285 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - B82E5268364C6B7E7E7CC1A5BEA1981D /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; - B831DE2E14FA1AC3D0C711922D62D355 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; - B839FFE31FBF5BBCAA74912A4442C4E0 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; + B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; B85DE5BEEE3287E6E70B95FEE2433918 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; - B871B29AC1D901A7CD1B1F289AA76646 /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKV.a; path = libMMKV.a; sourceTree = BUILT_PRODUCTS_DIR; }; B88D06C2071BC0AFF21CC77D4D60CFF1 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; B8929613C676A28B292CACE916AB8B84 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; B8AAF916EFD854B6431AF274ADB8B760 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; + B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; B8BF6B0504A160312240DE5D8E4D5032 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; - B8C051CCF1D32FE5FD1447947982F0BB /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8D3D9992EEB30FD948A2F586CD08C0A /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - B8F036BB59D70BDCC12BB867562655A4 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + B8DDF33544CB1BDCD56C15CCD835E04F /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B8E787BB827088FF028634E3C9C190AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; B8F67AB790E6701A850EF3960C5E1CDD /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; + B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; B901F19FEF43BC84CE222EC37A41FA3E /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; + B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; B903A67830E160EE0EF8C295A48716BE /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; + B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; B95FD3CBCD00F7E4127E29929C64FE90 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; B978CE5AB255225FB9E1244B8F9A4B00 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; B97A113684B4D9213FF2A8D21E5E207E /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; + B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; B98CB91D6B7838DE160F401F45EFC20D /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; B996C693A38D812D6D4B4A84613FE4F0 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - B9A23C92A017240FF7D7732EF5965310 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; B9AC738BFCE6F9FB9C927423AC662D8B /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; B9C9AB84A9266E3A95BAD181EDC5C2F3 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; + B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; B9DAC0C34C519A976E3B37141D84D98E /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; B9EEF477D548ACEAF2222376E62549FB /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - BA0BCDEE8AF04770C9EB812AE9F2933D /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; BA0E5DF052D8B15D2AB5241F3B3FD619 /* ThreadLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLock.cpp; path = Core/ThreadLock.cpp; sourceTree = ""; }; - BA209FC21F2A8B4D6E748065B71A63CB /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - BA23D1F44EF400B38F749AA56500F322 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; - BA422A71980760825F9A0DC240E593FF /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + BA173522044DEE0F36BE18B95FF4FD19 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; BA47EF8355AC85F812DDC3DDC0F6B2F6 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; BA49F138F43529241E7715ED61E9CB03 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; BA640F40EF83A956AFC558E6EC6BDCF3 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; + BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = ""; }; BA8076322D07A19932715F339945025F /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - BA8089CC8AC382F32DD4884D9040CF95 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; BA89430F8B09AA75B3E6F6F35190E02A /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; BA8D20000B9413674B8673B7CDE2E72C /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; - BA9B6BECB66C3A4A180BB0A52F06A371 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; BA9DBC64DF6D0336A60497A93DA45E7E /* InterProcessLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock_Win32.cpp; path = Core/InterProcessLock_Win32.cpp; sourceTree = ""; }; + BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; + BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; BAADB84BC96AC31F8E4BB4DAA7E21AF9 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; + BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; BADBF107BDB808A6AB3DC7AA8E630E4A /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; BAE1EC9CB0B7AB6C1F37C72C73133F9D /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; BAE4E01CD9ADF01DB764AEB2D2F4B9B4 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; BAF13A52C1805CF080B23ED25D66F46A /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - BAF3B2AD497316A495A9B1133DF766F4 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; BAFC42D3FE10505C8A1F403FE5F1CE2F /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; BB1B33C87BD0CF9A48BC11309EFFC382 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; BB34EEE87843613C0628DC3E43C08DB2 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; BB4E2B4B71D3EA3BE4B3AECA7E68359D /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - BB4F566B9167F8B5C5D3CB768C2CBF6A /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - BB513BD6FC9DE1B2B44C852F1D4D160E /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; BB69159A9E7534B5DC700DC21108F8F8 /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = ""; }; BB69E3A616A3A69DF7A2CA81DB6B6B89 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; BB735AA59253F87CCF6D4E8061D1B214 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; - BB7AAA287C8C1049843DB512B80D2167 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; BB824F4AB5400F724833397906D2FF41 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; BB848245AEFFEBC478657CA8E907E9E5 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; BB95FDE031FB25A2D1B2392B887ED18C /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; BBA8A54B05081EB535BC185B038426E7 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; - BBEEE64D22A72F3D351D0FD8F4256BEA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + BBD988D67BB23F05086B6AE2FA5B32E9 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; BBF4D481885ECC4328D5D6CEB1D010E6 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; + BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; BC0F06FB3C6469DDB7A0108FD0F48D79 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = ""; }; BC11E5817E93C0D702265A42715FF434 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; - BC26C39986B571E74A37D435B04D8992 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - BC2C1DF23CD0358ACF87C73A488A63F7 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - BC2E31737282D6D55A193285CC2B879B /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; BC3CC80762661768FD845DAF6495B7C2 /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC47C5EAC8674AE66446BFA038059A22 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - BC4A76B1E6DF63C0C93A15A80B67D774 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BC488A23661459D78B3AAE07E520B0F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BC65CAE7875248D14C21132FFC785A51 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; + BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; BC793B789BC6A2B2ACBBBB5A6E807CF9 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - BC82ADC2B97692C20AAE4A173DC86213 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BC92C6B1851B67239DB928F77693DFDE /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; BC92F5C7572D46E31CDF04CB9FEC4742 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; BC9C56ED395F27A3779D949995311950 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; BC9CF97DB93DA9C5F72B7ABEF9A5B4DD /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; BCBB18C5F6F1839997C6A049C0D897DA /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - BCC04C3A8EB769138A43B0A5CE76C439 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; BCE2BCD32106C0A47D83B684B11F2B6B /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; + BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; BD37875EF15239DF7C195EA18DC9ECC8 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; BD379A730B9F2AE40A9AABEDA8A1602D /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; + BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; BD6D68FA7B495C71FC7EF52EC2B20F9D /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD7A0DE31DB1CAEEB5FB5B670BBC31CF /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; + BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; BDC9EA71B0021E634E402664FF65CBD6 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - BDD786D0B4814D5374113323BB5BC250 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - BDDFF8C7AB7374915FD6519BA7F8DD5C /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + BDF605201112541ED81426885684670B /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; BDFD3B6E209739769E4DC08A11737812 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; BE0072E587AB07D442D8E866C4321D9E /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - BE0643EA3378DFE88430A4E45C70E561 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; - BE186CD2C4E59F57D02194B83139014E /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - BE1D5AE0CC546D796A6903C35F9EE15A /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + BE073D0DD5ECA301ED61E24C790ED6C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; BE2C6A9AD5888A67928FE56FBABC1FF5 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; - BE43FEDD2DBC657A91E7648CE5541DE8 /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; BE649A5B3C8548305B0791F6BAC29354 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; BE763D454332C89C581D5761CD7FD5DB /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; - BE942768A1282F53A50189E60B7808A0 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - BE9C5EFADBCB46EFB6044944B8C58683 /* 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; }; BEA4D625CB57F79C19032230C45B48E0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; BEB79A4431F3C32CF55295A0BB31B7D4 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; - BEB9438D6D2AC22E718159DBDBD1F30A /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - BEBE73AC339716382E27B6AA050669E4 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - BF08A5A72A796E0D7578924045CF8A3B /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - BF0B71563DD435BE29E990FD40338B37 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; + BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; BF16A1CEAFEB987C690058AAF6133DA7 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; BF270AC328E5EABF4649740D18631529 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; BF3A5E967B851BD1E149E3A89F148124 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; BF4288E6A85C4D6C401DF60967934E4D /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; - BF42C41C1F4894FC7CC6648FE069D9A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; BF4FE7D66C99F2D0780E5D79E2950BD0 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; + BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; BF9C63F1F1AD22BD3CF112004A813279 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; BF9F2DB2933A2B5D066F8485471F15C5 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; - BFB3B708E539D0D6D0607CF4F424D26E /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - BFBF0EC1567CA5D10C35591385CB18A3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BFC5FD1A7B2AC284F06E53E315093AAE /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + BFA3321B234B08C7B816977EB7FECA58 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + BFD5E52AEA94E4656958C33DC62DF317 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + BFE5D863885FCEB1BE8FF6690024C0CB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; BFE64C332B5D529A57DB416EB659E120 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; BFE72E75C6DABE5D29435E3BE4BDFB6D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; BFF6A27CD19A88C167BFDCA21098F735 /* MemoryFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryFile.h; path = Core/MemoryFile.h; sourceTree = ""; }; @@ -9576,976 +9596,990 @@ BFFCB14A90D6148FB43FDF9D41AE16BA /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; BFFE35C14D05067603190D3E26CF57E4 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; BFFEC177CB587C0C1E06AD0231CEBE1F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - BFFFA2BF22DD49E1CB25316C7EC3FA96 /* 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; }; + C0030898FE4DB1557627B02C59286307 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; C0188C57BAAF282D715EABD4FA421E95 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; + C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; C04E46048936CB670BF56D65CD527221 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - C054A71F6406F31575B8BC9E9F04F668 /* 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; }; C069F4AB3024907B4B9F727C3B5BD380 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; - C06C463B264BF781C210F9668673FC4C /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - C0744341C04F176ED6B9D0F0FF5B9597 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - C07F5F0682EB28343DD522BCF81D34AB /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - C0A8BAA7A6BAEE2C5823F8DAC191B3C7 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - C0B962A3B09146BA12DB89B01038E78F /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; C0BB45C880A0B0FC1D110845D427C6DA /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - C0BB513211A6DC708618C88791528FC0 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - C0BDE0A216967B3C59EFF86E90E23EF2 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - C0E9CCF0D047077A12B754DA7AFC74FD /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - C0ECEA6BB9843E0D132FE44B9D076816 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - C1025EE494F9E26A66776E07BBFF698E /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + C0FFCF3DFB89B29660D715CD5BF1E35D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; C105EC08146FCCE2785CC4DB6C5C4393 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; - C1195969C1029363F953960E5A831B29 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; + C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; C148D0C3AF01D9DAFCF5C2D8E557DE84 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; - C149B4D9ED96BA8DE497745CCEA37369 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - C15A7A81200D21B6B197D4B09B45207C /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - C16AAC66D67CEF3568F1266F452B1EF7 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - C16E9D24AD6BBD4C183C61CCD2EC62A0 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; C176202B0EFF6CEF40BE45FD2500C537 /* MMKV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.debug.xcconfig; sourceTree = ""; }; - C1851A2199779D0A8BFFEA3D0D010C42 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C18B41568582F034EBDF8E43E299BD5A /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; C19E86038C174C484D42D219E678DAB1 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; C1A7AE40E150BE5BDFC11DB49DBB09A9 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; C1BBE9032F531E4EC1C6C7DDF23C89F3 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; C1C86AC0E12A9C6E7EC6EF89D40170C9 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; C1C9AB7FEBBABC9C85DB417752D1B895 /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; + C1CC9D27B7C27DB8BF989C0D8324203C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C1D072B63D09454F7C7CA56040E8109A /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - C1EE06C50AE2DD76E9E82007F2EBE1AE /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - C1F8E33AEEE10D8446F04814C26CA980 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + C1DE9F2CA4B226AD48DEADB4C14A2A5D /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + C206B460F00BE3D60B15BE7D81CB3D3B /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C208C377500CB45E85C51BF651206F02 /* CodedInputDataCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputDataCrypt.h; path = Core/CodedInputDataCrypt.h; sourceTree = ""; }; - C22389029EDF4008F44BE5DEEB1A4CE3 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; C24650D12419B4EE7B1AB449E367931E /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FIRStackFrame.h; sourceTree = ""; }; C2587209864FD883C05CB17B58A05DBA /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; + C25E4150B5718F88A5B69F105C1D3A6E /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C2704AB8D010D22F2049888E65BADBB5 /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; C2840E71ABD54957B6AFE59039641568 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - C28674E051FEA75FF8455A012A5F6146 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; C2A548B344453E444A4796F7790CF9D8 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; + C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + C2B4C94524CB64BFA50D0CCB148FFB77 /* 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; }; C2B4E90A947A43960679E397F59A9CAC /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - C2C5BDB03F1A54113F94AE0B8B930CBF /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - C2E94BB6C228FAFB282EACC9F2ADBFAA /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; C319E8C5B9A437B1828F40722AD15AC8 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; C31B1B35AC3687E7B5406E637B64EB54 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; C3338AD03FDE32FDBEF73D073DD11DEF /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; - C338D468CB64823785703C6D39FEEC8E /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - C34647C34D21CF4B30AD7722FEEE08A4 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; - C346F0F21097A7CAAE7FAE977F1E23CD /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - C34A09E905513CFC4F70E84DCF91EC56 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; - C34FEF489AFE9DDA6564C61B1D9588A7 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - C35884CADADB62F9A4C5720A029F40C6 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; + C348CF2FAF6BDF7E1B9C0E3F1B4F473A /* 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; }; C359B5DBA4ACE190A7F72F35A61D1BE3 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; - C35CA5F366D9E90E75B49F02508392A4 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; C35CD892B3FFA25DE377E2E2937A40D4 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; C3AB91CE88C910CCB9294D27147C129C /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; C3AC9C3CF8588312620BBE5C3153CB11 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; C3C920B8349C2BC219537546757BC104 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - C3DC3601D78D546A2B55CBD7402F0DBC /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - C3EBCCAA8340B2292779478E322C0F7B /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; C413BD72DDEBD4CCC83EC286C1FA5C99 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; C43F20A92B180AEF7A8C6C7AF12F1A10 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; C442D24BEB3CE66CD3C84EC77FB7D7BB /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; C449A9FDFBF4AB6D4736B5436DA11E93 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + C44E82C1ED45144F87A4F892488E0F9F /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; C46034AC441CAF5D9E2AFC8218C74065 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; C461345C5EBC41719BE75C1D174389E5 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = ""; }; - C46E5CCD8F3CE4B3511D8B9712E51671 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; + C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + C47E09C373B0A0FB35238FDA7C561401 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; C48B4E73BB59A201C65E8D5E9183CC18 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; C49745BAFD1F99444843FA27BCC0BF55 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; C4A8942F7F2855CFB48F9535658594CE /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; - C4A91A6C4526F1A2288089FA57791041 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - C4AC0EE0CD8F854C9C29F25A60449683 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - C4C7E5F3C9D0EB2D75150B27CBD2976E /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; C4CD8B9BCF402EC556F8872B738F95AB /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; + C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; C4EC78950AF5C05FE297047021A519B3 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; C4F664889A8E779D64A212931DD712C9 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; C4F9C226F69243FD1C79D65C7BE53372 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; C4FCBC1797EBAFA2945FD55F5767E1A3 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; C50A9FFDA610BD2983A7ACF8123C704D /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - C50D2ED0DFE5A618E2D84E2F24172D83 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; - C51E20BA37A4D8FF9A4505E0314C131A /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; C5275B82FE252A5A80218CFC82C526A5 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; - C54B4F6C51C0330DFBC714F49CF6D0C1 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - C57CCB09D5FE66EE472ECF04389CB2C2 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - C5B070B2FD89F63D6338848592BD886C /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - C5B98CBE90DD9C76C2BD86B8882A6AC3 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; + C56C88D596F7791E65D2EA37041F6B22 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; C5D2959A6207953C39F1FA555E1EBE73 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - C5D7EF7CCED8E1EAD38CD82C1BDBD802 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; - C5E3F026260CDA3D759A383C35E6534E /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; C5E4C0A8413D4F42D209506917181EAA /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - C5F649EC43C845AFEB276295AEA4BC51 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; C60144FAACE184644DB01694A8C6D554 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; - C6041DDA4182F72E37D472F3921A1CCE /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + C60524B5B9A9D8052ECA2416033AC77E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C6114C15E0FCBBC21B34CB75B15B315C /* CodedInputDataCrypt_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputDataCrypt_OSX.cpp; path = Core/CodedInputDataCrypt_OSX.cpp; sourceTree = ""; }; C6166541CE2D2D90907B298B5A2771CD /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; - C64622D2FF9BCC7D1F532139C68580CB /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; C64EECB2E8D7EA9669FFFE237B49A3C8 /* CodedOutputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedOutputData.cpp; path = Core/CodedOutputData.cpp; sourceTree = ""; }; C66058D6B35811735A537386F5CC314D /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; C660A0E99EFA410A5F3EDBA9D02D9711 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - C662A9566212F94052EACC10AD44FE80 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + C684B614F7A5FBBA191DA064B25F6FE2 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; C6915F0E2EB304BA1935966DC0A4CC28 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; C6A70C618CB6DBC74508136D1EDF9EF1 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; C6BE9ADF4EC792E91C49786D85F1A9C3 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - C6C1371CF0CA60745FE6D0CFA7060A59 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; C6CB63DE22FDA5E898A09C8967520E51 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - C6E8317078827A6C535A4D8399ECD26A /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - C6FA0DEC6C9C14D9F269C14ADED531BD /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; C722D112E1034415060F76D4D4C107F0 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; C7246FCAC6B53FE1B9FDDBAFE8F13490 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; - C727DE46322E8CD40BEE18F03F9DF365 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; - C737E2216F64E56564880DC3306DC221 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; C75D9B6B687EA93BFB1FC767BC55A73A /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; C768E56EFD93442B8A537D03D2C0EF99 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; C788DF693D5554D8D114BACE82CA597E /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; + C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; C7A8B4EF2D2F14C00D0BA819EBF3DAF9 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; + C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; C7BCEB4CE467EAC79C8D872A409D3DA1 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - C7C501D98FEA1521D7804073FD570645 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + C7E06C4B7A2DC711C361CA70A01762D9 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; C7EE0FFF94A2EA052B5C42F5347B57E1 /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = Core/MMKV.h; sourceTree = ""; }; + C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; C7F97FA9FF64711D9D0A4C2E3E403972 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - C7F9C4EEBFD2427463202B82408529D5 /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; C804C12BB5483D94BE067F36E5FACE6C /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; + C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; C80FE0090F04E1032603B3F56C4254A5 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; - C83461DFECA1D27977DCD8CCE55C0B1B /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; C83E2D2B8873871B6A699BA5EE085E0E /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; C84040C1023CEB270A65997858A7F379 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; - C842F32AD724F6D4667AFB274A758ADD /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - C8483327F317432240A3BF797E981260 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; C85970971D45FE03BEE3A346F032E001 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; - C8687D817D378411756EC0F302634BC6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C88E763911EDEADA68879E921944E448 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; C892699CCA6CF43057AFEE34F413A4D7 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; - C8A3D2C892DF04B8C6ED281F772A336D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - C8B7D8A8217E13BCC653FB6E9E14CD13 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - C8CC3E96800B5F2273F450D73CF3F3B1 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; C8CCEED996EDD1C840C18ABDB43B3FE2 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; + C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; C8D3769903B1FFB64B6D20DCF0B2D8EC /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; C8DCE9FEC10868689CDE39782E0861B2 /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; C8F90AEEEE3749DFB3A07AFF8A4804A3 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; + C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; C924340471D482F7D3064ABC398995B2 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; C92C8A75373FDD65BA140C3FC5D19412 /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; - C949FC09E1459C60EEDE7763D72B9B10 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; C962D0DC80FED44299F607709C19F307 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; + C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; C9747AA2B8D01716FCE80D520324E26A /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; C987DC1C2C3EA4DEE1EE19442D15E17B /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; C989C6DE38EB8BAEB6957E262B311396 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; C9A231A645AD2E00A8FE98B6AE41DB9D /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; C9BB88A0911A06DA7814B56AB738E5E1 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - C9D36648AFB735731F48A6E15DC61D34 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - C9E2F103FBDA0F0C9FA2944FF78C20F8 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - CA12D9F4E171EF07C17F87E3A0AB13F5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C9CA371FF7BCD3F21171FD25C7E984EA /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; + C9E1CC4BE8E54D8BD85A389E56BC06AD /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + CA0EEC2F605A34718DCC11945AF562C6 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; CA3BEA689351C617613D83A5EA277299 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - CA8534B3F49BA9E517B23261DB268B0E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; + CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; CA90277E8E4C7BEC5CD2B015A5AE5675 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; CA9D19849DA0037346A7C2448CD8E052 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; CA9DE3AFEE8924A7B1EA77B2663C05F2 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; CAA202053FC287A8CB5D0500F5A2EA2E /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; CAAB5256C605D9A712B4E4082C13AEE7 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; CAB825B7A88F0CB25190C21C70EECB21 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; CAC1FD759E3EA26A598645CA20B95EEF /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; CAC47B5DBDADB42C364570B803D910E2 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - CACFD3B4D7D3ABE9EF1F6DB866040363 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; CAD9EC209A4AB30125621565D7E5B66B /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; CAE6DEF4CBEF1CE244437B0BD7A057AB /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; CAF79ABA691C5D9E7A52BF0F5FEB115A /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; + CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; CB17739A753C1166E5F9872137765227 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - CB2BE534C19818CB0A63C474D4387768 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; CB34B02012E0B2B4A50A5D88AB1ECA41 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; + CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; CB40206B43B5992748747DC69CEF0B41 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - CB475463812D11A24E92A8D304D00C84 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; CB4A73EB8165B2E2985F8D6239736A87 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; CB4B5B3A7B31625914AFA13FE1059EF5 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; CB51CD73695A6728205C7FD008D4C1C4 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; CB53B86345A65DA0B11B0E880B6E2402 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - CB79E96BED7B8CA82FAF3F5D7ED4DB47 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; CB84CC51503D7890C0A68A673FC36BC9 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - CBA02A081BD0C848918E3A81E4AEE47F /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; CBC5FD4C0CE7EEF0F505F247CAEE821D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; CBCC86B7FAE3670860FDC8C180777E73 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; CBE24AE4D688274C453602C8841B3C2C /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - CBF686FF477BA08CAB1E2E0381BF71F3 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - CBFAD01BF20353FC3A0C29ADEB61C615 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; CBFF428EBE47C2BF3D2D6319F9C9545C /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; CC059C0AE44FC1A1AA162C66F274F452 /* KeyValueHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueHolder.h; path = Core/KeyValueHolder.h; sourceTree = ""; }; + CC05F628433C495AA83FD9F1BB9E9CA7 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CC1382387B408898BE667378601E65A0 /* FIRCLSURLSessionDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDataTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.m; sourceTree = ""; }; + CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; CC2AE6EC96A84416A005C6100DC9D3D9 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; CC481CE3D25D4BEA14F4E859A51331BC /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - CC5A9161A0E4F38AD2F3D69963DFB81D /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - CC615BF0BFC9CACB20D9D4D208678026 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CC6772EDF42A0EE1AF458A2D575F4D74 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; CC6BB824529065AC67678897C310C815 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - CC74B190B4465DE9B85E23C0475963DD /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; CC7802A0AEC86D9095B84A3308092B8F /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; CCAEEF5103784B8F6521F32C34FD4EA6 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; + CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; CCBBF9764FB6AD4BE86FB46A28A388B6 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; CCCC710735CD7D542205BABEC5E5760E /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; CCEDA3AF943D1A737E1ECD6B66A3C819 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; CCFDF5247C0C4F27F981117EEAD08CC7 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; + CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; CD09BFC7557390B9028194A2BD50C26C /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; + CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; CD1470D09E1D46A280291B16028B7C2F /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; CD29537A0F5CBB68F678384B20A35996 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; CD4CC32F46263273DDFEA3E9FB6BEB27 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; - CD9205A0E74FACA100CA0265A0E01417 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; + CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; CD9FDE20BB6C3A8A95497CBD5EF63471 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - CDA6B2F5C02AF690B51EA8545C2988C7 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; CDB1783AAD2EB476B425C7E30DCF5B5C /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; CDB9221B769ECAD8F1A1D9A11975DBEE /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; CDBEF8C2CCA558C1AA7C747627D492A6 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; CDC2BADBC6B01A48B2E76D23BE432B9D /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; CDCB3FA778FA021CE5A437ED92273D4F /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; - CDCE5AEFFBC0EFB90D51A5DB68D3FD95 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - CE0F0AE03C1224FEF30010A099A79261 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + CDD723C4337CAC9740C288732F194960 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CDED5F5372FA6EF7326495F735851235 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CE1B1D122BC33C2979EF3AD8FF9B2C6E /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - CE2C676F0085318784448BBBA63F2429 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CE1F06876D0CC4BBA737075281BD9C98 /* 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; }; CE2D88A61843F3737848C2E03DD731B9 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; + CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; CE2DD1461FF34AB8CA362D6277D1E44E /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = ""; }; CE47552437AA39F383916668046EEC10 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; - CE71AAFAC877F542DFE313DBD702D772 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; - CE796E3D7DCC5F9BE8D6FC3566C3A207 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + CE7D59CB5FF71F5B1A541F69ABFAC75C /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CE8411D003E03C0CF5E8DF1584C5C6AA /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - CE87DCCC6ED705AB23259C25612A104F /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - CE8C5785016B50C993F54C102DD4AED6 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; CEACFCFAC61DE8843D91BC883EC70702 /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; - CEBE5B36CD09382E91046AA5604F5156 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - CEF4B4DD2CB8C347B93F9CD1D1D64D2C /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - CEF69794F7BA08CCE1B6D90957CEC8C0 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; + CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; + CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; CF01E9EEBAC70776C6CA2B3B5A114740 /* FIRCLSURLSessionUploadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionUploadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.m; sourceTree = ""; }; - CF1BF7E2C145F3FD4885E6944ED4196C /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - CF2C74DA7C23F0306B08467680B5962C /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - CF30E4F6B447834793791B199602C183 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; CF3AF994CB27C9C3659E126D2607B539 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; - CF43ED1DCA6FF8F29E4AC95579161DF6 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - CF457D4B63350C2FE526C792412866A5 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; CF49436129715F2A1C1B93FD978FB27D /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - CF5652FD9FA398341DD78898D836C4D8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - CF6CC1DFEB9DD42B901216B25DDD83D9 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; CF7079087917665847C821E2EBD3BC4E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; + CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; CF9F20A98CADC212F35CF93BE4A390A9 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; CFA731D8F9C8D39AA9BC49D7CD25ED70 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; CFB1369EC80A9420B57A2C47D31A6BD1 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; + CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; + CFCB57D8AD754C62A592AD22F73AD0C9 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; CFDD9897B420437740F2C790E28FFCA8 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; CFFC5CEBE6998B8E15AEAC6F2D288C0B /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - D00DE655DF4EFCF2D240F3D033EF7680 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + CFFCDECA7EBF6812A30EAF74864C7167 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; D0130700BA4DA571E1A4239536EE0EF5 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; D01D14CD435FAC57CF5EC773DB21909E /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; D0357EE36C7C9977E3183D342EA97611 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; D03CA44CA8D6720A679EF538EE831E1D /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; D0413152AC6892E64F76BAF43B060FB2 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; - D0465942B9401F0B2A3742B6CD8015FB /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; D04A3AACF957C27FB577ECD76C38CE54 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; + D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; D06BAF6F0850F0A77332A594D0ED370B /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; D06E7680AA0473980C6FAAB14C074CC3 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; - D08ABD5531FAD0FD9ED791A8CD0592C7 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; D0A886F7D02FCF86D156DD6CFA723B42 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - D0BF89BDA1ACC3195F40CCFF436CAAED /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - D0C13B453637A18D4F87E4C8159850DB /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; + D0B4C8DADC8526FA24BCCF04E3A4D41F /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; D0C7E5028E9822EAE1931F1C88A1CBE4 /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; - D0D50F47E37E8972331B629D3BCA79C6 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; + D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; D114B20FEA715F1C042240C758D782F5 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - D12B8DC9818D69C7A243EF5E1831E4D2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + D12DA2B389D7BA6439B5E7D859163752 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D1306E80732728F3DDAA52FA3EDABE05 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; D14272FE2F5771295935154A40285468 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; D1570649D7DA9D5459D8220CE9F3C2AA /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; D1766837DC550B10E0D9B38CE023F75C /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; - D183125734277AC9BDA2F5AB4AC29A24 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - D194A15B278127866141E2C7BA081A8B /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - D1A13AAB934CED7A43063C6412DB5837 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - D1B8283114C77400CDCD5F8AB179FBF1 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; - D1D40F6B9AE4B05BABBB35D90892A727 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - D1EBC0B183795115E28663C823648369 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; D1F1766B7ADFBC8356A75896D0F97C98 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; D222508BEDF658D13C92CA937D0A5B0D /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - D224304D924F694162980436C60BD96E /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; D22546F8E4CFACC35986C9728E94347B /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; + D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; D277C5450FB38AE5E27874F9C715EC2E /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - D28902C29C20441B638F6B0DB7FD5D29 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D28E2B05F53F7414E0A3FB1A75786191 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - D293B3EB2BC5F9B58CF7E8196E035B6D /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; D2A18288143E2D07305B90DD14112F03 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; + D2ADC4CC75F94025AF546F47E5DD7C16 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D2DC62C332EA4624267D6CA4CBAC02E3 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; - D2E970079CA85C8241712D8B167F2467 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - D320F3252EDF0F6045CC408FAD475555 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; D3358D995274B0DFAAABFD6C5B7A701A /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; D33C02CF7A42B6C80F082B242AAE211C /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; D348BCD90A1AC800855606883F4FE00B /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; - D397F10A82D01DDE50831EE875C51EEF /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; + D3AD7235D57C76EC0040307CA5BBB12D /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; D3B318E7355D55356996438DC49299D0 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; - D3BE21B6BFACFEA6E6A2689D9EDFCFA4 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; D3C21FF58057D4E5E3C0F365982DD58C /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; + D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; D3FF49BBB72A385DBC8A6E42EF72A889 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; D401D90B858A671DCAC8FB112F470F99 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; D405C5423FC7862CDEEAF02BACA85FB2 /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; + D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; D40BCFC7732DC3B18B98425AB1847A4C /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; - D415DD9D2DD55057176B5FB8CB2FB45B /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; D4214CA5397CB8587EDF31C3209DFAA4 /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; - D42D378F198185EABBAE6FF3A639E066 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D44CB57F148AA24505ACD85282692CD6 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; + D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; D44FE2589C58D8161AB553809DA3EF0B /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; D46183B657931FA50A94CDB9A298A10C /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - D4AAFF579C422392445252BD690A4990 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - D4B5423DDC5C2605A11EEB341CAB88BD /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + D4656C8233F03153A56FC08C10718E4C /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D474F20FA3901D402C092E2072F7FDA2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; D4B57FFBBEA9176B766C2461071C934B /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; D4FD14590F0B25977812C04848442621 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; D50726014D9E22FB377119401B3ABB76 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; D507371FA033E53CBF5A3D33C11A91AC /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - D517919CB1B097F3B3B1E486B2A65314 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - D522027EEE96D9475D2CCC2688716D55 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; - D533F060636B8AE2F97CE233A0513FEC /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; D55333DDD6CA1FD906ED2DA4E53C9DA5 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - D55D13D422149DECE948ACAC643A93B2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D566CCB86225D9463BFAF68E2BA3D2CA /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; - D5740ABC42701AE952A683A636FA9758 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - D577CDD5534647F89DCFAC24F55F227C /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; - D58FAD54994A5A52588982261EC14A50 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - D592FB3C17F92606C164681CC14D1CE1 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + D57E08F6A0A9451EFB9EB412D94B3A8D /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + D59501BFC5E63AA6CC3485BADE25ECF9 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D59554B9CAB55F861B07798C53BE7454 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; + D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5CA6CF8347107CE885E03EE8C4CE52D /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - D5D3FAE20F2A32E94E51A1FADE7A633E /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; D5DE6DCB5CB77FF2318201E0DF4BA34F /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = ""; }; D600AAA914A8637D58963FF666B59CD0 /* PBEncodeItem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PBEncodeItem.hpp; path = Core/PBEncodeItem.hpp; sourceTree = ""; }; - D601C3A1D7FB82879F15EA8F95EDB86A /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - D60482B47FD0AA318A8F3ABB87D71181 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; D62D9D438AA2A488B83ECB8FEC332DEF /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; + D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; D63E9C6C6FF410F56AABC1FCD8ABAAA1 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; + D63EFFCA6E4A483A94CD139DAF3D3197 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; D64307698B08E25A0B8E329EDF5B215D /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - D644F00CE253943CA2D61E7932E7AAAE /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; D650EB3036130CC0F99273D1E13EB3F2 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; + D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; D65C913026B040120C8B88F361644471 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - D66BF8DF3175F73B21D8043E870604B5 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; + D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; D67AD88258D8E17AF7A1230438184D6A /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - D69664DFD8FA8787B0826DCF52C95191 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; D698BF9CACF77A6EA39A01D1F7452B71 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - D6A3D7CDA267E0078167CF83B1C5BF76 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; D6B8DACC6EC868535DAB42D32BABD176 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; - D6BF069F2732F6E9F835891C18E6EF95 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; D6C5DD3FF13F6A2B8F4624FA65049297 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - D6D1111ECB6FF8434C3EB83F5DB44F05 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; D6D20C2A57F14F1DEC06D61AB7C64CD4 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; D6D8D6504E5ABA47379B5C27EEA1CCC6 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; D6F5F31CE1DC8AB6C91FC6B2B6B7B46C /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; - D70A603F51AF813B09988DE24973BF7D /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - D724273977B3E35938C1E087909362BC /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; - D72CB9DC4B38BB6A28E4438C66B379EB /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - D756115EE2A49A48EA6F6F5EEF2F1AAE /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + D704632CB2E62CA40864DA093B702AB6 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; + D7425907A788D25CB58D6971758201EA /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; D75AD1443349704117014A7737FB83C9 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; - D76541F0D3782A99778EE6EF0B51FE2E /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; D795FB70A5FF1D55584FD68256B28653 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; + D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; D7AE28A75D2D7B71B61DA10E63B35FDC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; - D7B80BF2776B8E8A0AD3B67EB2C12515 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; D7DCDA0186EE5E3611A03951159C5C08 /* openssl_aes_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes_locl.h; path = Core/aes/openssl/openssl_aes_locl.h; sourceTree = ""; }; D7ECFA07EAB88489517FCAFD1702D65C /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; D7F4289D5A7DF2DF5AB5543203244A73 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; - D82B8FB337C61F8A6F0723377FDABA44 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; D834EE573F3267BEE0E7CCB02EEA985A /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; - D846EA1B85F0B04D2294871F7B55A06C /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + D856AB5537848570AF1BB8E671AD202F /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; D856F7C4A6C153A4CCB62D9682BCB6FC /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - D87051EFFF3A09941586CC53D42D1A00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D8986BA5F6CEB3EB40192A7F5F2A1F78 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - D8D7A1DA4BDABD41055F9FDBBDF780EF /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; D8EDDB9CCAADD5BCBDAD5150F933B233 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; - D8F6C13F5A3B121B97C8A0B7CE05CF2C /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - D8F9D427DF74F5E3078ED50BD51C4406 /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; + D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; D9299C179FE609553C48DDAC5354ED8F /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; - D93455723F65C959386340D327CA64CD /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; D9667B3D1005C483DFE4C9B9B9D8DA62 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - D9769EC6584CEA88699BE232D2938218 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - D98D1B41390C636A9AD7701A69796582 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; D991CF97F8D8407856A570EEC307D224 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - D9920642743684FA0B5BC3C4A9192B25 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - D9945CD58191794AD8563C6FEC840837 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - D9A5A4E8D11F66DBC9985E2385084172 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; D9BA0287D044D84023891A211A1AD730 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask_PrivateMethods.h; sourceTree = ""; }; + D9D5FD2D636CD6383F462202B6FFDBE1 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.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; }; - D9F5A257D2E21C3F489151D01750DA75 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; - D9FB251C4A6D03F9CCCC5DB2BEE563C9 /* 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; }; + D9F6F69292C2F6F64608AA02822B5C99 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + DA06723236037DCBF714C63760D9E71B /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; DA09D60C3C3C3D3785B8CA0A73841744 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; DA1148F902A42412AFD1269913C9C7BC /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - DA1B28017C954B73BC9982A0D26FEEA2 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - DA3530D7166759815ED0CF20640FC721 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; DA398306081AC5A2ED74D71C88E5137E /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; DA44DECA28FC4BC69FA311437B636338 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; + DA5885B5167CF1A74D09B120F0BAB820 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; DA5EB5CF15FF8B257D7FA267ED6EBC58 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; + DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; DA676AC0927133C023DB4D3C555A52F7 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; DA6B347B83E2AA2D3CC69D0CB37A05C9 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - DA6DC6C6B2271D5FDABD7E86FD18C638 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; DA753AED7C14FFECBA73E9633D3E3BE3 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - DA7873392205C10CE55AFF7029DA01C8 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; DA7B92AE6A1EFF40C35491208D58D0C4 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; DA8D42A22D682BBDBA66E60052ACC8F3 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; + DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; DA93C93DA4FF3DC11AB32E8DD4138DC3 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - DA9A860DFB3AF53DCB2C6BD37F35D301 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - DAD21D705425C0F0102E00CEE5B0FBFA /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; - DADD458A20AA7902731DC5AEA4A5600E /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DADF14C41C76F14DE805078FDF398CA6 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; + DA9430DEDF6AADB876CE4B5372DD1623 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; DB07E785B2D2E4F11430656ABA77EE83 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; - DB39F7717B3F63159A9F3F781F77AFB6 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; DB455938C1F1BD9D75A2C54D457D9A20 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; - DB482367CCDA3EF7644CD67EA1F641E4 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; DB4A9736D07811E63B500AF8C0486689 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - DB4B8A32ED6D51E6B3FACB12221AEBC2 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - DB4E1AAA4C012839394D5A47ADB8A3C5 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - DB518D1AD1774D77CD55A45E61498507 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DB5FD753BDF04B117F98821A3370C96E /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; DB6357FD85B8607CF19844E03CF551B6 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; - DB75A86AB901C90C2C62C062A3254C39 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - DB7A8628061DCD177FC8C5A697F0135F /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - DB8FA8D851654513510A4DDD8AAD29AF /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; - DB9D765F6C02C20AC24D159103D6A6E1 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - DBFB91BA36CECF695BFCBFFDD9893FDE /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DC14891B5FD7522C15ABA97701A22043 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + DC0530B18D643FC0A01CC5B69C62B0FE /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + DC098C980C2993D32FC9AFD5D35050A2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; DC1BEF7BCA2DF8F2635C027CF790B82A /* MMKVCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVCore-prefix.pch"; sourceTree = ""; }; DC1EE83752101D56B4706A9D6E02575F /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; DC1FEDF4CD5DC993AD1D4B0BE98275CF /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - DC2068BFB352DFFDC26A3C6A90C8EA64 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - DC257AA18D01553D42EDD9E2694DF47C /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - DC26500FECF4AB1B8CA66812404EEACA /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; - DC3277F6D399160E585ED4FA7CA8CDF4 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; DC33E30D616C3CA726C168E8CAAA5333 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; - DC52BEC8C3F6C663EA96D99D362F8508 /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; + DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; DC6AEC8EF1DF26E4985963D7A898F3CF /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; + DC6AF0419BC768638243CD0F9EB38875 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC74CADD05342A7985DBEA1B0FBB5E10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; DC789D5F1A30C773EE83B38BF1D894B9 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; + DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; DC84A14968ADD20000EC197FA05236A7 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - DC9CCDEDD2F6EF265C34D3100E92F87F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; DCC0177033322577FE17C0A5DB7D6D70 /* FIRCLSURLSessionDataTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask_PrivateMethods.h; sourceTree = ""; }; - DCCEF9F286E7871098AFB7EC2B1E0E2A /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; DCD30613133E75627E8E07B7B22F86AD /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - DCDA42F2DFA95DF214C7DBF264A4A257 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; - DCDC81A23FEA024472B955AB40E04F3E /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; DCF3267DF92F2D0C054BF37F2705566C /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; + DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; + DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; DD116E66A905236B827A7D32934DACBC /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; DD224B32342883A8147E2B54F6650F2B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - DD24071F4301E5DA23C442683E43909C /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - DD470A2B7DC98CAE6EA04D69B8D3861F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; DD515B839535C35E78D1654A5B757219 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; DD54C7980EC61ED8A793FD357761AA2B /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; + DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; DD727325FC40AC53D0E080A5E41E55E9 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; + DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; DDB5D7CD832670302786387AB4BC9336 /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; + DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; DDC2DC3D0FB74A016AA36240BFF6D984 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; + DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; DDD019A7C90135A08ADDC1ECA25C3DEE /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; - DDD396784B06D41218C1A68D7B420A3C /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - DDEB3ACA0E88865D7239BE786A826510 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; - DE1B6542EC270400ADAEC927CB0E8631 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - DE31D1E870D416A6780A3C863F5C2876 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - DE6CAF0B0C4BF8CB185E39E16DB20A6B /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + DE0F720FB17AED60FC53C4F8F4375EA5 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = ""; }; + DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; DE747354C067B47CF746F9701F400F7A /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; DE7DF1EF7AC5FF2323FCE17BCD757D5C /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; + DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; DE8D6BF68006D1D9BE7E063B4872D84B /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; - DE8FE96A401393DF663C1D0A0A3228D7 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; - DE99A717738675CCED476268435FE835 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; - DEAEC3E15B35CB17E97232B53F3FD5B4 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - DEB75F652FC2A260D41550E479FBE47C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DEC0AFF091F5D6BAD95DB9D16FF96331 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; DED93BDAF48496E43C78B2675D2CCB72 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; DEE9AA9F55B3C2237B0A1C5B7BB72374 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - DEFACB854A253400D27888A1E5CC08DC /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - DF0E7C9117E9471C412DA2EFB7661457 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; - DF4A9256F4C81DF672287BCF3150920B /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; + DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; DF6C69F95084E61522E8A0621E251EEE /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - DF7B9CF24D42151901E651FD5524ECAC /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - DF96AC080D237B7EEE6FD55A7A2F8187 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; DFAD9AF325DDBD47E912B1050D1E9916 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; - DFB9BA8C9B20AFF77DAF94C922915714 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DFB02A2A091BEC65DFC9E8B38C00DCA8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DFB6CFCC8048A6DDC465ECAD7591C5BD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DFBFBB790A83F6914808B3DA1CA67F5F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - DFD14A7E096A0397252F06145B0E5A2D /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - DFD245F4609B06FAC78A66F7A759FB41 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - DFEF596FEB2963925123BB9BCB943EDA /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E00FD01049352AAEB6B96C5E0E25C654 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; E018D94A11FCCA293ADC877A2DAF7B4E /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = ""; }; E018F4831128EB129FE2410E15D941C2 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; E020602C5F0DC325C4A99272BE65F6FA /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - E02D368AA991FD9818C2E0B617FB8951 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; E03EA39FB5B33F23D3D938466661DD67 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; - E05BA9BCAC133670C3846F676BB9C2DD /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; E05FCFBEC97296860E5891BC985B8BE9 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; - E0648B63D0B8503BE5377E8A097A741F /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - E064C9C93095EAA21BF99BFB200C3E41 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E06DD6CA85AA045EF82D4CC12E425AAC /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; E070D082F0496D1A1BB636C4F528F39D /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; E07970FD2F62E7A4DE75E5F6F791E13E /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; - E08071904D7D2F0A4891F9DC8EDEB75F /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; E082D8A9AB450A53BAE6B3460C3BA9E6 /* MMKV_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_OSX.cpp; path = Core/MMKV_OSX.cpp; sourceTree = ""; }; - E085E66D7887886A7DD797272EA85B07 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; E08B2539D097083E48F2C410B5C60D66 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; E08EE662B7023E41FAC7EAB9F7F59ACB /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; E08F1CE1FFE3CCBAD65DC329839FFEC5 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; + E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVCore.a; path = libMMKVCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; E0CC282BA8FAFAC2D890B1BFED15A52A /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; E0D5E4867C3D79D8F51D5A0B30092786 /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; - E0D880E4DB9D99EC13081324711A4D6C /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; E0DB6C975FCAE729987873315AF48984 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - E0DF9801469EFF3C7711A9FB8256ACBA /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - E0EA818B7CF9967D76BDBDD74940564E /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - E0F5C8160F53CF533D7095F831F94607 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; + E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E115A5CC8349D2EBB53C173598E174B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E11D056E6F92331F74B6EAF8D0677E9C /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - E1254D897FEF7F1A84C519FE2A4556EF /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; E1318B86C820CB00018EAD32A3F07E4D /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; + E13DBC7AA929E656D00405709E528DD1 /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; E13FF4CC3674095510726A1EFD8DEA85 /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; E140D805FEFE3701EC7E12BE2ABF66D0 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; E154263C03A8FE7B11DB3AE33D33F99B /* MMKV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKV-dummy.m"; sourceTree = ""; }; E16514CEAEAB9670F41BC49A1B951351 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; + E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; E19D89B2C2E4701FFDACB5E4D7ED6190 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; E19E13892425E415DA3AA03CE7B08E14 /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = ""; }; E1A4C6AA6995B678030A535C64E2493C /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; - E1D7A606321EFE926F2FC0A39B4D0151 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; - E1FEC1C26450454F522DA2DE070A3077 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - E1FFC802CC85DA133D6F76AC932F2850 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; E2045932DC3A2534283607C5D26E6E95 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; E204630DEFB7ADAB35464A0408D565E9 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; E20A9F4DD32B413C18EF6F391F937A82 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - E20B645CCEADAF83BB1F549F39537571 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - E2145A2F41EDC5234E880BB745F19CD2 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; E24640D2265596A85A0FAC291D277509 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - E24F5A023DED9E1C726CE3F65C9AB0DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E26B13FE8996444B3DCDD20D59675527 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; + E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; E28D6E1DFC61215A65072B6F3AC8E199 /* ScopedLock.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedLock.hpp; path = Core/ScopedLock.hpp; sourceTree = ""; }; - E2911364068B54AA61531F5F3B39EB58 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; E294D6D9C542C4DE40EC4D325A5796B0 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; - E29604A5ED6A68472E00D8C015D0E8FE /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - E2B15DCA37B24A9EACE06E1CC495BFAA /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; + E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2C29E69BBAA60B469FDAB2F39671609 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; - E2F42B831282C4AE1FA5108AAFB62AE1 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + E2F1266F17E68F3DB63FFF9582C74F85 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; E305F3D0C50ECAE54FD2181D52E3A4AD /* 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 = ""; }; + E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; E31878A25103232AA93630DC9E31BF04 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - E319BC17A70908ADE2ACE4957D200624 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; - E31FF00396A413771765BFA2BBE0D78B /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; E32056F313D3A13B7028BEA5BD8D08A5 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; + E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; E32AC0D57736E296934D972402C781D0 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - E32CBAAFFE8216A04269FF134B5B273F /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; E3335E54693BED0B26BD4342020C6645 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - E3336526E7697B5B32D58EB57F0E9B0F /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; E3468E6DF40BE224FB7B5B36C3B42052 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; E34D5BF38F34020D2C96769650FC5AD0 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; E34ED41386B129A0DE2B4C49679D6F57 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; E36F12B577D3551BD3858AB7A2A3A2F6 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; - E3A636C1DECE4A8CF11908EB51858650 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - E3A90C19A3C7625BB49C7AD659EC1B81 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; E3A91DB8523107DCA6BBA6C430DA44F1 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = ""; }; E3B1244BFB7C2C546566B5E55BBC1699 /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - E3B999279975BC7A7457EE27ACA7BB0C /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - E3BFEA44425E7E614FE9BE1E07E43CEB /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; E3C60919E7EB6F9180A787F54EF850C5 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; E3C648D81314F24EA3DC0F1A9544B718 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; + E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; + E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; E4036261C95C8E6831DAB252B7C7B126 /* MMKVCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVCore-dummy.m"; sourceTree = ""; }; - E4070477C96CC71FD35538207451BC1D /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; E407F007D3277FB2D6D3144046A32B0A /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; - E4125A28FB018B891858E7011F22071A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E420CE57027B3320D62EA03FBEE125B1 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; E4338F43DBC984B327738D9039806667 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; - E443A8989FC2694504C95C531AA065A1 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; E44F0B0A2654DF06F2373E2AC40C7F1C /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - E45E59960C13DB8D88C8B03EE2F0EC9E /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - E45F0AEFF0D85679F59C3F4760A67D27 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - E4825A9FF053375A1A1311B9F07F11B2 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; - E482E835CC939CBCC465C888790B8F57 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; E4A4E7E72061108B2D150068D7ABBEA5 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; E4AC264BBD9EB4AF306F61129B26C7A6 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; E4C5D5D0AF088A21F9F2904F7B342996 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; + E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; E4E0546BEB8B0EB8562E9A0AF7794D70 /* CocoaLibEvent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.release.xcconfig; sourceTree = ""; }; E4F470400EBEAA1D8E020157AB664049 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; + E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; E5044315D7E7DAAE49B767F959AC0932 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - E5081A7221932C471A01B77F6C57B874 /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; + E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + E51D7295706B24C7E51D40AC2374D6C1 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; E55740D63FC4B29E894BEDF1F86F2A4F /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; + E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; E57CEE4E9E6CBCC8D49BA0D9953325A5 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; - E597A8CB5D80748F4FD1DA78B3D5B256 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; E5A4F25F2D7AFB57D03250BEB9D49F7F /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; - E5A83C25E5DDAD0AD3890E24684C6E3A /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; - E601AF0BA74D4919720A00F46373110B /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - E611552A0BBA207D1576DD87B7C20A43 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; + E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; E61262AADF05DB9336D7D007EBFF1A63 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - E615C455EE2E6D7D7167202FB9DA409B /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - E629269C56160A63C9FDB64C83F087F9 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; E63150E8640B2039AAA633B49BCFCF35 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - E63E033A8CDFEBAB16EBE653AA6EA3A5 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; - E6476B4CE715E5700814D91BBA5F5303 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - E64AC9874C4095B3734CA3D49CFB7CFB /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; E65018B65877114579C0E4837C8E29E3 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; E655C846BC6EC695D517CDD4B43FFC2E /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; + E65F9FE191E8F5252BAC81336BB2BE24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E66CC7D473469704A38825212367C8D9 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; E670F463C5CF96DE9B97852EF71F16D8 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; E67AF1ECABE5E08BD5321B37247628C8 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; E685501A18B691A78AE63802778A8DC4 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E6BBFA827F14140BEA7126DD8DD5840E /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; - E6BEBEC84E17380EB751F726BAC379C0 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; E6C652BF06E9356BE321D1E2FFE10499 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - E6D5B0210CFEE2D2CC7A44147D506746 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; - E6F4BA2D62F40C6E60143B6A2B84DEBB /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - E6FD25ACF2DD6A082A78E21B380F24DE /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - E7074DF42EF3AA040FFBFE468D6FEFCB /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; + E6F41B53B99C9D4A02BA536BD636E645 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; E70A19B66B026FB48473A66CF3E9CB52 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - E70B4B912C3718856B9C9AA6F2A8C6DF /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - E72DAF582A3F9EA663F151591F59DBCC /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; E73AA114C896C43757A92D69236139A6 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; + E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; + E752934C099608793BB304F3E8C6889D /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; E758096D3F1B58B131EAE8EE951FDDF2 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; E764AFAAF641A4FE37695C79504E5759 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - E774F6D5DAABF201ADB039A38F88A174 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; E788EF043D0B36589AE52ABCA2ECAD69 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; E7962FF1074F6765366F816E33792380 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; E7AB4E1A96911724B29D20FA711E4DD4 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - E7BEB1352D9A0F725E7B8D2FF1DDCBA4 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; E7D3730634F7552BC6C6E48ECD1B8E21 /* FIRCLSURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.h; sourceTree = ""; }; E7D680668C4D614965F1C3B7CF16E5FC /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; - E7E52F36B031DE941983559CDB42F562 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; E804AE12EBE0B41D3C8DE9CFB01AC933 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; + E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; E843110D34ACC36D6BEF37D1EFAACD13 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; E866F278BD58D06B8B3E4485D3248A75 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; + E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; E8A328A58A732B41F061244436FA9984 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; E8A50B7CED93C22A904707D53B2C2486 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - E8A6E70C841CA850AAD11B0F51AF671E /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; E8CE7715D6333420A83E113B345FD9CE /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; E8EEBA666A29BA94151CD1AD0CDF1FD7 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; E8F688C15AB5C089BB2293389D03C29E /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = ""; }; E904FB44E0F60263FFEEF3F0CAABEB07 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - E9273E9670000B4B9C6FFB990562C1AD /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - E928DBD0757EBEF1AEA65286E458FF68 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; E92B1CBD11C1B58FEF03284A5D74A471 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - E9322CD94ADEA82B250C1BEAFA2663BA /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - E9379E0C23040FFB843EFB36EA502582 /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; + E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E93FE57123F6C367D3B0B7B7B97D9975 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; E95C50F4AA4A162306E867AD740D621F /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; + E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; E95DEDB271798F95980DC4B06279B63E /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - E970928CBA116D325E7DF0D77E118FD7 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; E97F53C6598883B1C6699D8D00924794 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - E98FD9E9544F3020335ED6379EFC99A3 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - E9AF1361A986ACE87D792E1F1853DFBD /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + E994EEBAC182321BD1566AC9E72097FE /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; + E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + E9CEF55F67E59B30ED7E9C871EF1FAEF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E9E7A3764B17C578D2896BFF1CAB3819 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; E9EE8F4CEFDDE7CDA6FF80FA8BCEC846 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; E9FFDAF3C03BDC002EC84E0FDA51480B /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; - EA08EB1D41E1E1AF13AA83B3ACCE6CF7 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; - EA1C3477BE69079F3EA4FB2F00CF16A8 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - EA30B3E3534E7C99F0BDD61195FF0B86 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - EA30BE7C452789100FE431223439D295 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; EA3190DAA7FB97C9C61B7A4D473A8419 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; EA3BA931EE1351559A0C1124B2400B2B /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; - EA3C94E9631A5FD359538C671675980A /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; EA4E13714B040A0054DF3CC83A8B504E /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; + EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; EA6AE060BDB09ADB16FC1E1EED922690 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - EA6F9E85F10F3FEEEFA74578B8642F68 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; EA7240003015AD6D0B4C11205B6C845F /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; + EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; + EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; EA9468C11766D5C3D4163A788CF50BA3 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - EAAEAE45E45A3B36D42D28BFC6A559CF /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + EA9B90A99FD323502E3DC36A173D5E91 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EAA89C337BBDAED7F2802BECE9B200DB /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; EAC0824FE9BC00556ED59DF1DD9078A7 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; + EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; EADD707806ED13D6903BA0F5D24DBCD2 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; + EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; EB0CC6987EC71C4BA637274C9ECABE2A /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - EB13DF1C29A935A0EC898C6CF43AF75F /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; EB2004ACF1EA96A7A3225CC6D1D87043 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; EB21C78FCA19662901D75D8A58EC4CCC /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - EB3A70D5004E3BFA10EE25FCADBA809C /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; - EB3B72D7581555532367FDC781B3C219 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; EB43E4880CBB471E326D9324B0D08334 /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; - EB49A028D3BC63471CD33D60C7623F22 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + EB518DB5516FA7D8B25BCC8C68E58B25 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; EB5A1D5A4E1EF92B70E662A22B8801D7 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; EB60EB90116FADA18E2A8985F0C44F46 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; EB64CA34DB64EE8B21063AB215C0306C /* KeyValueHolder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeyValueHolder.cpp; path = Core/KeyValueHolder.cpp; sourceTree = ""; }; EB6ACA9BC0EC68183524CFAF50825AA1 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; - EB707E595257092946F7020BCA80B6B7 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + EBAA76A623C8B547437FD0117AD7E1BC /* 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; }; EBABD933AB71D28946D5A1ABEBFF45BA /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; EBCC81CAA3C63A93A843D32D8FD8FD94 /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = ""; }; EBD9AA1A278A3D54E85BB0D4506D88F1 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; EBE2FBDCCC5E2C1F5826FDB816EDDEAB /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; + EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; EBFD1D03F0F485F3443D4B980F19DCF5 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; EC29168B9AD0FD2E560F723641C76D13 /* Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.release.xcconfig; sourceTree = ""; }; - EC34AD1F56B9DF9E6BEBFBFAF8733F43 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; EC39F54F14999F11502ABA2AA129EC99 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - EC476F3227565D75C9826AF7C8D44A58 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; EC4850C151CD224548F62146DCD1C8CC /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; EC658CB13F117CB132ED545C56448294 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - EC689FFF612BD323BD03E7EFF1DB14C3 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; + EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; EC7AB493D4E5BB4A98DC8DA00EA0D5AC /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - ECD2C8F2EFAC94109D2732AE6BB0E2E5 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; ECD54472A4CCEA6C4BA8F079C59642EE /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; + ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; ECFE26448E3C1C7112FACD71232CF62D /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; + ED13537DBFF77DE7964F659DDCBBE171 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; ED13E425A4DAC7D7E9C80A18DAB973DE /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - ED167C18ED6B74AA95A7C810B802F5FD /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED252E21FF7397ABC96B5EF8F34C8E9E /* openssl_md5_dgst.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_md5_dgst.cpp; path = Core/aes/openssl/openssl_md5_dgst.cpp; sourceTree = ""; }; ED3185845707C4DEB03A4A0B0D59B590 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - ED4164C5212E806BB956239B1B30F074 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; ED6A007B0F6E3BB16BE2D6C88BF06250 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; ED870C9ED962185FC40C795711DB2309 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; ED9AD358F92ACAE62BD4F17BF59D0D5C /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - EDAC5ACB7725E2AF42A171B9B5E299D0 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - EDB679B7408FEBFD75515A67B94AD6D0 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; - EDD0DCD3210A3FFC39593E8088F47145 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EDE4C87728E74E199B34F294E2698093 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; - EDFEA0D285067264649D15E258E113A5 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - EE0CC7A8BA9D885293CD3021D6468873 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; EE10D23F9F9A6F605F5ABB40D323391C /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; EE251821BE57AC0A1AEB7709AAB470E9 /* FIRCLSURLSessionDownloadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDownloadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.m; sourceTree = ""; }; EE3209E802318EAD669F944DCDBFDCE4 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; - EE3A78189BDE60B89E686B3CAFEC639F /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; EE43C0F0CAAF2D913B0E86A7C7E8379B /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBCrashlytics.a; path = libRNFBCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; EE4CD9DB36CBD104B31440FD4D2C255B /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - EE4D011E5CF13C33F3C3A9617F0CFA6B /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; EE4ED991F7F12AAB586A0C3A50313268 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - EE4FE4404C9C754BDD63009DD9E39341 /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; + EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; EE5B62E76630B060E6E365BE7B554882 /* openssl_cfb128.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_cfb128.cpp; path = Core/aes/openssl/openssl_cfb128.cpp; sourceTree = ""; }; + EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; EE72FB60DD5C608CE489AB1E2981C371 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - EE7E1C81257FFE70972FC98264AE1DB3 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; EE881A6C211F134C1D5557409B6F55A8 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; EEA32812336906D66EEFCF0358E2C024 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; EEB82938D8DC5A266B866E74B527547D /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; EEBE801067B9AA91BA4C058EACCDC752 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; EEC0C045EE568154F674095E2E9EDC7B /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - EEC2129CD045B185E2D06E328B0AE7A8 /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; EEC3E2B17B15EB6F478932D93AD53EC7 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; EECDB4F3516EAB5D2A50505C6BCB7F66 /* 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 = ""; }; - EECE3236E8E0609B21A685D39122F2B0 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEDC75D130EEE6BD296583E29CD906FE /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - EEFCDB3F0AEA005DCD880785E4555DDF /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; EF07638B1990430FC006C40DF347DFBC /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; EF0C71E4D8EA8DA30C3C49EA645ACBAA /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; EF239415A954509CD83CCCBD7D6BAEEE /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; - EF273B30E01A0A59E87629456C44C4D1 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; EF2AA62775C165D266DA00828D077CBA /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - EF30A457AF6EE3D352AB4B66D26DF5A9 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EF4A1368E40CE867E264AB6291AF4258 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; EF848C3AAEB2094BCE44541A8B4DEE0A /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; EF89D7EE6893861B6EA4BA7986F0BC5F /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; - EF9C7484F8914FE9DFF0A489580AD78D /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; - EF9EFB47BD87AEDC82954981E5C42EB4 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; EFA80C524A1A4B7C125DC537833790CB /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - EFAF9EA035BC8B473F89B78BCFF3C4AB /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - EFB2ADA2F6647DAF1BA35F6D279A64F2 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + EFADD1430321D40620762E3F71D316EC /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; EFC353A8992E16A43B7382700B37DC54 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; + EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; EFD1C40E3EBF951B518DD912933B112E /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - EFD22DC567D94397E1CF1F93BAD37B64 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - F011BC16FC901C8916D917038CC58F01 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - F02A9C17CC2DFDB3B5D394ACD6070222 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - F035BA7D60899A59A77BD8090C7F4423 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; + EFECB04B4961098514237FFDCF858366 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + F03382C69DFBABB2DD7976155CEDE2DD /* 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; }; + F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; F07F53D45BB15DCCEE60E68A08E9F892 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; - F08B5506083FF33550FED572722B2687 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + F0836D0A2E8BA89E5EA31A575B26D3AF /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; F0DF4ED97F36D082123404D0161ED273 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; F11B264A0686C7D8C3555BD6888B003A /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - F12A9848E17EF8C8DF17F14293F29169 /* 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; }; - F13BA8BC96C4C7A8CC99EEADACE66CB1 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - F1412FC21E48A3A5BCE469E88CAE2B56 /* 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; }; F1427BAE4902839B19780BC178D4AFBE /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; F144AE35828C9BECC6CF9A680EC9F907 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - F17D3220E4C30BE2EE0AB830B75CCD5F /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - F186C01C4F374936FBCB305EF47D46B0 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F1B521025F0F4F758D87509B8607B25C /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - F1C866DB4963DE027C3A5C558449653B /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + F16C7098707E23C1652F03AC187C367B /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; F1D7932FDBDC43C3BBDF0364EE33D4D9 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; - F1EE1F056116A55804C2929C605C1540 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F1F65F86386B237B05B0316B1A3B4A55 /* crc32_armv8.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32_armv8.cpp; path = Core/crc32/crc32_armv8.cpp; sourceTree = ""; }; + F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; F22046E41AAE417B72E995E64B2D67E9 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; F2432E8B9CD3DD7CFA48FBEF88B37FAE /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; - F254117AE8A15EB507407D054BB90FAC /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; F257DD7FEAD25B3AC731294D344F4530 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; F25D520DE4EF61DA503BF3B66A93B846 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; F25F87AA623BA162D848B5B3EC9C60B7 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - F272A6BAB8AED54A66BA10777835DDE1 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - F273D351E161386FC4271EA79AEF742A /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + F2863A89B8DCCAC70CA9C4897DD83ED0 /* 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; }; + F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; F290E2B38BF7A6D0E519530A715DDF00 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; - F29CBD3B06580546B95DA7269303534A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F2BFA9D42C64D5B34BD5545832430EB7 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - F2C68857867E7428DA7B276598F5F6D2 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.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; }; F2F92F78EDA32DE889084648A19D9103 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - F2FB6A5DB37C58A31E10C05E1D801244 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; F31F3B4D718BB4FFF5B66BD7227845CE /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - F325B7638D4AB36B51B9D851724F9B1C /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - F33813835CD12ADA8EC0E2BBDD550FB9 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; F33F69F3F73D5176AEE6AAB0BD70BDE4 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; + F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; F34A4650F7A1ED079B718C89BFA1545E /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - F34DF078CAFD193CA54119295D58BBB4 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; - F35EF008D9C383FC184C982B3009D527 /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; - F36250798D43DB4010BE13139FAD021E /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - F371510CDF08E8FEEEC97E4B47B46EC7 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; F381A046A86C1216B2F66D645A3AED0D /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - F3A15D5581EFFB3C30EC9CB006C82880 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + F39F75CD0519FDEC289CE7B6DD93F1E1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F3B630E67519DA0855AEA8E3CE72715F /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; F3BB7CF7803741C9CF1DCD07692FC497 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; - F3C7BCF35B2DE2527122189F4C9205F8 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; + F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; F3E9EDA4508F3BA09D91D4FAA35B68E4 /* MemoryFile_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_Win32.cpp; path = Core/MemoryFile_Win32.cpp; sourceTree = ""; }; - F4072B6E48E40919D7ADE93214CAB1BD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; F40A53185836579E30C3EB206F36EFB9 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - F40CFDFC662E69B87AC1A347B3225B9E /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; - F41013165CF5BAFFE81234B51A9D77AA /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; F410FF0BB5E0374104F6E01F589707E1 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - F4140D4B294447152F82952A4ED76932 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; F42428EBE2A581D39BBA5A76C54A6366 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; - F4396D8FE810C80A480BB51488E2C274 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - F43A6DDDE3105B3D9543893DD1136190 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F444815D1ACE7BF9CB9E1DC1B600F360 /* openssl_md5_one.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_md5_one.cpp; path = Core/aes/openssl/openssl_md5_one.cpp; sourceTree = ""; }; + F45D686FDB1D5BFC093C6D094A0ACCE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F4676669FD13B7DAB22D0BFFD5491780 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; F48164D05236D968CFF3D9C51382E196 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; - F491F6B20464CBEB7C3FCE8826413329 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - F49EC155A99E0C2A295F52E03F82D6E0 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - F4D3ECB78AB39F7A0F60DE7E0C9D3D42 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; - F4F7F52179F9BCD935CAE0CB408752F6 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - F4F8D5D48816144BB5C020B3B6E4E980 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; + F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; F530F43983154FD7CA8E3007F576E52D /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; - F545C6856DE8823E076CF7B63A3DF0EF /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - F54FB51CC6FAE6ECE7AF66F4563697EF /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; F56CDC8B5D61606D9B183428F20D7D0F /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; F570304EB016E938ADF33BC841967810 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; + F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; F59079500F70E8EF795BE4C25D289C9F /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; - F590FC07F8675B09023B6768A3C000B0 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - F5ADCE45257284099E6DEC502C5FCBFD /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; F5B69ACDE600B57F0CFEF501D0CD65F5 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; F5BBB2B4EF78325EA09088754BC73C97 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = ""; }; - F5EEAB1047BEBBA2329DA3CDF8F64B10 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; F5EED8B3D27FEB3E08D282761E4BE616 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - F60ADD8AFC23B1A7DFB0240A739BD6C4 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + F5F84D10EF74634D0FCB13129D4B8F22 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F6107D31E48E3B71F6CD5D021359651F /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; F631A2AFFC433D3B38BDDE03D8404DC5 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; F63D54002B58ECAD9D49158E50EA4799 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; F64379EA13F2261CF4A270CCE1A61C06 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; - F64969505F78D6563284A8631E900736 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - F650C59E460274448E538412F85EAAEF /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + F650D5A2DDB953E8551DB0E070D2CF99 /* 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; }; F6595F56D417C1B6B35E1F892D5D7E1A /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - F6619D4C84FB5F99486EA359CF43B757 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - F6661BCD5A254890FB784D224325B3EF /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; - F695819632C545F86FDF473A7C41FD05 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; + F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; F6A7DF13027A944C7B28667B6B41ED7C /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - F6AA080FBF22251EA7A8B7B8C1025703 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; F6B98771221062A48A96595D56507876 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; F6B9C4ACDF80EE73CCA18B0CF8E5341F /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; F6CBFD8F076A8032BAA13550F10D0C41 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; F6CE4A460F7E91A4B4BD5716E288A58D /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; F6D7B6463EE8B3B7BAB6872230EE9386 /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = ""; }; - F6D808B31B6193F0FFAA49F97695BA4E /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; F6E30BCF4DA423CAEDE6ED4073EF2A63 /* FIRCLSURLSessionDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.h; sourceTree = ""; }; - F70DEFBF0B97AC795FFDCE33D8A887FA /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - F71887585BB0FE63D8301539087F7276 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; F74394FA55F7070CD095F5B64CE24EC2 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - F760F7B2CF522DA6678AF34143AAC902 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; F76168BDBB53E0EB4EC8CF751841B18E /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; + F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; F7983F1DB431407A7457D64EC5165357 /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; + F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + F7B12EF93162BD019F19684ACA1D380C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; F7BF8F2CDC46F4D4D6CABE542F655172 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; F7D0D31313F3FBE3369B22495015B0A1 /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; F7F62AC197CF55D1A832B996E6FD49EA /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - F82F6A35D4E347C92C7089138947C4C7 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; F84856F186668EBD41DDE6BD2BE7C867 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; - F86165F4074B5E924032053BB3A28990 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; F86F12E26ACB0183CD35EFE067E43EA1 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; - F8785971FD6228863D85B18A1E23F4F7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F881D6AA1EC6DEBD0DFBE477EE6BD3A9 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; + F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; F8BD92E33238D2D4F483ACD6EF3BB5C7 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; - F8E7DCFD8A4AFC7478930E66C5CEA1E6 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - F8E85CDCEFB77C7F762F28DA8B951922 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - F8FA282DD1579E726B5D9F87AAEDB077 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; F8FA5857F1B0D25AFEEE689587A6A350 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - F9129D8DF249E413E64F82408FC3C052 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; F92000338C16FC95FC27E8527C6DC587 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; F9298904FABCAC71BA497AB2F973AEB6 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; F9459B3044F10D2D74FC214AAB3E3C68 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; - F95309A50D0B8FD03C98F182AB2F9EFA /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; F954B32AC8888CE3FF97711D2A6FBB76 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F96AFA66AF74102BB8F7EBF74E32DA2F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F966C8F147E0EBC2FB6FA6061DD5CF3E /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; F96BE4D6D572B0CC44809DDD0B30A502 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = Core/crc32/Checksum.h; sourceTree = ""; }; - F974DFE549E05ED2EA2BC451ED73D222 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; F9A0DB1AEB9449FBF246B6A0D81E30C8 /* 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 = ""; }; F9A1674592AC805B7AACC85CC5841276 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - F9A50091D782125347F220D0E7FF9730 /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; - F9D65330F5C0E2E909C49FFBC5EABE82 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - F9E4A6A92754525376A969E4A16ACD61 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; + F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; FA003619DC99BA599FA4F71F68CD7770 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - FA0566E94144C8D3E0526E02DE71C126 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; FA130D008B802681B6F2F5E96A558A82 /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = ""; }; - FA23739DC3A896C5CE4852C02E9B89B1 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; - FA2436E9FC7CE63CBDB61E8F57DC1576 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; FA2E711743251592466DE361107441A7 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; + FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; FA4E4A0E0EC02A2A102D674CFD47678D /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - FA577DEE9857236D0B08B675E4949F0D /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - FA5BF8DDF70D08CFDF35B134EC1ADBCF /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - FA717A3118273595FE57C8EEE56A5D82 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - FAC54ECC9011F0BC7EAE9E0D0891CCF7 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; + FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; + FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; + FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; FACEE59B6126610AB5919182FC9F4842 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; + FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; FAE319DCADB617279454E8752623AF1D /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - FB03B26D845EF62566ADDCFA7176A9B7 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + FB1F5F8F8C6D0F39D6E8DE7625A747DE /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; FB209D641C6FF865E464757D6868CBFD /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; - FB29BA4093B458B195FAD1207C49D3AB /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; + FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + FB423AF73A370592C088D3241E066793 /* 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; }; + FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; FB8BBBFBF353EA7A6878FBEF5405399E /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; FB8C997E098B1165386E43EC5E5A4948 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - FB90AE073DAC558732F8DD918B1CBA2F /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - FB9D0EA2DC153D6AEF2B4B8D1DE0FB8A /* 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; }; + FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; FBCDC1026DD47968B433DA0A23D88E06 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; FBDA67BB5B0B0C09FF4B282746C106E2 /* MMKV_IO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_IO.cpp; path = Core/MMKV_IO.cpp; sourceTree = ""; }; - FBE650E3B6BFCB13A238251ECA1A591D /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; FBEEEEE744AD9DCD6162B1C52F82FDB2 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; FC2C9E283D60951BBF3F02223A762F22 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; FC5D54C7C94EC93BFDA6EB43F9CBB6A2 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - FC7C8AE8B9CCB5E4ACF50984B78D048B /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + FC63095311C14548106688A9B3279C75 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; FC9139DCCA0961588C7B273BD507A84A /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; - FC92EB041100B6768F51D8A6E3A854AD /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; - FC995B5DFF92F9C1828A6177D5674222 /* 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; }; + FC92CC55D6BAF41621AB8ADCBB313321 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; FCA28C7B67B55AC4450519080C138415 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; + FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; FCB167E238DAE7C051F34D90252B9E55 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; + FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; FCBAD1AAE01EBF37B16158C287F3DACA /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; FCBB2CEF07D023E0AAA53383EE462F01 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - FCBCD973D8A7B54E675052C10039C255 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - FCC2076410890F210AF7657358503B83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FCCB6333386C1D0FD59A6F733F4DEC52 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; - FCCD623D0E5093309DCDC16A8996D6A3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FCEFC073B804E1E31844C9345AAB122A /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - FCF5EBC671EDF125EBA2C3BAB139F931 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; FD0A87C22F99DC9A05A1B9880188B7C6 /* MemoryFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile.cpp; path = Core/MemoryFile.cpp; sourceTree = ""; }; FD1254373F44E1E4D0387E98B7DEF301 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; FD236DFE6817BBC71CF2436E1716C085 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; FD38BB00405FC9935354DC865D2EF86C /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; FD4034D4B159285AA34D05DFF251FBF8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; FD4DD47425531889D3309EDF0D15B61B /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - FD51AE634C3CA1DDEEAF9944C84FB624 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + FD514DC6C839CAE30673C5D7D536281F /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FD520F76FBD80356DA1FF8BED46E0FD9 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; - FD5F3344D6C52BE18F4FC3B0038096CA /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - FD83C1873BD8F5D53DBFE09D7C3AC8ED /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - FD894F9DA93056AF5ADAE47ECDEAC68D /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - FD8A1A1EAF2C5CD9EF169BC80EB069B8 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; FD92AE5268A7E9BFFCD0B589DA132519 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; - FDCF08832B587A2A19844620A5440E9F /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; FDD1BDA90B12D34A198B55EC675A007C /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; FDF02594F633048F439A30FA3C75542E /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; - FDF7125AF570E188DD481BA07CCAEC93 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; FE1989B7C7E3997F367520FB2C934818 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; + FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; FE2B7253C03CD7155EB7903E06BF55B7 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + FE2C47736CA1DF17AF7E1053300C2CCD /* 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; }; FE3F9DB0E5B5FF537548C1B2957F1AA3 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; FE4876C0BE018609FE8464CE7E29D818 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; FE4D8A84FB7AA243383EB8997F046C3D /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; FE66489133152A3CAA539993880A3833 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; FE7108D1A09300F0B4643E2F114C5604 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; + FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE90FA9B601FB9683BF2199D13C6EB0B /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - FEC52DA0D46B1074E6604D9FE7EC8074 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FED1FAD71BFAA49F9B85EC506A7B9A9A /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; - FED23D7AABCC17C58109B6E47211A366 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; FEDD1BC76F5318F87A8A9A5E3782606E /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; FEDD51C8D7A4DA2A1F4D6ECEEE7E9BDD /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; FEEADAE395EFAD95880D4ADFC657B6A4 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; FEF7E267E91ED2930A54BC3EF13DEAEE /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; FEF8D9DFAA679DB21C5FE73D9E13135D /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; + FEFA42E3A626B7AD203A6688EEB6BFBA /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; FF1398287B0064DE78BA009BEFCBCCE3 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; FF1CF0CD5E5832E3D28DE78D058DFE0A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; - FF25F6F7520013B1BC788524EB63C196 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; FF2F229DBE2500EC6C68ED6457D17C63 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; FF384C992C01C2239A0D62107ADC442C /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - FF55FF0DE5C7727BD4B69263E69875E0 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - FF6940223D4FD5D810BCA608690CBBCC /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; - FF6E263850D122131FDF4A4AA8B0D79F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; FF6EBF5BB635669BCED603A25992E8DC /* MemoryFile_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_Android.cpp; path = Core/MemoryFile_Android.cpp; sourceTree = ""; }; FF74D46885CF5D55B318522AA6BC33D5 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; FF79D3BE39F7CDEA58A9C6F8F575592F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + FF7ADB045F5E675A0C0EF9907423DBB4 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FF958E28492C2570BC0408228DC7BC00 /* openssl_opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_opensslconf.h; path = Core/aes/openssl/openssl_opensslconf.h; sourceTree = ""; }; FFA79E16FC807C133EC7583550C66FAE /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; - FFC693A9F4CEED6BF32C67844621F6AC /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; FFC75A8F5B5124B06C4B64D73C06B1C2 /* MiniPBCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MiniPBCoder.h; path = Core/MiniPBCoder.h; sourceTree = ""; }; + FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFEA9D877AC8518974C490BF8C9CF9A9 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; FFF3356E34F6F52AADA25F98E8DEF2DD /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - FFFA04668787D4EC7BD181DEAF5872A0 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -10829,13 +10863,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 62174C2C0B9C72F73EAB9402B5997924 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6512C422A3ED47DF591E5933E29C5F5E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10878,6 +10905,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 6F70D7B04DE066BE9629D2BED3959DA6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 71A0D158BA5FABD5206018E532C30086 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10948,6 +10982,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8BBC7F99D4A9431BEE71174923CA3257 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8D9390C824A0EBBD5F51B52050AC11C3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -11193,13 +11234,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E865041724BB2A32A144D78544394985 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; EFDD2D6A15FCDC194552FE8924845D66 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -11221,6 +11255,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F54C531A7E8196B34EC14A91161008F6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F8A87BC1D31D34426155DE9CBFD62B20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -11266,6 +11307,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 0025E5E62E8239231D2BC905FC79FA13 /* Support Files */ = { + isa = PBXGroup; + children = ( + 14504F5E0923FCE3A204B710B6BC8118 /* Yoga.modulemap */, + 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */, + 246B2548D9EB5B906A07596E70E8FA1A /* Yoga-prefix.pch */, + 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */, + 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */, + 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; 0058C43D1BE4A1B473917CD42128D430 /* FlipperKitHighlightOverlay */ = { isa = PBXGroup; children = ( @@ -11275,6 +11330,33 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; + 016A0553A89829B70C552FDF9F3380A4 /* Support Files */ = { + isa = PBXGroup; + children = ( + BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */, + 13EEA1AA3B6103677B576AA768061BB4 /* EXWebBrowser-prefix.pch */, + B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */, + 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 0175D4A2285D7A014772C16BE04FBDB8 /* Video */ = { + isa = PBXGroup; + children = ( + 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */, + 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */, + 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */, + 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */, + D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */, + 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */, + 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; 01D0E5565447530FB34C04EFE1D24C09 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11287,93 +11369,63 @@ path = "../Target Support Files/MMKVCore"; sourceTree = ""; }; - 022B1FF016C2B9EB11741AC4E01FA67D /* Base */ = { + 02415FCC4611A85031296AE92CB66F81 /* Yoga */ = { isa = PBXGroup; children = ( - 29F286A38D9F8077D66B2907B4471EFA /* RCTAssert.h */, - 29F15F3192A3AAE4656CAE842E589BF2 /* RCTAssert.m */, - FA0566E94144C8D3E0526E02DE71C126 /* RCTBridge.h */, - 97AA1F288B625A0272830DA8D840D5A7 /* RCTBridge.m */, - 54418F66A8596E74D65814550846C0C0 /* RCTBridge+Private.h */, - 832FCBC92AA32C76BFE1EAC2D56D09E5 /* RCTBridgeDelegate.h */, - E1254D897FEF7F1A84C519FE2A4556EF /* RCTBridgeMethod.h */, - F02A9C17CC2DFDB3B5D394ACD6070222 /* RCTBridgeModule.h */, - FD894F9DA93056AF5ADAE47ECDEAC68D /* RCTBundleURLProvider.h */, - A1B74E6836D44799DED3702CA61119C2 /* RCTBundleURLProvider.m */, - A9DF9FC613E6147B5063F5481190661B /* RCTComponentEvent.h */, - 9DC8492EF48EB02B79B84699D1B99F39 /* RCTComponentEvent.m */, - 80B3B0A820A8CB3C626A79961674B639 /* RCTConstants.h */, - 457F720C9871D282DD682D03062F7880 /* RCTConstants.m */, - ED167C18ED6B74AA95A7C810B802F5FD /* RCTConvert.h */, - F650C59E460274448E538412F85EAAEF /* RCTConvert.m */, - F2FB6A5DB37C58A31E10C05E1D801244 /* RCTCxxConvert.h */, - A46F11438F7B4CDA138E6ECDB2005A91 /* RCTCxxConvert.m */, - B503E31488AE8659F432E15C7319F4FE /* RCTDefines.h */, - 62D7CDB907FAA70C5E5D76AFD49DF8E7 /* RCTDisplayLink.h */, - C28674E051FEA75FF8455A012A5F6146 /* RCTDisplayLink.m */, - 2467724B23BE16DA80E86D26837EBF77 /* RCTErrorCustomizer.h */, - 7B45549C0E5BA98E5CDBCE7255BA8C44 /* RCTErrorInfo.h */, - 69F41E065574B68F3DF23FF10964A45C /* RCTErrorInfo.m */, - 2718CA08F3B4888614849B4871AAF12F /* RCTEventDispatcher.h */, - 586F14AFA04E344880F54BD25872AF92 /* RCTEventDispatcher.m */, - E64AC9874C4095B3734CA3D49CFB7CFB /* RCTFrameUpdate.h */, - 4AFC17F5C559815998C0DD2ED630A965 /* RCTFrameUpdate.m */, - 42B3FFF4DCAEB5A8E36E27DCC08C6A54 /* RCTImageSource.h */, - 9B581F219FDC85A4553A12622AC187B4 /* RCTImageSource.m */, - B52A61730AFF2D677E328B262A2D7B1B /* RCTInvalidating.h */, - AFEAA4053C613F9D156867FFA9FBA36F /* RCTJavaScriptExecutor.h */, - 078E4301CF6762E329DB080995824CD3 /* RCTJavaScriptLoader.h */, - B60E5A38944754CB0E0FB304F34C7139 /* RCTJavaScriptLoader.mm */, - EEC2129CD045B185E2D06E328B0AE7A8 /* RCTJSInvokerModule.h */, - E45E59960C13DB8D88C8B03EE2F0EC9E /* RCTJSStackFrame.h */, - A18B38C4FBD0747CBFB21D6F1FB5D371 /* RCTJSStackFrame.m */, - F011BC16FC901C8916D917038CC58F01 /* RCTKeyCommands.h */, - 83C18E68F81F772E1F1618C49B3BEC99 /* RCTKeyCommands.m */, - A61B9B90F1F3F013DA9E5B34526101B7 /* RCTLog.h */, - D0465942B9401F0B2A3742B6CD8015FB /* RCTLog.mm */, - 90A918715784DA6F201FB5844357D785 /* RCTManagedPointer.h */, - 5DAD1FF108FAF1CF115C98B196C0FE41 /* RCTManagedPointer.mm */, - 32B6E207F2147E9B324143ABFCD08D3B /* RCTModuleData.h */, - 92EE95B93364400F2FC3510053427587 /* RCTModuleData.mm */, - 57C1B0F82FFE9634396424B1D8AFBD0E /* RCTModuleMethod.h */, - 6D1DEDADF65CC4C395C2BFF7C8000F5B /* RCTModuleMethod.mm */, - A1758EBCE4BF789C65A1E79FD8A79C5F /* RCTMultipartDataTask.h */, - 2A8EBB4B5F45A5138F54DAF266AE2D60 /* RCTMultipartDataTask.m */, - D601C3A1D7FB82879F15EA8F95EDB86A /* RCTMultipartStreamReader.h */, - FD5F3344D6C52BE18F4FC3B0038096CA /* RCTMultipartStreamReader.m */, - EB49A028D3BC63471CD33D60C7623F22 /* RCTNullability.h */, - 24102FD6ECE5EE858D343F400BDA1F30 /* RCTParserUtils.h */, - 11B53542037E663840FD9FA8BD5F8513 /* RCTParserUtils.m */, - 78812300FB3459C3005765BCDA4AECAA /* RCTPerformanceLogger.h */, - 2859D8A74E85984B3D62DE383B20517D /* RCTPerformanceLogger.m */, - 4DD1EDBFB319C1E306DCA5C5300748C5 /* RCTRedBoxSetEnabled.h */, - EA3C94E9631A5FD359538C671675980A /* RCTRedBoxSetEnabled.m */, - 3BF4F6823C3F4AB6F4D376E4BFCFA857 /* RCTReloadCommand.h */, - 544E1C89B5009A76214C371D6EB4772C /* RCTReloadCommand.m */, - 67879F515FC19F59D69857C6EFFAE1B3 /* RCTRootContentView.h */, - B2356ECC6B9ABE8A8CF3488375A6086F /* RCTRootContentView.m */, - 7560EFBCDE7BDC75B9270F74BC4FF733 /* RCTRootView.h */, - 97F49C664B0AAF0713D044859ED1909F /* RCTRootView.m */, - 8BA69F4F3BD05094361D999C5E097E90 /* RCTRootViewDelegate.h */, - 0F75F2CBDDA7DEF7DBD17CDB62414413 /* RCTRootViewInternal.h */, - 42898ED8A82E58FEA2C156EDF46E873E /* RCTTouchEvent.h */, - 74DAAB0892E5B68F2AF79380A289610B /* RCTTouchEvent.m */, - 81997E58DFD39BE48DF769EDEF30A1FC /* RCTTouchHandler.h */, - 9A5E3C8A967801A97877FE39C9AB0A62 /* RCTTouchHandler.m */, - 14167E6E79DDB2D105186D061DF61B3C /* RCTURLRequestDelegate.h */, - 1FE816F7617BDA7F28220C57AA972CB5 /* RCTURLRequestHandler.h */, - 0D0A502BFD1F54C2A6A382FDFE01C71A /* RCTUtils.h */, - 84A6F9033D23BB0FC3865FA431E5FB6A /* RCTUtils.m */, - E31FF00396A413771765BFA2BBE0D78B /* RCTUtilsUIOverride.h */, - AA362D9DD0F4ECCAB45FC5EC88ED3692 /* RCTUtilsUIOverride.m */, - 9F9F1A2F116D98D2951E4B527B6587F2 /* RCTVersion.h */, - 0CD2B8D9C671EA90A96FA71ABAB2DBB8 /* RCTVersion.m */, - E00FD01049352AAEB6B96C5E0E25C654 /* RCTWeakProxy.h */, - C15A7A81200D21B6B197D4B09B45207C /* RCTWeakProxy.m */, - FB527C9561C260360FDA76AD8E29DA9E /* Surface */, + 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */, + E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */, + A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */, + C56C88D596F7791E65D2EA37041F6B22 /* log.h */, + 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */, + AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */, + 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */, + BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */, + 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */, + 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */, + C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */, + 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */, + 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */, + AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */, + 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */, + 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */, + 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */, + 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */, + F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */, + 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */, + 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */, + 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */, + 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */, + A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */, + 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */, + 56E6FB8C827F32E4242463131AB8B336 /* event */, + 084F487B7DF1352966AAAA2D6A219BB4 /* internal */, + AFFFE20E862C5AF555EAA589CEB78765 /* Pod */, + 0025E5E62E8239231D2BC905FC79FA13 /* Support Files */, ); - name = Base; - path = React/Base; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 02555636E7DC8D88C01F0B4D22AAD75E /* Support Files */ = { + isa = PBXGroup; + children = ( + D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */, + 97A7F1B2F686CD42E85B04316E0C4EB8 /* EXFileSystem-prefix.pch */, + 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */, + AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; + 03152C53207508BF08513A8D8A420D20 /* Pod */ = { + isa = PBXGroup; + children = ( + 08410A292904F624C2DE426ADEAF70BB /* LICENSE */, + BFE5D863885FCEB1BE8FF6690024C0CB /* README.md */, + D59501BFC5E63AA6CC3485BADE25ECF9 /* RNImageCropPicker.podspec */, + ); + name = Pod; sourceTree = ""; }; 0365A92D05F82B0816D0CDAE570CAB9E /* Support Files */ = { @@ -11388,16 +11440,12 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - 044BCC5A45B71A553D14B292059A52E1 /* RNLocalize */ = { + 03D9F122ECEA399083B288E7F8F10AD3 /* Pod */ = { isa = PBXGroup; children = ( - 0408C9918B98217CF3B01E4019257148 /* RNLocalize.h */, - 3FD4CC463B932B69492B9B8CA2FDA286 /* RNLocalize.m */, - 8C2DFF161BAEC4741EEE8DE4726CE1E5 /* Pod */, - DDACD178A6980BA962A455FA8FF72150 /* Support Files */, + D2ADC4CC75F94025AF546F47E5DD7C16 /* UMAppLoader.podspec */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = Pod; sourceTree = ""; }; 046A9F9D4FB25006E22CE722E246DBAF /* JitsiMeetSDK */ = { @@ -11410,73 +11458,73 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 051799DF4F587A6BD4C16F904224E34D /* Pod */ = { + 0562D1950AC38AFF7452998284673FDD /* react-native-webview */ = { isa = PBXGroup; children = ( - 1FB782C4D154DDF037436973F5038E1C /* LICENSE */, - 4E55597204DD8C0034E6D87BF0396554 /* README.md */, - 724B3ABBD044987FBC7FB1977961D670 /* RNFBCrashlytics.podspec */, + 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */, + 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */, + C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */, + D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */, + 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */, + 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */, + 225E1A0433E17BCB7C4F48BA78E9741F /* Pod */, + 1342D89D65683DEE187BEA2DD8263D16 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 0639E85480CFDC635BFECB55C3010BA0 /* Pod */ = { + isa = PBXGroup; + children = ( + CDD723C4337CAC9740C288732F194960 /* README.md */, + B5ED26149548ED377E027FEBF35D4DE5 /* RNCMaskedView.podspec */, ); name = Pod; sourceTree = ""; }; - 066140935CBAC2B8F8E402FBEF52118D /* Singleline */ = { + 074351399A186546AA249738908DBB4A /* Support Files */ = { isa = PBXGroup; children = ( - 22F98158F902E7F94336F3562407C8BB /* RCTSinglelineTextInputView.h */, - 8BDCF623BA7B069648767D94FF300111 /* RCTSinglelineTextInputViewManager.h */, - 0CCD0EC7976784F931C9D1C8687A977C /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 066E0494C6B13F8F876CF2BF0A25832A /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - 151930E4423F69B7A5159168C3DB1595 /* RCTSettingsManager.mm */, - B141395E864F5DB8674654FF4E361B8A /* RCTSettingsPlugins.mm */, - 3CFE77CC9FFDF0011995EDF2D14223BE /* Pod */, - 4115C5C5DA10BDE87FEBEAB6C5DB1F61 /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - 07909F7A493AE438785E868EADAFDB10 /* Support Files */ = { - isa = PBXGroup; - children = ( - 61AA4648EA2C60E5B8702693A9423CD1 /* KeyCommands-dummy.m */, - 9E103AB9D5EDF48A9FABFDDBE30C1E4F /* KeyCommands-prefix.pch */, - 126AFC7C4AA04F845CF4124033F10B95 /* KeyCommands.debug.xcconfig */, - D724273977B3E35938C1E087909362BC /* KeyCommands.release.xcconfig */, + 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */, + 3073C8F0BE8E66485FAA5EFA26999703 /* React-RCTLinking-prefix.pch */, + E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */, + 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 07E29AB17D6F08FE2E34EA6CB7558454 /* Pod */ = { + 084F487B7DF1352966AAAA2D6A219BB4 /* internal */ = { isa = PBXGroup; children = ( - DEB75F652FC2A260D41550E479FBE47C /* LICENSE */, - 3261259C3AEB3554D945C180E143806B /* README.md */, - 57C1FF508577ADE93AF35B4186F9F660 /* RNReanimated.podspec */, + A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */, + 098A8102A7A2650315A84E65070320DA /* experiments.h */, + B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + 086FFAFE6E7817323A848D025A831E5F /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + 16A494163BFD15DCF69AF6F747C88391 /* UMConstantsInterface.h */, + 471074A6A60D1F666116246F6F364CF5 /* Pod */, + 7B7A18D737CBA6070367193E0EBA60C1 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; + 0883D9FF3379C97043F78AA648E357A2 /* Pod */ = { + isa = PBXGroup; + children = ( + 568155784873CBBA8CE28A9D27D4077F /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 08A0FA4E8A9A481DA2521B2E435308E5 /* Support Files */ = { - isa = PBXGroup; - children = ( - C34A09E905513CFC4F70E84DCF91EC56 /* EXImageLoader-dummy.m */, - 3B79009ADD1F378E70D0306497ED1E5E /* EXImageLoader-prefix.pch */, - 3034E8103363BE765D13AD9F0899C6A9 /* EXImageLoader.debug.xcconfig */, - 9AD189686C14007ABBC4D2C9A5F6B31A /* EXImageLoader.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; - sourceTree = ""; - }; 08B21C9F26134E3ABC6AB422DFA09272 /* TOCropViewController */ = { isa = PBXGroup; children = ( @@ -11506,6 +11554,27 @@ path = TOCropViewController; sourceTree = ""; }; + 09178F250A1752BC5FBE870231D5A155 /* TextInput */ = { + isa = PBXGroup; + children = ( + 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */, + 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */, + 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */, + E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */, + B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */, + 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */, + 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */, + D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */, + 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */, + 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */, + C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */, + 5FAC90D16813282C6B8A8657B38F7036 /* Multiline */, + 7E36263F7E04F9867FF8C9CC2EF9B8F8 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; 092E964DAC43F6E61216E49C0131F929 /* Folly */ = { isa = PBXGroup; children = ( @@ -11535,38 +11604,32 @@ path = Folly; sourceTree = ""; }; - 0955BF50DA527D8CEADFC6DD5784E855 /* RNFBAnalytics */ = { + 0A5D767935971C34A1E5E42439FC120E /* DevSupport */ = { isa = PBXGroup; children = ( - 4338C554EFAE9D867C075E711BBE8E46 /* RNFBAnalyticsModule.h */, - F4F8D5D48816144BB5C020B3B6E4E980 /* RNFBAnalyticsModule.m */, - 3C18ABB90D20F429A2A40B6302C36CD4 /* Pod */, - B968DF2A16CED7D06B668D6C6D706A76 /* Support Files */, + 7908FCA2BA37EA5CF7806B789C69518F /* DevSupport */, + F1981BD93BC026E0DAF5FF3C713A05B4 /* Inspector */, ); - name = RNFBAnalytics; - path = "../../node_modules/@react-native-firebase/analytics"; + name = DevSupport; sourceTree = ""; }; - 0AEC8E6D6932E68C98F9C522EAB07F96 /* Pod */ = { + 0B242BFEE975868CE6B0F55D5F0DEDA6 /* Protocols */ = { isa = PBXGroup; children = ( - 55B865411C4B8E5C6B861F6963CF6C7B /* EXHaptics.podspec */, + DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */, + E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */, + 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */, + ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */, + E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */, + 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */, + 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */, + 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */, + C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */, + 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */, + 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */, ); - name = Pod; - sourceTree = ""; - }; - 0B03872CC23F0847454B8CD2100007E0 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 4CF220E1D8A9988FAAB4F481EFFB4B45 /* UMModuleRegistryAdapter.h */, - 97C5151C88E72FD02091261320924F46 /* UMModuleRegistryAdapter.m */, - 6713D84483B575462EEFFEF7E3AA2820 /* UMModuleRegistryHolderReactModule.h */, - 782C5193E20173687BDBCC3A97D82B29 /* UMModuleRegistryHolderReactModule.m */, - 36451A4CE71787034E42E9E117ECC49A /* UMViewManagerAdapterClassesRegistry.h */, - AB1251B8DE91FB9547F8EEA0734C1FC4 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; 0B6F3975E2DDED062C3C130D1D0D3DF1 /* CocoaAsyncSocket */ = { @@ -11582,6 +11645,21 @@ path = CocoaAsyncSocket; sourceTree = ""; }; + 0B747D2F93D5FC219BDA4941A4DE5D2E /* Profiler */ = { + isa = PBXGroup; + children = ( + 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */, + 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */, + 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */, + 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */, + 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */, + ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */, + 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; 0B8B912343EC19503B56C921190598E3 /* CoreOnly */ = { isa = PBXGroup; children = ( @@ -11590,12 +11668,39 @@ name = CoreOnly; sourceTree = ""; }; - 0C472F4E0956BBD5F6FA0B561CC6930A /* Pod */ = { + 0BD935D4A756F87412AABD0B1A09EA49 /* Support Files */ = { isa = PBXGroup; children = ( - F71887585BB0FE63D8301539087F7276 /* React-callinvoker.podspec */, + 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */, + 6DFDF2EB4D321BF1974B4996B4D1A3F6 /* React-RCTBlob-prefix.pch */, + 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */, + 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + sourceTree = ""; + }; + 0C597FC495245608A7FA73A252F42EE6 /* React-callinvoker */ = { + isa = PBXGroup; + children = ( + FB1F5F8F8C6D0F39D6E8DE7625A747DE /* CallInvoker.h */, + FEAD6EA6763FA9EA3A20E58B076D2F71 /* Pod */, + 1625DFD9FA904E643B34E5C03DFEBDE5 /* Support Files */, + ); + name = "React-callinvoker"; + path = "../../node_modules/react-native/ReactCommon/callinvoker"; + sourceTree = ""; + }; + 0C62C6FA83619C08BED907116743383D /* Text */ = { + isa = PBXGroup; + children = ( + 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */, + A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */, + 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */, + 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; sourceTree = ""; }; 0C9D77C9F09F0E685E535780C2AB4261 /* Static */ = { @@ -11687,16 +11792,6 @@ name = Static; sourceTree = ""; }; - 0CBD8C07284BFACDBDF52BDF6AFA998E /* KSCrash */ = { - isa = PBXGroup; - children = ( - 8A73FE1987F29BA2DB3D32AA5C69B759 /* Recording */, - F6E134E6663E80C6BE72C38356108167 /* Reporting */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; 0CEC133A828D8F6A1642DA7351B30C4C /* Support Files */ = { isa = PBXGroup; children = ( @@ -11711,16 +11806,6 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - 0D0B69E735E74794D60B50C6CAD4FF9A /* Pod */ = { - isa = PBXGroup; - children = ( - A9B5082E9810157B467FDEBCBA134270 /* LICENSE */, - 84BA8F29F731B4CEEB1C418BA9EB2114 /* README.md */, - 726676C12FA1382D109C49D130369C6A /* RNVectorIcons.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 0D2F222EDAC97FAD5A91A748A25DBE5C /* Reachability */ = { isa = PBXGroup; children = ( @@ -11732,137 +11817,52 @@ name = Reachability; sourceTree = ""; }; - 0FB0613488D02E465DF266B09D0B8BA5 /* Products */ = { + 0DD99175C117B9F22A4594D4F020BE73 /* Pod */ = { isa = PBXGroup; children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, - 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */, - E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, - 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, - 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, - 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, - EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, + 8D1134DE526545AC0020485B53160E33 /* EXImageLoader.podspec */, ); - name = Products; + name = Pod; sourceTree = ""; }; - 0FC2E168AEB170A82501F874EC078A51 /* EXVideoThumbnails */ = { + 0E9178E942377A10EBB846D22282453C /* EXConstants */ = { isa = PBXGroup; children = ( - 49802B6AF77454D25F55FD6EF7221C17 /* EXVideoThumbnailsModule.h */, - DF4A9256F4C81DF672287BCF3150920B /* EXVideoThumbnailsModule.m */, - 4EB3883823CF777F303B5F713639CE3D /* Pod */, - 1D32DDAE2F48C88C5BA806701117E2B0 /* Support Files */, + DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */, + D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */, + 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */, + 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */, + F4CC2FDFBA257F843DD586BA351C9444 /* Pod */, + 8148DF8F2774B76439E5974C0FF1622B /* Support Files */, ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 102540019C920ED94D807BBD95A954F1 /* ReactNativeKeyboardInput */ = { + 0EE6A6AC15B8BD82051644CF0955BEC4 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 358A6F75F78E0CC48E52FCC59A197586 /* LNInterpolation */, - BB1B42B226114703C023F0929B0EE3C6 /* Pod */, - 44B10E20EC424C02A43A97E82BC96E69 /* RCTCustomInputController */, - 5CE25CDCC09D5D47D37A39FEF15A2136 /* Support Files */, + EFADD1430321D40620762E3F71D316EC /* UMFontManagerInterface.h */, + 4EBDDC34DD5EA2B46AFD7CF6924496D1 /* UMFontProcessorInterface.h */, + 7D6F1ACCC99F3B7F18025DDFD98FD4D9 /* UMFontScalerInterface.h */, + E6F41B53B99C9D4A02BA536BD636E645 /* UMFontScalersManagerInterface.h */, + 0883D9FF3379C97043F78AA648E357A2 /* Pod */, + 1B598AFCA7D3A5CB4107828508911B24 /* Support Files */, ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 0F1F268623CB845A49D8DC1224E721B3 /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + 22247E6BC5D6A3B1C48E23C163EA26AB /* UMFilePermissionModuleInterface.h */, + DE0F720FB17AED60FC53C4F8F4375EA5 /* UMFileSystemInterface.h */, + 27FC7A34E49ECFA0920CD4456EB770A5 /* Pod */, + 8A7DD642CB20DAEEF4623FAAE0E192EC /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; 10699B5F09038ECFE7681A4E1D51CE16 /* Support Files */ = { @@ -11929,19 +11929,6 @@ path = FirebaseCore; sourceTree = ""; }; - 1189E3D11A9C0A8CE1087AE3FFD86B54 /* RefreshControl */ = { - isa = PBXGroup; - children = ( - AC77A36EA9EDFEBD9E5891D0B7C06AE6 /* RCTRefreshableProtocol.h */, - 0D0A447C357EEF348208F26A570F8EBE /* RCTRefreshControl.h */, - 788CC5A86818F2EC6ACCAE5A2B067599 /* RCTRefreshControl.m */, - BFC5FD1A7B2AC284F06E53E315093AAE /* RCTRefreshControlManager.h */, - 99764E3C24325146A38FF9DF1BD40846 /* RCTRefreshControlManager.m */, - ); - name = RefreshControl; - path = RefreshControl; - sourceTree = ""; - }; 11E23E8ABDFF4BB36BBF5400BB53F388 /* Flipper-PeerTalk */ = { isa = PBXGroup; children = ( @@ -11959,60 +11946,46 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - 11F6BFFFF6EE8026315BBC10CB5FF4B5 /* Support Files */ = { + 11FFF265BC8455577CD2E9D2549BC8BE /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 6E100A4757E47255D6BD074E6D4DAB18 /* EXAppleAuthentication-dummy.m */, - 19B6F81D544BA4078A90FFC6276E1EF3 /* EXAppleAuthentication-prefix.pch */, - DC52BEC8C3F6C663EA96D99D362F8508 /* EXAppleAuthentication.debug.xcconfig */, - 38584C66D40FC322B431CCC520EA0982 /* EXAppleAuthentication.release.xcconfig */, + C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */, + 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */, + 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */, + 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */, + F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */, + 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - 12A254D74A266344434954F3E8E68AD3 /* CxxBridge */ = { + 1333E4F99C58699A45B13E35C159D42E /* Pod */ = { isa = PBXGroup; children = ( - CB2BE534C19818CB0A63C474D4387768 /* JSCExecutorFactory.h */, - A6DC7A56F46C2112721188E13D736639 /* JSCExecutorFactory.mm */, - 0210E9FDE6D3CE223268425B5A0FCE26 /* NSDataBigString.h */, - 1B28C6987DC7BDA395FE24DB0842AD8F /* NSDataBigString.mm */, - B0ADCCD9872B693F95E35EA36CFCA01F /* RCTCxxBridge.mm */, - 99E7CF3EA72A6DA8531C1AFD6D8E4F43 /* RCTCxxBridgeDelegate.h */, - 9C93949043EA3718D0AA4236C94F6D44 /* RCTMessageThread.h */, - 0D981C6E4217C012425FD40A1504D965 /* RCTMessageThread.mm */, - 51908AD46D835320AABC9C81D96F687A /* RCTObjcExecutor.h */, - D6D1111ECB6FF8434C3EB83F5DB44F05 /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - 12CFD0A6988B06A43EBFD66D42BF7ADC /* Pod */ = { - isa = PBXGroup; - children = ( - 62E4F52BC4ABF08F5B536A77DF830CB1 /* LICENCE */, - 76EE9D6067E78704159D55A1587B25EF /* react-native-cameraroll.podspec */, - 8E19C2AA81ED836C68BFBD3FA60EDE41 /* README.md */, + D12DA2B389D7BA6439B5E7D859163752 /* LICENSE */, + C1CC9D27B7C27DB8BF989C0D8324203C /* README.md */, + 8D3086EF2EB0A64D617B13589B800213 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - 13C24CCEDA6C58D0DE8AC1CFF657432A /* Support Files */ = { + 1342D89D65683DEE187BEA2DD8263D16 /* Support Files */ = { isa = PBXGroup; children = ( - 089F571922CEAE86F606AE7E27556A13 /* UMFontInterface.debug.xcconfig */, - 48FFFD1657781DE7B48B64CCFE5343EB /* UMFontInterface.release.xcconfig */, + 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */, + D57E08F6A0A9451EFB9EB412D94B3A8D /* react-native-webview-prefix.pch */, + 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */, + 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - 13F806373E556A1F159914C41F90DF0F /* Pod */ = { + 141794D377F8B494684B6C3E7F8FDCC3 /* Pod */ = { isa = PBXGroup; children = ( - 61B8A673737EDD2159635330A16A0EE5 /* UMTaskManagerInterface.podspec */, + F0836D0A2E8BA89E5EA31A575B26D3AF /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -12028,65 +12001,146 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 14B11B856CAE0D7492D303AAACB2D28E /* SafeAreaView */ = { + 154F796048428F6E3E4481B068D71EC8 /* Support Files */ = { isa = PBXGroup; children = ( - E32CBAAFFE8216A04269FF134B5B273F /* RCTSafeAreaShadowView.h */, - 30DF021651DF127193BEA6500A9FB246 /* RCTSafeAreaShadowView.m */, - 05CCA7157539C2698E76487D6D51154E /* RCTSafeAreaView.h */, - 91886489B3266BCADF488AF827094922 /* RCTSafeAreaView.m */, - 38D52267A3623C31952EB1951D4E20A0 /* RCTSafeAreaViewLocalData.h */, - 07DA72B0E907561B03C33D6C0A51114E /* RCTSafeAreaViewLocalData.m */, - 43445AB4ED7D1C215F4680208C9B1E34 /* RCTSafeAreaViewManager.h */, - BA0BCDEE8AF04770C9EB812AE9F2933D /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 15B4723392A6E66D61D243E32561FEB0 /* Support Files */ = { - isa = PBXGroup; - children = ( - B4EBE2A9E08BDE917D2EA07D3BDF5A00 /* RNConfigReader-dummy.m */, - EA6F9E85F10F3FEEEFA74578B8642F68 /* RNConfigReader-prefix.pch */, - 7E3D24BA6820EC26A3C4941962475C8D /* RNConfigReader.debug.xcconfig */, - AB7A1809EF13D7C53A95038897BF263E /* RNConfigReader.release.xcconfig */, + 69B026798EE5691465D083B5DEB9822C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */, + 054C9445767DD83D0012B423A3B2BE4E /* RNImageCropPicker-prefix.pch */, + E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */, + D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNConfigReader"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 16F575DAA9D82F02EEE72A2FB34FA1FA /* Services */ = { + 15E7B22CEC38BA408FEB9EEB7358BF0C /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 54464AF9EE1A9304D6B960FE9DF1EB79 /* UMLogManager.h */, - 7AE28AEA7FC6B3229ACF46227E87689C /* UMLogManager.m */, + FC92CC55D6BAF41621AB8ADCBB313321 /* UMCameraInterface.h */, + 6763E034031DE82C399D8FE54951F420 /* Pod */, + A0D0A721FDFA834AA78EF333CBEE0D72 /* Support Files */, ); - name = Services; - path = UMCore/Services; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - 179076DCCB0DA625851C4416532AEBE2 /* Pod */ = { + 1625DFD9FA904E643B34E5C03DFEBDE5 /* Support Files */ = { isa = PBXGroup; children = ( - 3E2894B758C7B9EAEDCF0E7483C3FEF7 /* LICENSE */, - D87051EFFF3A09941586CC53D42D1A00 /* README.md */, - 52B5B6F34145D2493FB62BB2FA27DFDE /* rn-extensions-share.podspec */, + CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */, + 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + sourceTree = ""; + }; + 16297DDB1A37130233D3BBB45D2F16EA /* Support Files */ = { + isa = PBXGroup; + children = ( + 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */, + 972C4F6156743DD2B5BFA918D19EF30E /* react-native-background-timer-prefix.pch */, + 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */, + C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + 1739E905798A11553D7A9F46AF339995 /* Pod */ = { + isa = PBXGroup; + children = ( + 290719AB3B8C5CDAB1C89C312F465D55 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 1987D8941C8C02F2938B129C9C5B8B16 /* Support Files */ = { + 1782E4C0BAEC9779F492763333C34598 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - CF1BF7E2C145F3FD4885E6944ED4196C /* React-Core-dummy.m */, - BE186CD2C4E59F57D02194B83139014E /* React-Core-prefix.pch */, - 815C3B6343CAD30CF200A1E5E6492B88 /* React-Core.debug.xcconfig */, - AD6B817761B8E2E9EC23F01C5FD81DAA /* React-Core.release.xcconfig */, - F40CFDFC662E69B87AC1A347B3225B9E /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */, + 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */, + 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */, + D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */, + 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */, + 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */, + 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */, + D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */, + 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */, + 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */, + CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */, + CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */, + A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */, + 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */, + 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */, + A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */, + 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */, + 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */, + EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */, + 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */, + 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = RCTImageHeaders; + sourceTree = ""; + }; + 183BD8E6F6390EA428681A786FFEFD1F /* react-native-appearance */ = { + isa = PBXGroup; + children = ( + FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */, + 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */, + 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */, + 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */, + 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */, + B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */, + 7A2A83545F2FCF2AB9ED9BB7468E232A /* Pod */, + 46ACE5E8EB6099F31B26E6B855EBEB7C /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; + sourceTree = ""; + }; + 18608142289F471E38808A8ADA158428 /* React-RCTAnimation */ = { + isa = PBXGroup; + children = ( + CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */, + 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */, + B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */, + 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */, + 4965F8C77EE57F7B8843D516AF63701F /* Drivers */, + C42FFA6D244147A88DC3B8B52D5AEC20 /* Nodes */, + 75B5D3DB25D99C310F2596DDBAE1D595 /* Pod */, + 47246D899999BA7EB52AE8D654EE94A2 /* Support Files */, + ); + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + 18D086326D1B816B8532F118DFC0B002 /* Pod */ = { + isa = PBXGroup; + children = ( + 98EBD075FA88BF61298059B8DA66AA69 /* LICENSE */, + 96791F5A9A48663AF83F84E7F2133EAE /* README.md */, + 7F01863205DBA6FB0E14ABEC758298F1 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 18F1B47255129F664B546B7623C20B9A /* Brushes */ = { + isa = PBXGroup; + children = ( + 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */, + CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */, + 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */, + 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */, + A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */, + 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */, + 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */, + 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */, + 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */, + F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; sourceTree = ""; }; 19D82DDF04AEF5868380169B913D6D98 /* Core */ = { @@ -12116,27 +12170,26 @@ name = Core; sourceTree = ""; }; - 1B32B2562EACCB04B4FCDBB0340FF006 /* Resources */ = { + 19DD4BF0D2BA1792C46D8F63B1B64A65 /* Support Files */ = { isa = PBXGroup; children = ( - CF30E4F6B447834793791B199602C183 /* AntDesign.ttf */, - DD24071F4301E5DA23C442683E43909C /* Entypo.ttf */, - 29C2D5AD37C2DA180C49C1137CF1BC18 /* EvilIcons.ttf */, - 9B64DDC4A896E17E030CC492A037F993 /* Feather.ttf */, - EE7E1C81257FFE70972FC98264AE1DB3 /* FontAwesome.ttf */, - CF5652FD9FA398341DD78898D836C4D8 /* FontAwesome5_Brands.ttf */, - C8B7D8A8217E13BCC653FB6E9E14CD13 /* FontAwesome5_Regular.ttf */, - 92350E78D05B4E9866E82163E3DC4DAE /* FontAwesome5_Solid.ttf */, - F49EC155A99E0C2A295F52E03F82D6E0 /* Fontisto.ttf */, - DC3277F6D399160E585ED4FA7CA8CDF4 /* Foundation.ttf */, - 8181181E4E52933568FD77E02422F72D /* Ionicons.ttf */, - C949FC09E1459C60EEDE7763D72B9B10 /* MaterialCommunityIcons.ttf */, - F325B7638D4AB36B51B9D851724F9B1C /* MaterialIcons.ttf */, - 56E7875761A309B620F0C786777863CF /* Octicons.ttf */, - 8FDA51423F51D4CCE2F3B6D6E7D768A7 /* SimpleLineIcons.ttf */, - A435C1891B0D9C96FFB2BE5B1D046E0B /* Zocial.ttf */, + 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */, + 9C4817758DDF25685598ECC209BFEA71 /* react-native-jitsi-meet-prefix.pch */, + 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */, + 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + 1B598AFCA7D3A5CB4107828508911B24 /* Support Files */ = { + isa = PBXGroup; + children = ( + C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */, + 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; 1B5F27ED9554A3FBD16302E9C961C32F /* DoubleConversion */ = { @@ -12166,6 +12219,16 @@ path = DoubleConversion; sourceTree = ""; }; + 1BC0DBBB543FA45386E1A957306A3906 /* Pod */ = { + isa = PBXGroup; + children = ( + 09553FDB3FD9974E7D3B99CB02D84EA2 /* LICENSE.md */, + 804A1561B96171A6817526601368BB87 /* react-native-document-picker.podspec */, + 8CFFA97FB688C0969FCD2DA93D21FF25 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 1C52523A7E8B5F36CB651B6D47155BAC /* FBCxxFollyDynamicConvert */ = { isa = PBXGroup; children = ( @@ -12175,74 +12238,63 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 1CA59BC77C1CB9DB4E5B23C76601746B /* Support Files */ = { + 1E78BD0F504D1A65FCB9DAECAE320657 /* Source */ = { isa = PBXGroup; children = ( - C5F649EC43C845AFEB276295AEA4BC51 /* EXWebBrowser-dummy.m */, - F4140D4B294447152F82952A4ED76932 /* EXWebBrowser-prefix.pch */, - 1426A30C44097B60039A709BBD1BD089 /* EXWebBrowser.debug.xcconfig */, - A4395A9D680EAD963EFEC1C87247E4AB /* EXWebBrowser.release.xcconfig */, + 1F1E0F65EC172FA77464FE6EA61505E3 /* KSCrash */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = Source; + path = Source; sourceTree = ""; }; - 1D32DDAE2F48C88C5BA806701117E2B0 /* Support Files */ = { + 1EA42BF00FC8845824AF1A9EB3053EA2 /* Services */ = { isa = PBXGroup; children = ( - 61E3195F7C25FD9632FC9F74617CC280 /* EXVideoThumbnails-dummy.m */, - A56A945706CBD80781012DCC652B159B /* EXVideoThumbnails-prefix.pch */, - C50D2ED0DFE5A618E2D84E2F24172D83 /* EXVideoThumbnails.debug.xcconfig */, - 81DB8245279F0695B9EC71EB4EDA66C6 /* EXVideoThumbnails.release.xcconfig */, + D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */, + 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */, + 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */, + FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */, + 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */, + 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */, + 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */, + DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - 1DA389ECE8AB8825A409D962E6B6CC76 /* Pod */ = { + 1F1E0F65EC172FA77464FE6EA61505E3 /* KSCrash */ = { isa = PBXGroup; children = ( - C054A71F6406F31575B8BC9E9F04F668 /* React-RCTActionSheet.podspec */, + 2060EBE9B233361C66811D7F3B00E9D0 /* Recording */, + 831C3F43486ABC5E935971A6CFF3ED91 /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 1F56FD3B29F35D002A0C8277CCB2BB63 /* Pod */ = { + isa = PBXGroup; + children = ( + 60DCE50527BD6D2744ED2908D45D957B /* LICENSE */, + 0199983D50A443E1BE0A11F50D48F716 /* README.md */, + B8DDF33544CB1BDCD56C15CCD835E04F /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; - 1DAB0B9A884FA7E1737EA70E985D276B /* RNFBCrashlytics */ = { + 1F7F2987322CB4729DF4E8D85FA57DC0 /* RNConfigReader */ = { isa = PBXGroup; children = ( - FED1FAD71BFAA49F9B85EC506A7B9A9A /* RNFBCrashlyticsInitProvider.h */, - 00AEB8C2658F2328C9170C3D672E316C /* RNFBCrashlyticsInitProvider.m */, - 9A03CDE512E790DB004FCB666261C690 /* RNFBCrashlyticsModule.h */, - F1C866DB4963DE027C3A5C558449653B /* RNFBCrashlyticsModule.m */, - 051799DF4F587A6BD4C16F904224E34D /* Pod */, - E09DD8F6ADA151A6EDD08549929970A5 /* Support Files */, + 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */, + C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */, + 9461B2310AC4F6C5B28C8ED3AA01D3D8 /* Pod */, + A3D93461A099F1E6E8B48163D1A5D8C0 /* RNConfigReader.xcodeproj */, + D811F42B94AA4B26876A1284A6554C8B /* RNConfigReader.xcworkspace */, + 4020C893A0865139AC37E5F849E2B109 /* Support Files */, ); - name = RNFBCrashlytics; - path = "../../node_modules/@react-native-firebase/crashlytics"; - sourceTree = ""; - }; - 1DC27121611BA1E49D849F8DC889F03F /* Pod */ = { - isa = PBXGroup; - children = ( - AAAC38381CDC3D218D73F4945F716C13 /* api.md */, - DC9CCDEDD2F6EF265C34D3100E92F87F /* LICENSE */, - F186C01C4F374936FBCB305EF47D46B0 /* ReactNativeART.podspec */, - 3894FB528BFD740A3A2244DD60DC9429 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1E0CFF0CE5DBC91125D0B5AC7D5EE52C /* Support Files */ = { - isa = PBXGroup; - children = ( - 6F7EA5D29828AF9139880A6C47F4782C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - D0BF89BDA1ACC3195F40CCFF436CAAED /* RNImageCropPicker-dummy.m */, - 82E999EE849E2AAB0365CAC694C9A86C /* RNImageCropPicker-prefix.pch */, - 1E9FDC76D8C039F853E591D42C6D0061 /* RNImageCropPicker.debug.xcconfig */, - 1B511D7CD11F62C75323A087784E48A6 /* RNImageCropPicker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = RNConfigReader; + path = "../../node_modules/react-native-config-reader"; sourceTree = ""; }; 1FBC411B978207FD4CAB047DDE63BC21 /* SDWebImageWebPCoder */ = { @@ -12259,23 +12311,24 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 1FD79B5E90F0A797C8808160E9FA0D17 /* TextInput */ = { + 1FF9C11DEA5FB5AC07C68242C7CA9432 /* Transitioning */ = { isa = PBXGroup; children = ( - 04E2D48433B61B581C56F302C506980F /* RCTBackedTextInputDelegateAdapter.m */, - 973074E2F7F2D7250F1497BBE021F076 /* RCTBaseTextInputShadowView.m */, - DA7873392205C10CE55AFF7029DA01C8 /* RCTBaseTextInputView.m */, - DF7B9CF24D42151901E651FD5524ECAC /* RCTBaseTextInputViewManager.m */, - 76E4016415EF323973F15B2C66B23662 /* RCTInputAccessoryShadowView.m */, - F491F6B20464CBEB7C3FCE8826413329 /* RCTInputAccessoryView.m */, - D8F6C13F5A3B121B97C8A0B7CE05CF2C /* RCTInputAccessoryViewContent.m */, - 4FE494FF00EF884BDA414D2C2CACB29D /* RCTInputAccessoryViewManager.m */, - D70A603F51AF813B09988DE24973BF7D /* RCTTextSelection.m */, - EA2550344C2B7056043EE4CCB0EEE1A4 /* Multiline */, - F3B251CCDCA6984194ABA8CFA75A4FDD /* Singleline */, + F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */, + A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */, + 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */, + C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */, + C0030898FE4DB1557627B02C59286307 /* REATransition.h */, + 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */, + A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */, + DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */, + DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */, + BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */, + 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */, + D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */, ); - name = TextInput; - path = TextInput; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; 20029F9EC0AFA43F5A4B4A873C9D907E /* Support Files */ = { @@ -12290,76 +12343,38 @@ path = "../Target Support Files/MMKVAppExtension"; sourceTree = ""; }; - 201E77D5FC9F2C560235FD1ED1E1C1D3 /* Support Files */ = { + 2060EBE9B233361C66811D7F3B00E9D0 /* Recording */ = { isa = PBXGroup; children = ( - 6B4457BBEE1B2C2D1D9285171529B43F /* RNScreens-dummy.m */, - 2381DDC54493DD318E2730F83893CE29 /* RNScreens-prefix.pch */, - 044A2F2412154286EE12C1AC67F738B5 /* RNScreens.debug.xcconfig */, - 688D960074D7FDD96EB555A71DB044A7 /* RNScreens.release.xcconfig */, + 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */, + 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */, + 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */, + A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */, + 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */, + DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */, + 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */, + 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */, + 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */, + 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */, + A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */, + 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */, + 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */, + DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */, + AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */, + 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */, + EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */, + A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */, + 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */, + 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */, + 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */, + 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */, + 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */, + 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */, + 36911DBC4F6A0B332EFB60CF7FE86352 /* Sentry */, + 86A09457C4E3C8214C2E108E5717EAFD /* Tools */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - 2040A008705392FF6F4E90804D8C9EFC /* Pod */ = { - isa = PBXGroup; - children = ( - B3DE3AE87641354FBE8D6ADCB239D1BB /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 204B73F27737EB3E368A521D357C4DEE /* Support Files */ = { - isa = PBXGroup; - children = ( - 1CC0ECE45A6744A5238684A234A3AECC /* EXLocalAuthentication-dummy.m */, - EAAEAE45E45A3B36D42D28BFC6A559CF /* EXLocalAuthentication-prefix.pch */, - 27A3F275CACB944025971F87E5D157A7 /* EXLocalAuthentication.debug.xcconfig */, - 1775EE285AE3CEFA26E36EB384C87B73 /* EXLocalAuthentication.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; - sourceTree = ""; - }; - 20BC769A304A1D4F610FB320E085ED57 /* Pod */ = { - isa = PBXGroup; - children = ( - FB9D0EA2DC153D6AEF2B4B8D1DE0FB8A /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 20D31DF5820F11D0BB722C2A552992C2 /* Pod */ = { - isa = PBXGroup; - children = ( - D42D378F198185EABBAE6FF3A639E066 /* LICENSE */, - 24BDD9E7A1AC7C7413CB912A5E22F76B /* react-native-jitsi-meet.podspec */, - 34F4E1006582BBB34933D2EBB86D626F /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 215E9477F95B71637383833BC95F8B11 /* Support Files */ = { - isa = PBXGroup; - children = ( - B82E5268364C6B7E7E7CC1A5BEA1981D /* UMBarCodeScannerInterface.debug.xcconfig */, - 543160FE64728D2CC3B8F488E94228FF /* UMBarCodeScannerInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 21683FF89DA41438D174E5E479A8D851 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 5747F11F935B0F7BFFF54F3F89C667EC /* RCTVibration.mm */, - CC5A9161A0E4F38AD2F3D69963DFB81D /* RCTVibrationPlugins.mm */, - E6D706898FA2C398BF1E0FF9BA3B38A9 /* Pod */, - FEC9F343B22DC4F740B2093FC0E5AF64 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = Recording; + path = Recording; sourceTree = ""; }; 2190E9D0A50A0D812636F286A46886B0 /* Support Files */ = { @@ -12374,164 +12389,206 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - 2219F7A48F2A2E8A45D82043117F6DF6 /* Pod */ = { + 21EC55C78E7F6C46959A8C3389FE911C /* Views */ = { isa = PBXGroup; children = ( - 2275F4B1696D163848070BA812EEE1E3 /* React-RCTImage.podspec */, + 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */, + 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */, + D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */, + 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */, + 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */, + E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */, + 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */, + 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */, + D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */, + 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */, + 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */, + A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */, + 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */, + BBD988D67BB23F05086B6AE2FA5B32E9 /* RCTConvert+CoreLocation.m */, + 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */, + B2783E8C8A79BAE9AE51E80D773DDB2D /* RCTConvert+Transform.m */, + B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */, + 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */, + 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */, + D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */, + 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */, + C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */, + 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */, + 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */, + EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */, + F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */, + 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */, + 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */, + 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */, + D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */, + DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */, + 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */, + C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */, + 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */, + 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */, + 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */, + 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */, + 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */, + 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */, + BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */, + 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */, + 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */, + F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */, + DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */, + BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */, + F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */, + A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */, + 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */, + 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */, + 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */, + 71EE0824B08F01894BCE4A04CBCCE009 /* RCTShadowView+Internal.m */, + 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */, + AD1058B0F20D3C367979F14EF0242078 /* RCTShadowView+Layout.m */, + FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */, + 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */, + E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */, + 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */, + D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */, + AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */, + 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */, + E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */, + BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */, + 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */, + 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */, + 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */, + 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */, + EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */, + 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */, + E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */, + 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */, + 7128817469619B56E1F4D7C19B4A2A2A /* UIView+React.m */, + 475E176FFD97E2C800FF91DF03216556 /* RefreshControl */, + 7E7F90CADCBC425302A36BC37847084E /* SafeAreaView */, + B114AD28ED28AE03783C18796A445B18 /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 223AF0011C98B433401C8BB78CB6B065 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */, + 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */, + AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */, + B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */, + 1333E4F99C58699A45B13E35C159D42E /* Pod */, + BB77D82ABB6CD699B60B07B0A8609201 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 225E1A0433E17BCB7C4F48BA78E9741F /* Pod */ = { + isa = PBXGroup; + children = ( + 28884FB1DDBDD4E9BB48826466D84D31 /* LICENSE */, + 93D74EFB015CFD784B0E79903C6773F4 /* react-native-webview.podspec */, + 087C479264A1B317065A9E54BCCE3C08 /* README.md */, ); name = Pod; sourceTree = ""; }; - 24CD3ABFAFEB9674F803BC7B0AD4F290 /* RCTBlobHeaders */ = { + 23229A9F79137EC5C32A5FC4974614D2 /* BaseText */ = { isa = PBXGroup; children = ( - 52556F603C304852E2A3E72D9840AD74 /* RCTBlobManager.h */, - C0ECEA6BB9843E0D132FE44B9D076816 /* RCTFileReaderModule.h */, + 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */, + DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */, ); - name = RCTBlobHeaders; + name = BaseText; + path = BaseText; sourceTree = ""; }; - 24D81D0FCF70F2D8A3E247F93D48FEEF /* Pod */ = { + 236C414F2621D2152F5FD1E87C0BA023 /* Pod */ = { isa = PBXGroup; children = ( - F8785971FD6228863D85B18A1E23F4F7 /* LICENSE */, - D12B8DC9818D69C7A243EF5E1831E4D2 /* README.md */, - 17E18FA68ABC4189F4F806C38C81933D /* RNScreens.podspec */, + 38A9A8F8C0F7BC70FFB6E6D23E57F3A6 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - 2504F2D7BEF1585AEB3C6510CBDD7762 /* React-RCTActionSheet */ = { + 2619A6AD0A3FACCB5F32907EC8215996 /* Pod */ = { isa = PBXGroup; children = ( - 1DA389ECE8AB8825A409D962E6B6CC76 /* Pod */, - A057DF07B0B1E1770EF28F3E659379B6 /* Support Files */, + 7DC06DB3B31DDD3D5B151119DEC2BDC6 /* BugsnagReactNative.podspec */, + 32B6AFB4FF39246C40AF62895EEDFAFB /* LICENSE.txt */, + AB28F7A9ED8DD36DDA6C790D3E11AEA5 /* README.md */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; sourceTree = ""; }; - 25138E29BE29E37AE734C6EDFAC11867 /* react-native-mmkv-storage */ = { + 26674FD7DE156CDF72F26D1E1A451162 /* core */ = { isa = PBXGroup; children = ( - F9A50091D782125347F220D0E7FF9730 /* IDStore.h */, - 862A89EF54BA1168F9F7B6E0A575B091 /* IDStore.m */, - FAC54ECC9011F0BC7EAE9E0D0891CCF7 /* MMKVStorage.h */, - 4F4EEBC511FA31D0639827125E9729E6 /* MMKVStorage.m */, - A8FF134B307E96301A57005807D2726E /* SecureStorage.h */, - 518BA055FC9DE3C34EFB047C599F309C /* SecureStorage.m */, - EE4FE4404C9C754BDD63009DD9E39341 /* StorageGetters.h */, - 005CF06E44FB4AB2C00E5AE9548BB445 /* StorageGetters.m */, - AC9759E576A9BE20BAF9895528E10CD6 /* StorageIndexer.h */, - 1F6A7AFBA804245CAECA51C7B7404355 /* StorageIndexer.m */, - 3570D5A579ACC4AC7D594C3CDA2BC5CE /* StorageSetters.h */, - 9326B6633EB6025A5554380FA266D727 /* StorageSetters.m */, - 8E63EB5000FACCF4BC2C6ADDD7CA127D /* Pod */, - 5112BB9272EA06F1A1D5AD5F214FCA72 /* Support Files */, + 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */, + 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */, + C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */, + 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */, + 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */, + 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */, + FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */, + D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */, + 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */, + 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */, + 86B1D2B7F6354DE7E902FE2FC20B7B5A /* platform */, ); - name = "react-native-mmkv-storage"; - path = "../../node_modules/react-native-mmkv-storage"; + name = core; sourceTree = ""; }; - 2543A6547BFD9B1FB6629DF3A3F400F8 /* Tools */ = { + 26A545BB4521618A4411ADB819D81B97 /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - 6C1C57C3D02AFF465CD48B79CF588ECD /* BSG_KSArchSpecific.h */, - BB7AAA287C8C1049843DB512B80D2167 /* BSG_KSBacktrace.c */, - C338D468CB64823785703C6D39FEEC8E /* BSG_KSBacktrace.h */, - 1A3EE3C4B7F736898B30124303E381C3 /* BSG_KSBacktrace_Private.h */, - 9D3E26DB46227C02DBE7BCA3D0F2E47A /* BSG_KSCrashCallCompletion.h */, - 0EBC30E0C0D2525DA018E015BBC326C7 /* BSG_KSCrashCallCompletion.m */, - F6AA080FBF22251EA7A8B7B8C1025703 /* BSG_KSDynamicLinker.c */, - 8885E57EE811F401B1A6A5B25CF3D0E4 /* BSG_KSDynamicLinker.h */, - A3CFE45A4F15CB1D24932C11C9292E85 /* BSG_KSFileUtils.c */, - EDFEA0D285067264649D15E258E113A5 /* BSG_KSFileUtils.h */, - 2EE0B0BD1FEF20B614A4E2359C91BC25 /* BSG_KSJSONCodec.c */, - 2B9982B1352F7029AEFB90F1362E6736 /* BSG_KSJSONCodec.h */, - 656DFD80961E896C650124823645B1F3 /* BSG_KSJSONCodecObjC.h */, - EECE3236E8E0609B21A685D39122F2B0 /* BSG_KSJSONCodecObjC.m */, - 492F319E5A29E41357C7871ABD3F7AC8 /* BSG_KSLogger.h */, - 02D9EE2128D61E1A9365547872513A7B /* BSG_KSLogger.m */, - 61FB853950F213BE1994835AC2526789 /* BSG_KSMach.c */, - B16DEDB2E78FCF1F8F83AB4CB88BDAB0 /* BSG_KSMach.h */, - 901CD2B51324A018CFDE677E9D2BB213 /* BSG_KSMach_Arm.c */, - BDDFF8C7AB7374915FD6519BA7F8DD5C /* BSG_KSMach_Arm64.c */, - 5D1026A08112DAC42F5B576E16FCA06D /* BSG_KSMach_x86_32.c */, - 8BA44650E4DA05BF923D8D0C78170676 /* BSG_KSMach_x86_64.c */, - F13BA8BC96C4C7A8CC99EEADACE66CB1 /* BSG_KSMachApple.h */, - FF6940223D4FD5D810BCA608690CBBCC /* BSG_KSMachHeaders.h */, - A1E5E43D11B548EF0407DEE70F8A3ECC /* BSG_KSMachHeaders.m */, - 62660F1DD07C198ED0D6E7A6C45D57C2 /* BSG_KSObjC.c */, - C5B98CBE90DD9C76C2BD86B8882A6AC3 /* BSG_KSObjC.h */, - BB513BD6FC9DE1B2B44C852F1D4D160E /* BSG_KSObjCApple.h */, - 071B0B80450DA6871DD27CB84E0EB47F /* BSG_KSSignalInfo.c */, - A0E40C90009EAFB8D0C7E7BB34EA6EA3 /* BSG_KSSignalInfo.h */, - 8ADBAD79833820B8603392B72F74CE1C /* BSG_KSSingleton.h */, - 59A33289C1C941EA60F877180CCF636B /* BSG_KSString.c */, - 9AACC56222D3F5D2DF4F8E5B065E15BC /* BSG_KSString.h */, - DE6CAF0B0C4BF8CB185E39E16DB20A6B /* BSG_KSSysCtl.c */, - D7B80BF2776B8E8A0AD3B67EB2C12515 /* BSG_KSSysCtl.h */, - 92E5CE0D154F389D0A9006DCFE8D2C54 /* BSG_RFC3339DateTool.h */, - BAF3B2AD497316A495A9B1133DF766F4 /* BSG_RFC3339DateTool.m */, - 976DB772344133D19FDC9F43AEDC2612 /* NSError+BSG_SimpleConstructor.h */, - F86165F4074B5E924032053BB3A28990 /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - 25449DD121CF2138CA560F04419056E7 /* CxxUtils */ = { - isa = PBXGroup; - children = ( - 6231FD550B250E6CE2EB0C7B3ECDA2AC /* RCTFollyConvert.h */, - 606F1F8206FA2631EC8472ECA0D452D9 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - 25F3DF312DB18176FDF8043B84AF7B9F /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 9FFC3C5337925929AA6B9B0077D6FFD3 /* CoreModulesPlugins.h */, - AE4A8E7D4B9681AD961295AC7A482D0A /* RCTAccessibilityManager.h */, - 64BFF90718D392E1110A4D7D3C7C95DF /* RCTActionSheetManager.h */, - D8986BA5F6CEB3EB40192A7F5F2A1F78 /* RCTAlertManager.h */, - 685324F0C256DDFA8F8CD68DA624F92D /* RCTAppearance.h */, - 9B3D89E7E25E2144F84984ACA68EA4F3 /* RCTAppState.h */, - 1125E2A761EF99F749483B70DD73E5F4 /* RCTAsyncLocalStorage.h */, - 5170F815269BA25F87E628B2FA0C6F18 /* RCTClipboard.h */, - F34DF078CAFD193CA54119295D58BBB4 /* RCTDeviceInfo.h */, - 657B612EFA1F6B2A39F2EB10C3373613 /* RCTDevLoadingView.h */, - C83461DFECA1D27977DCD8CCE55C0B1B /* RCTDevMenu.h */, - 661028630A68D382124ABDF8AF9A8FD6 /* RCTDevSettings.h */, - C1F8E33AEEE10D8446F04814C26CA980 /* RCTExceptionsManager.h */, - CBA02A081BD0C848918E3A81E4AEE47F /* RCTFPSGraph.h */, - 1E667FE7FC5366831C1CD603043BA041 /* RCTI18nManager.h */, - 3D1D567D854AE7C6FBEE7784FC2FA2F2 /* RCTKeyboardObserver.h */, - 3B0DDA544AAC9FB433F9AAA0BCE5D9A6 /* RCTLogBox.h */, - 34EB70F95E2C1B99316B59AF30AA8B23 /* RCTPlatform.h */, - 1009EDEF9F071FEB6C7E8A0A44B0FA0E /* RCTRedBox.h */, - 8DB3C04487A2C776E7B4FE3FB30FEE6E /* RCTSourceCode.h */, - 23C1DD9CD7BCDED2E5CEAD484F539E30 /* RCTStatusBarManager.h */, - 3768CFE13C9C3B148082565467DE292C /* RCTTiming.h */, - 1DF343CFBE54C353EF53E3173400F592 /* RCTTVNavigationEventEmitter.h */, - EA08EB1D41E1E1AF13AA83B3ACCE6CF7 /* RCTWebSocketExecutor.h */, - E4825A9FF053375A1A1311B9F07F11B2 /* RCTWebSocketModule.h */, + A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */, + F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */, + 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */, + BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */, + B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */, + FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */, + 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */, + E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */, + 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */, + 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */, + FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */, + 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */, + 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */, + 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */, + 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */, + 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */, + B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */, + 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */, + B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */, + 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */, + D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */, + 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */, + F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */, + E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */, + 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */, ); name = CoreModulesHeaders; sourceTree = ""; }; - 2685E75ADEFA0ED5B03535594B7D9585 /* Support Files */ = { + 26EBD521B1AD91BCD418A4E78F8D8CE0 /* Pod */ = { isa = PBXGroup; children = ( - F4396D8FE810C80A480BB51488E2C274 /* React-RCTAnimation-dummy.m */, - 87119BEC3777AF6B114BD339692E9A0A /* React-RCTAnimation-prefix.pch */, - E319BC17A70908ADE2ACE4957D200624 /* React-RCTAnimation.debug.xcconfig */, - 17D5BA023689C76AC2B701F436D6CD2F /* React-RCTAnimation.release.xcconfig */, + DC098C980C2993D32FC9AFD5D35050A2 /* LICENSE */, + 4E539C386CF7E1BFC17E306D127E55E8 /* README.md */, + C348CF2FAF6BDF7E1B9C0E3F1B4F473A /* rn-extensions-share.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = Pod; + sourceTree = ""; + }; + 27FC7A34E49ECFA0920CD4456EB770A5 /* Pod */ = { + isa = PBXGroup; + children = ( + B16412C2E33D7A2B1376C36CE5CDDB24 /* UMFileSystemInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 2812FAB290DE50D0B2F92E3685847384 /* Resources */ = { @@ -12567,32 +12624,36 @@ name = Resources; sourceTree = ""; }; - 29172733AD39D8766D43156DA0EA8DA7 /* EXWebBrowser */ = { + 287C79185501C07AAC29D07AC2CBD590 /* Pod */ = { isa = PBXGroup; children = ( - 4E4123590FC530BF1BD285D9CC3CE36F /* EXWebBrowser.h */, - AFD41F4608390751ACB6E396AFFA0C5E /* EXWebBrowser.m */, - E77952EC03091425B87DF149B3929486 /* Pod */, - 1CA59BC77C1CB9DB4E5B23C76601746B /* Support Files */, + 41DF63D0BEE787859D69E4C80B1A8C0C /* RCTRequired.podspec */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = Pod; sourceTree = ""; }; - 29DC1DC0CDC2CAFB8F9D5254BB4705DF /* Services */ = { + 29B3BBC50E3B09CB178B41FC558C7014 /* RNRootView */ = { isa = PBXGroup; children = ( - 1968C29289D13793139555311BE0F758 /* UMReactFontManager.h */, - 3F89A3999443465AEE687F68B81AE431 /* UMReactFontManager.m */, - 5BD7A2BB0C37D8E61CA16850DBDED244 /* UMReactLogHandler.h */, - 3FEC4902BF0A2704D790A3260B7E3C2F /* UMReactLogHandler.m */, - 9ECAC559F363AECB0176E62D356832C1 /* UMReactNativeAdapter.h */, - 8246DE92DD7559379E867D53F8FF0BEE /* UMReactNativeAdapter.m */, - CF457D4B63350C2FE526C792412866A5 /* UMReactNativeEventEmitter.h */, - 07036B099634A61F7A486FD6AB6D9299 /* UMReactNativeEventEmitter.m */, + 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */, + B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */, + 3B995AD4D541F49350FB326B50C92493 /* Pod */, + D8273CA949665AC698D1E87616D7FCB1 /* Support Files */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + 2A6CEFA85F23070CA70B9809FCAB1A4C /* Support Files */ = { + isa = PBXGroup; + children = ( + 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */, + 78BBAF7CBE7A037C966EBD2DAF28E9D4 /* React-CoreModules-prefix.pch */, + F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */, + AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; 2B45E1347166FAE6749801F0E813E85E /* FlipperKitLayoutTextSearchable */ = { @@ -12603,36 +12664,26 @@ name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 2B4D84FC44F6B4E751A1567926D8A40B /* Support Files */ = { + 2C0E986FD88567D520BD169C326DCAE4 /* RNBootSplash */ = { isa = PBXGroup; children = ( - B069438A3A5983AE69EE34D182D84A42 /* RNDateTimePicker-dummy.m */, - CC74B190B4465DE9B85E23C0475963DD /* RNDateTimePicker-prefix.pch */, - C7F9C4EEBFD2427463202B82408529D5 /* RNDateTimePicker.debug.xcconfig */, - D522027EEE96D9475D2CCC2688716D55 /* RNDateTimePicker.release.xcconfig */, + A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */, + C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */, + 9C600B3CF720D09E7726049BA09B2063 /* Pod */, + 553C4B3F728EA2D2B4FD1C151D55FE0E /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + 2C541E9B9656B60529E2822BEC8F1AD4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */, + 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; - sourceTree = ""; - }; - 2C4D91B97016CF93630D64A61F46A437 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 87ACC83C68C147641F3FE7984C2D84D6 /* RCTVirtualTextShadowView.h */, - 7953D21C3398F60EBD4FC532EB9E253D /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - 2C8336EA4FA36E016E572210C3F8BAA3 /* RawText */ = { - isa = PBXGroup; - children = ( - 9FFB40693130816D3663EF2FD82D6B22 /* RCTRawTextShadowView.h */, - FB03B26D845EF62566ADDCFA7176A9B7 /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; 2C8F886FFB08EE6EB8E83633D398BE11 /* decode */ = { @@ -12642,20 +12693,6 @@ name = decode; sourceTree = ""; }; - 2CC8FB36CCAB5AC9166635EA8BF35EC8 /* EXConstants */ = { - isa = PBXGroup; - children = ( - AED1EB8FC2E5CEE44B89AF8A87C1E780 /* EXConstants.h */, - 2A03B1EBFD1362DD6B2E2D10AD1DA412 /* EXConstants.m */, - 4DD31703AF83035CD66F6AAABB86F823 /* EXConstantsService.h */, - E2911364068B54AA61531F5F3B39EB58 /* EXConstantsService.m */, - 7CF32F652C3F0FADAF549199C24950B5 /* Pod */, - 388679BB85F2FC6288D8594B87715B3A /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; - sourceTree = ""; - }; 2DE58ADF19843562F9835F95B52F81AD /* Support Files */ = { isa = PBXGroup; children = ( @@ -12668,32 +12705,128 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2E1F80842684ACE9FED81D9272AB55FF /* Pod */ = { + 2E3A1DF2DA14FB3666776C4CB4B08633 /* Support Files */ = { isa = PBXGroup; children = ( - FC995B5DFF92F9C1828A6177D5674222 /* React-CoreModules.podspec */, + 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */, + 5824C874CD967A5B1C78DA4C750E2D41 /* RNCAsyncStorage-prefix.pch */, + A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */, + E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + sourceTree = ""; + }; + 2E5525E616D2F8D1B0EC85FFC0F951BB /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */, + 83BB5276CCBAD0A5948874E042BED951 /* FBReactNativeSpec-generated.mm */, + C5DCC868292DFFD07E37144C65ECAFF9 /* Pod */, + E78C758DA71A1C01082204E4DD379D47 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + 2E8DACBE318224DEE977731F4A6AFA15 /* Pod */ = { + isa = PBXGroup; + children = ( + 5D7E1A1A103C6C31878F10EE018CA0C5 /* LICENSE */, + 44539B969639A3408C91032DED89095C /* README.md */, + 6776B518AE3CBCB9932E94BB1A5F1DAB /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - 2F89575E04BCD44096E299CF7D230854 /* Pod */ = { + 2F25A4A6B7D83C7454DBFD76BE418B8E /* Support Files */ = { isa = PBXGroup; children = ( - 32BCBF6498D7E16EDB812799F055648B /* LICENSE */, - FF6E263850D122131FDF4A4AA8B0D79F /* README.md */, - 55604CDE98DBB0C6FE8F4E5AD7A94E98 /* RNDeviceInfo.podspec */, + 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */, + 1555F15820E29E453831005769838B1B /* ReactCommon-prefix.pch */, + 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */, + 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; + 2F642E6BAC91026C37482E77E9E3DADF /* Support Files */ = { + isa = PBXGroup; + children = ( + 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */, + 09DB0608DD97244012DFDB6A79C8085F /* React-jsi-prefix.pch */, + 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */, + C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + 3022F38DDE88CB00FB5F15B26BF244DE /* Pod */ = { + isa = PBXGroup; + children = ( + 6D84F38E5C54AFE11D41E2D745A1B65B /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - 3012CDE45E83C2A26A50C46F70180BFC /* Pod */ = { + 30AE52FA523D8D6A827FFD5FB52BFA40 /* EXVideoThumbnails */ = { isa = PBXGroup; children = ( - 272CAD82F92A5067AED0D916CF87456C /* RCTRequired.podspec */, + 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */, + E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */, + BFFE3E0EB1BCC4189411C0EF8C2B1824 /* Pod */, + 82F805433D39072A7F43BACF9CB9AADA /* Support Files */, + ); + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; + sourceTree = ""; + }; + 30C150141518662107F5E0903C031AC8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */, + 6DA747F672C6DA97EE0D9CDDE2852993 /* EXAppleAuthentication-prefix.pch */, + 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */, + 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + sourceTree = ""; + }; + 31153F5D3052F8E16D923A2AE07F6CBB /* Pod */ = { + isa = PBXGroup; + children = ( + FF7ADB045F5E675A0C0EF9907423DBB4 /* EXKeepAwake.podspec */, ); name = Pod; sourceTree = ""; }; + 312FF6791778C2FF701DDEA133BAD15C /* Handlers */ = { + isa = PBXGroup; + children = ( + F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */, + B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */, + 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */, + AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */, + 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */, + C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */, + 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */, + 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */, + 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */, + D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */, + 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */, + B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */, + 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */, + A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */, + 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */, + 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; 3134ECC6B34121BE9E6E569D5369366B /* FlipperKitNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -12713,6 +12846,30 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; + 32A25F038C980CCC9DADC13D3901D76D /* Support Files */ = { + isa = PBXGroup; + children = ( + C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */, + 4AB53F9C77EF8C2263666249468A480A /* RNVectorIcons-prefix.pch */, + B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */, + C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = ""; + }; + 33B961758CD47BB742283486F0EE94DF /* Support Files */ = { + isa = PBXGroup; + children = ( + EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */, + AAB3E5DC0F0C5F5097B3F081E87DD052 /* react-native-mmkv-storage-prefix.pch */, + 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */, + 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; + sourceTree = ""; + }; 3400068431D3CEA258078DCD8DA8C835 /* Pods */ = { isa = PBXGroup; children = ( @@ -12755,96 +12912,158 @@ name = Pods; sourceTree = ""; }; - 350341D95CC7AF1BB9704BD9C5FF1B9C /* Support Files */ = { + 34661FEB231B676E2B25FB10CBD4D832 /* Support Files */ = { isa = PBXGroup; children = ( - 59B3B1EC90186B5AC5358F582FB40FDB /* react-native-notifications-dummy.m */, - C18B41568582F034EBDF8E43E299BD5A /* react-native-notifications-prefix.pch */, - E774F6D5DAABF201ADB039A38F88A174 /* react-native-notifications.debug.xcconfig */, - 55BF2C412969FA684CFFF0C788DBF0FE /* react-native-notifications.release.xcconfig */, + BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */, + 636D45E785CA25BC4B4D6972DA3F1758 /* EXHaptics-prefix.pch */, + 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */, + E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 3528C79B8C5D9EE26F74CFBC1EDCB463 /* TextInput */ = { + 359DC2B57FFF4A2F4C8CAD4E5503C7D8 /* turbomodule */ = { isa = PBXGroup; children = ( - 7A9F6A0C599D88CCE1E7E2D2C89F9104 /* RCTBackedTextInputDelegate.h */, - 5A15611B72EDCF7261B4DD9701CCA4C0 /* RCTBackedTextInputDelegateAdapter.h */, - 5D80AE373FC2798EA3AE13E79AEDFCDB /* RCTBackedTextInputViewProtocol.h */, - E6BEBEC84E17380EB751F726BAC379C0 /* RCTBaseTextInputShadowView.h */, - 24B6223F41B3CDC9E617CB1AF51B90A9 /* RCTBaseTextInputView.h */, - C7C501D98FEA1521D7804073FD570645 /* RCTBaseTextInputViewManager.h */, - 4A6A190183BEE368A85FB4BFAEF80435 /* RCTInputAccessoryShadowView.h */, - FF25F6F7520013B1BC788524EB63C196 /* RCTInputAccessoryView.h */, - 86AACD3FBB555A4A9D3B69E444327A4B /* RCTInputAccessoryViewContent.h */, - F4F7F52179F9BCD935CAE0CB408752F6 /* RCTInputAccessoryViewManager.h */, - D66BF8DF3175F73B21D8043E870604B5 /* RCTTextSelection.h */, - E62BCC32300E2937C8533C8E30631E7C /* Multiline */, - 066140935CBAC2B8F8E402FBEF52118D /* Singleline */, + 26674FD7DE156CDF72F26D1E1A451162 /* core */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = turbomodule; sourceTree = ""; }; - 358A6F75F78E0CC48E52FCC59A197586 /* LNInterpolation */ = { + 3681B8E9250B0176070C8FA7BD0A82AB /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 10B2DD27811F19B615CB8438E0A9FEB4 /* Color+Interpolation.h */, - 3048556EF9ADE6F8F8F1A29C19EDDA59 /* Color+Interpolation.m */, - 93E76055CC941B5961D1066A9B83B898 /* LNAnimator.h */, - 24DEC0F0DEE8E7A7CAF1A7FCFF5EAD26 /* LNAnimator.m */, - C34FEF489AFE9DDA6564C61B1D9588A7 /* LNInterpolable.h */, - 77F173777922F782D1B13A4560470586 /* LNInterpolable.m */, - 9BC053C25CB8BC3DF533B1927CF9A6F9 /* LNInterpolation.h */, - 8F652EACDBA01D6B41B81FCD70EE4755 /* NSValue+Interpolation.h */, + EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */, + 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */, + 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */, + 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */, + F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */, + 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */, + 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */, + AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */, + B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */, + 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */, + 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */, + B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */, + F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */, + D0BD31B68E3F35B436BCABC0638963C7 /* Pod */, + FFD3C4E2D0044DBF128B493778671BA9 /* RNFetchBlob */, + 9F08E35505D2EEE7576E2B296CF9CF75 /* Support Files */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 363C66D050C87F90504804E16F9C333A /* UMImageLoaderInterface */ = { + 36911DBC4F6A0B332EFB60CF7FE86352 /* Sentry */ = { isa = PBXGroup; children = ( - 35F42453568C7D35EA99333B28CAB9E1 /* UMImageLoaderInterface.h */, - 52C223C4A923CF0DE72F81D045B1F720 /* Pod */, - C0BDCF8411D9E879071EF847B0438DCE /* Support Files */, + 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */, + 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */, + A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */, + 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */, + 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */, + 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */, + E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */, + A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */, + C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */, + CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */, + 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */, + 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */, + BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 36900C7BA8B9064B116FD8C3EBD0FAD7 /* RCTAnimationHeaders */ = { + 36A706185249AAC0847D568C5A99C9F6 /* Base */ = { isa = PBXGroup; children = ( - 481CDD302EC82AD0628B97F4D1EDF6B1 /* RCTAnimationPlugins.h */, - 766144D14F2C16186FD40B07A9EC70F4 /* RCTAnimationUtils.h */, - B088A3AC137B7AD179649962D808EBD6 /* RCTNativeAnimatedModule.h */, - 026BFA0E4AF05C22DFD523B07111618B /* RCTNativeAnimatedNodesManager.h */, - B0EB9FF6421336EFD32E02ACBF3FB720 /* Drivers */, - 3AB66C5EEDE1B315E2E9775E4D7A4F9E /* Nodes */, + 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */, + EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */, + D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */, + 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */, + EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */, + 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */, + E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */, + 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */, + 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */, + BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */, + 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */, + 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */, + E752934C099608793BB304F3E8C6889D /* RCTConstants.h */, + 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */, + 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */, + 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */, + 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */, + 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */, + DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */, + 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */, + F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */, + B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */, + BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */, + 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */, + ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */, + 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */, + C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */, + A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */, + 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */, + F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */, + 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */, + 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */, + 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */, + 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */, + 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */, + 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */, + 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */, + 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */, + 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */, + EFECB04B4961098514237FFDCF858366 /* RCTLog.h */, + 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */, + 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */, + 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */, + EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */, + A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */, + 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */, + C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */, + 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */, + 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */, + 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */, + 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */, + E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */, + 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */, + DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */, + 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */, + 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */, + 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */, + 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */, + 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */, + 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */, + 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */, + 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */, + BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */, + 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */, + 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */, + 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */, + CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */, + DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */, + 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */, + 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */, + FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */, + 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */, + CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */, + 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */, + 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */, + 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */, + 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */, + FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */, + C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */, + 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */, + C179B71EE2013EC55CA01132CA04DDE2 /* Surface */, ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - 376D7A011BAD27BC82F20E182757CCE0 /* platform */ = { - isa = PBXGroup; - children = ( - E7E6B472F7C226716CC8BDE2A3219EE2 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 37CBDA91E67FE8AEE5C54F0866BE7A55 /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 255917C889220A40D1C74A8CE6D91F63 /* UMViewManagerAdapter.h */, - E1FEC1C26450454F522DA2DE070A3077 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = Base; + path = React/Base; sourceTree = ""; }; 383A495441D156DF2998066C5E194D51 /* Flipper-RSocket */ = { @@ -13016,91 +13235,6 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - 388679BB85F2FC6288D8594B87715B3A /* Support Files */ = { - isa = PBXGroup; - children = ( - 5A2D9D96E2554D5E6D72A75D0E694419 /* EXConstants-dummy.m */, - D58FAD54994A5A52588982261EC14A50 /* EXConstants-prefix.pch */, - E5081A7221932C471A01B77F6C57B874 /* EXConstants.debug.xcconfig */, - 5748AC6F062D48CD3496F6655A162ABE /* EXConstants.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 391F22CFFC5F12C08770D0B68EF2315D /* Source */ = { - isa = PBXGroup; - children = ( - 90FEC82AFA52FE21CBF13AABE226D9F9 /* BSG_KSCrashReportWriter.h */, - 4C5708E49749212F8563EF422B97DA0E /* BSGConnectivity.h */, - 75D76880A73AB23E0BE5F072C04A8479 /* BSGConnectivity.m */, - A84A35AE99917BE042B79F922069D257 /* BSGOutOfMemoryWatchdog.h */, - D08ABD5531FAD0FD9ED791A8CD0592C7 /* BSGOutOfMemoryWatchdog.m */, - B6E080DCF6D040B38C1CD1DF2EFF52F6 /* BSGSerialization.h */, - E05BA9BCAC133670C3846F676BB9C2DD /* BSGSerialization.m */, - 25033FDAD85C7AD9C0FB4D9CE82F9824 /* Bugsnag.h */, - EFAF9EA035BC8B473F89B78BCFF3C4AB /* Bugsnag.m */, - FFFA04668787D4EC7BD181DEAF5872A0 /* BugsnagApiClient.h */, - 890A15DFAA3269F1E6B3068E7BD95D69 /* BugsnagApiClient.m */, - 4E8ACADC22ADA1A0B588A0E77C0F87D7 /* BugsnagBreadcrumb.h */, - 8C7E9381645AD62ED99B805756965501 /* BugsnagBreadcrumb.m */, - 2D8660B900062D96AEB1FEACE642F61C /* BugsnagCollections.h */, - 0DF71B9C09ABC64B0D9A46BCE4FA0278 /* BugsnagCollections.m */, - 74DFA438BDC14E0082C3D61B882B7B23 /* BugsnagConfiguration.h */, - A74AED9AE7F475C24DADC738398585D3 /* BugsnagConfiguration.m */, - EEFCDB3F0AEA005DCD880785E4555DDF /* BugsnagCrashReport.h */, - E0EA818B7CF9967D76BDBDD74940564E /* BugsnagCrashReport.m */, - 33912B7BEFC9913C52ED717340764985 /* BugsnagCrashSentry.h */, - C35884CADADB62F9A4C5720A029F40C6 /* BugsnagCrashSentry.m */, - 07F1A4C88CAF0692C27FC25A8AC02F68 /* BugsnagErrorReportApiClient.h */, - 1C94DF7CB373383744FAD589DA104F44 /* BugsnagErrorReportApiClient.m */, - 023D12941892B8EB8BE0479C0F7BD3F7 /* BugsnagFileStore.h */, - 3BC2C1FEB288C0EBD311C9072DE6C912 /* BugsnagFileStore.m */, - 88DF92488961630D3C3E6F342E5EDD6F /* BugsnagHandledState.h */, - 71470F0BAA472F5B0C82152E311DD6A1 /* BugsnagHandledState.m */, - BE942768A1282F53A50189E60B7808A0 /* BugsnagKeys.h */, - 0403F0D39E04408F7284B2BC5D12BE2C /* BugsnagKSCrashSysInfoParser.h */, - 4C1610C23AAD55677A6E6C77D91EECF8 /* BugsnagKSCrashSysInfoParser.m */, - 6F611A459B23C2FBCA166A2F8DEB34A5 /* BugsnagLogger.h */, - 70DD0ED2791FDDA1EA8F2C0553EE951B /* BugsnagMetaData.h */, - 91A57ED6E8D884ADC9A6BF08290E518C /* BugsnagMetaData.m */, - 0D65AB64933E50ACA96FF591A0771394 /* BugsnagNotifier.h */, - 317A012E4BFFD64E97515D365236FDAD /* BugsnagNotifier.m */, - 94D31BF7F2BBFB5B35037EF7540173A5 /* BugsnagPlugin.h */, - 217E4D6BC77FD0A36C10CD85B47B4E28 /* BugsnagSession.h */, - 959BEC47F401BC75EE0CEB1CB434EAA4 /* BugsnagSession.m */, - 1B2660424907E7E1DDC75B058FFA3F8E /* BugsnagSessionFileStore.h */, - 511E466B8255B2411184CCE113C7F953 /* BugsnagSessionFileStore.m */, - 75C37B64557C975C219559D6C08ECCD0 /* BugsnagSessionTracker.h */, - 0B5750F33BD3DC48F03079BF1526E8B6 /* BugsnagSessionTracker.m */, - 7E62E919A84C7AF61D51E519E1DB1978 /* BugsnagSessionTrackingApiClient.h */, - 08A2FE114E342FAC441F7A70E976DB1B /* BugsnagSessionTrackingApiClient.m */, - 67F9576D5F082D40B434E83008BF800F /* BugsnagSessionTrackingPayload.h */, - 9137DE80A4B6278CE8314E0665C508FC /* BugsnagSessionTrackingPayload.m */, - 5136063FC836B31BA8064BD8AEC7C845 /* BugsnagSink.h */, - C0BDE0A216967B3C59EFF86E90E23EF2 /* BugsnagSink.m */, - 261D8EABC1B5ACF4822AA0EBCA0ABE19 /* BugsnagUser.h */, - 19049960F0F903D5C838A3F765A9F404 /* BugsnagUser.m */, - 455FE0721A514775C6E681F0649586CA /* Private.h */, - B1B88D07808179034712D098B498E6BF /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - 3A01D3E8C2CC9AB0516C26F7EEEB48B8 /* UMAppLoader */ = { - isa = PBXGroup; - children = ( - 49795A659C3D3330075CBDFE211348CD /* UMAppLoaderProvider.h */, - E6D5B0210CFEE2D2CC7A44147D506746 /* UMAppLoaderProvider.m */, - 563C82A4F2B81BCD61B9765F05853604 /* Interfaces */, - 46DB9585C78FF02F20DAAF89EC378F1F /* Pod */, - 522AEC66C0880A70453E111C8A944060 /* Support Files */, - ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; - sourceTree = ""; - }; 3A01F6917BC83AD97A6EFF8B241F0012 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13113,37 +13247,67 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 3AB66C5EEDE1B315E2E9775E4D7A4F9E /* Nodes */ = { + 3A0C474F99BC6200ADC8D79AC5758228 /* FBLazyVector */ = { isa = PBXGroup; children = ( - EC476F3227565D75C9826AF7C8D44A58 /* RCTAdditionAnimatedNode.h */, - 9693507BA669B54D34BE095FE22B459C /* RCTAnimatedNode.h */, - 18DBE035560D7576C7D2B33D8B7BE372 /* RCTDiffClampAnimatedNode.h */, - 130BCA25EE4483EFD663D9B2D1C559E3 /* RCTDivisionAnimatedNode.h */, - 3839929F403C2B97F7183148382BF0B2 /* RCTInterpolationAnimatedNode.h */, - 959B66E0A5FD36C3AB97C95FC9071C65 /* RCTModuloAnimatedNode.h */, - 13725C86D54BD76DD9A314DC2FBD6880 /* RCTMultiplicationAnimatedNode.h */, - A35ACF61E819D51DAC49E3686FB6D2B8 /* RCTPropsAnimatedNode.h */, - 6A7F9D1A896005B07AE306D1E3B8FE24 /* RCTStyleAnimatedNode.h */, - 2BEBD02B3C49A8B904680723361E29CF /* RCTSubtractionAnimatedNode.h */, - 03B447D3BD54E8181F21506C099D8894 /* RCTTrackingAnimatedNode.h */, - 695B288BD0BEA5E6B089640AB5DB98C2 /* RCTTransformAnimatedNode.h */, - C8A3D2C892DF04B8C6ED281F772A336D /* RCTValueAnimatedNode.h */, + A00B982F3152D612DA89C42AA3D557D3 /* FBLazyIterator.h */, + 1BC9CB7B045CE844691F03CAE351A04D /* FBLazyVector.h */, + 531F07A0294DB23C7C27B2B47F74675E /* Pod */, + 5BB7D530C9074BE1E0E12C148FB0DD4A /* Support Files */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - 3C18ABB90D20F429A2A40B6302C36CD4 /* Pod */ = { + 3AA563231A0D24C0C9B5353FB4D8E514 /* react-native-safe-area-context */ = { isa = PBXGroup; children = ( - 8FCBD30184D082DB092DF89642B81A4D /* LICENSE */, - DD470A2B7DC98CAE6EA04D69B8D3861F /* README.md */, - FFEA9D877AC8518974C490BF8C9CF9A9 /* RNFBAnalytics.podspec */, + AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */, + 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */, + DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */, + 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */, + F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */, + A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */, + 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */, + CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */, + 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */, + 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */, + 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */, + 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */, + AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */, + 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */, + E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */, + 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */, + 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */, + DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */, + FD606C22EB1D129E9D6962DD94E75B86 /* Pod */, + 44F87A35EDDC44C29CCBB02D620D0386 /* Support Files */, + ); + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; + sourceTree = ""; + }; + 3B995AD4D541F49350FB326B50C92493 /* Pod */ = { + isa = PBXGroup; + children = ( + 3C1A76D1F95A16DDFD31E78CDE0813A7 /* README.md */, + 03EC0553FD9D0ADAA93CA2C561E2762A /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; + 3BE342E0A8021B43EEFC27AD20514A9D /* EXKeepAwake */ = { + isa = PBXGroup; + children = ( + 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */, + 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */, + 31153F5D3052F8E16D923A2AE07F6CBB /* Pod */, + 9CF207A6C9D805FD54018B5CADB2DB4E /* Support Files */, + ); + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; + sourceTree = ""; + }; 3C8351982DFBF8313FF9028D61F422D4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13156,42 +13320,14 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 3CFE77CC9FFDF0011995EDF2D14223BE /* Pod */ = { + 3DF0792DBFDA3DE264CAB836696B5E3C /* Filters */ = { isa = PBXGroup; children = ( - 8E60386A9340B7A605CE77694CEF68F4 /* React-RCTSettings.podspec */, + CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */, + 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = Pod; - sourceTree = ""; - }; - 3E21331B4FF893E20AB4360489CFE841 /* Pod */ = { - isa = PBXGroup; - children = ( - A2F13E60E0476038E4598E5DC9C1AAFE /* LICENSE.md */, - F1412FC21E48A3A5BCE469E88CAE2B56 /* react-native-document-picker.podspec */, - 705061F251640523DFDF6B7F22ABE98A /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 3E92FEC63507321C98A4EBEE3CF1F106 /* Pod */ = { - isa = PBXGroup; - children = ( - 303760AFF2199F0D4A16F1EE5EAEEC6F /* EXPermissions.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 3EEF37834A88501F414FE5F7B044258B /* Support Files */ = { - isa = PBXGroup; - children = ( - E2B15DCA37B24A9EACE06E1CC495BFAA /* react-native-slider-dummy.m */, - 863EE9EF885CB6777021B32252D7B2C2 /* react-native-slider-prefix.pch */, - 2A1631C0D42B20565DB4387199E33CC8 /* react-native-slider.debug.xcconfig */, - 0053B9DA4293895CFC35FD4CF93FB1C8 /* react-native-slider.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + name = Filters; + path = Filters; sourceTree = ""; }; 3F95AF94DF45EA7203D71FB37C810F5C /* mux */ = { @@ -13208,136 +13344,90 @@ name = mux; sourceTree = ""; }; - 4087B4EAA17111393746E48F11645A3A /* rn-extensions-share */ = { + 4020C893A0865139AC37E5F849E2B109 /* Support Files */ = { isa = PBXGroup; children = ( - 99559E25E4457091FD3799EA6F591DC9 /* ReactNativeShareExtension.h */, - 4481E2199E9285DE68947C78FB832DEF /* ReactNativeShareExtension.m */, - 179076DCCB0DA625851C4416532AEBE2 /* Pod */, - F23E0F8D206AF8BFEF1A15D79C55BBB1 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - 40F28D9D57354046CDD810F803D2E321 /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 53AEED9E88B798B448A12CE9F987C568 /* UMModuleRegistry.h */, - 424F70302F9F47C0194BBB2D77EBF863 /* UMModuleRegistry.m */, - 567EB2683F79F5C1754B22B0EA5101DC /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - 4115C5C5DA10BDE87FEBEAB6C5DB1F61 /* Support Files */ = { - isa = PBXGroup; - children = ( - 17E9E0B6C3740B4B51812D7D83B84C50 /* React-RCTSettings-dummy.m */, - 2A8812607051B6F82B2D1BFACB4230D2 /* React-RCTSettings-prefix.pch */, - 27303A73F415EF82B6EF8B6E5C5B39DB /* React-RCTSettings.debug.xcconfig */, - 45721CC7B42E663FA87CF4AB23686C28 /* React-RCTSettings.release.xcconfig */, + DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */, + 5332510E48716BCC1053DA998FCBB751 /* RNConfigReader-prefix.pch */, + 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */, + CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + path = "../../ios/Pods/Target Support Files/RNConfigReader"; sourceTree = ""; }; - 4125440E6F07BB5CEBDE776D3985E1C6 /* Pod */ = { + 4079B81494299F2709088983860799A4 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 905730C8133332059FF44C6F8C55600C /* LICENSE */, - 491B7E66177CD34BC14F006304497FAD /* README.md */, - 8B4A12EF2BD6266DA9BFB33CC8DB6AFA /* RNCAsyncStorage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 41754E23F991D970552858F22A25A201 /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - 680D00642C08BAD957E2B21EC098FBDF /* Compression.h */, - 45030FE275DEC96B6F65FCD234104CEE /* Compression.m */, - CB79E96BED7B8CA82FAF3F5D7ED4DB47 /* ImageCropPicker.h */, - B054CED19DEECEDFC631A81352C9E462 /* ImageCropPicker.m */, - 416C0614FA40A2E25E45DB6091546885 /* UIImage+Extension.h */, - C34647C34D21CF4B30AD7722FEEE08A4 /* UIImage+Extension.m */, - FD8A1A1EAF2C5CD9EF169BC80EB069B8 /* UIImage+Resize.h */, - 0489DC79CC733FABAC8371BD92144AEF /* UIImage+Resize.m */, - BDC0B0B8DA044C7444789AACED8B53AC /* Pod */, - B35E7CB873930114DF8AB65E563DD81D /* QBImagePickerController */, - 1E0CFF0CE5DBC91125D0B5AC7D5EE52C /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - 41E95317C8D0787DA59F44E17069C664 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 779868D8D76DB548B7BB99FEC32CB197 /* RCTBlobCollector.mm */, - 96B0DA33E801A10963A645AB01F62D93 /* RCTBlobManager.mm */, - DB8FA8D851654513510A4DDD8AAD29AF /* RCTBlobPlugins.mm */, - 01109537BB47B946A82DC3174B4ED636 /* RCTFileReaderModule.mm */, - A79AA62338B8DC0FBB9249AF03815A19 /* Pod */, - 46CD526FD450782F7CD8C06889667492 /* Support Files */, + 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */, + 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */, + 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */, + 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */, + A6F421855D6AB1D1DB8A3199655DE343 /* Pod */, + 0BD935D4A756F87412AABD0B1A09EA49 /* Support Files */, ); name = "React-RCTBlob"; path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 42769914BFC88624A0087B3C2C9991B6 /* react-native-appearance */ = { + 408FB929E0634581F9E6D0326B224995 /* VirtualText */ = { isa = PBXGroup; children = ( - 37788B2527D5751F03EA4192B6243CB8 /* RNCAppearance.h */, - BE1D5AE0CC546D796A6903C35F9EE15A /* RNCAppearance.m */, - 06D26C8EAE6D348021BA0B18A875B000 /* RNCAppearanceProvider.h */, - 97D8041A5C643181CE077EF91E535EB4 /* RNCAppearanceProvider.m */, - 9FCE69F564C5DF3C7A4951E49DA46CCD /* RNCAppearanceProviderManager.h */, - A4887DC06D6D5076CDC455CB5695F3FA /* RNCAppearanceProviderManager.m */, - 695D4C3775C1BC886794CD633972CB61 /* Pod */, - A45E4A45E0DDEEF19DAC8081A9AC64DA /* Support Files */, + A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */, + 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; - 43361FC9D168A123E5CC6FE49CC2961D /* Pod */ = { + 41E0BB1617922B137ACF7366BCD5A04B /* Support Files */ = { isa = PBXGroup; children = ( - 420C6C081DF814E29660B6850CE3E819 /* LICENSE */, - 91DC1E9B1D633A2E755F1FB2CFF6831D /* react-native-background-timer.podspec */, - C8687D817D378411756EC0F302634BC6 /* README.md */, + B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */, + 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + sourceTree = ""; + }; + 42453C13279AC297B17665AB79878FF7 /* Support Files */ = { + isa = PBXGroup; + children = ( + F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */, + 03B41CA63595A4D875D08B1223752E36 /* RNFBApp-prefix.pch */, + C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */, + 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBApp"; + sourceTree = ""; + }; + 43EE287EE35AB05B5D93E136E5EDA47F /* Pod */ = { + isa = PBXGroup; + children = ( + C2B4C94524CB64BFA50D0CCB148FFB77 /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 44B10E20EC424C02A43A97E82BC96E69 /* RCTCustomInputController */ = { + 4400143791212FCDBBDDFB2FF3B0D303 /* Pod */ = { isa = PBXGroup; children = ( - 45E3E3A4A0F6534DBF4CED91C0272662 /* RCTCustomInputController.h */, - DA1B28017C954B73BC9982A0D26FEEA2 /* RCTCustomInputController.m */, - AA2BA432F71A8DD91B5123E64DCAE060 /* RCTCustomKeyboardViewController.h */, - 8F16E6C6F82C2B8B2FFCED897BF2AA81 /* RCTCustomKeyboardViewController.m */, + 87C89C4D2728A4A4ACB92CD0EF9AE81B /* EXWebBrowser.podspec */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = Pod; sourceTree = ""; }; - 459F3989FCE5B9927E3992E5073296D3 /* ReactNativeKeyboardTrackingView */ = { + 44F87A35EDDC44C29CCBB02D620D0386 /* Support Files */ = { isa = PBXGroup; children = ( - 56F1392380780E408157162DF512F677 /* KeyboardTrackingViewManager.h */, - 5E115E2FCA663E2E4FF3E0D84490191E /* KeyboardTrackingViewManager.m */, - 13D58D3FD3D1F8C6C5B6AEC5FB644233 /* ObservingInputAccessoryView.h */, - 2403D6BE02B9DC894FACA669D4E2B68D /* ObservingInputAccessoryView.m */, - 78198D667724C3045EC32B0E335E928F /* UIResponder+FirstResponder.h */, - 9D0730330E697589D830A36B2AFDFD49 /* UIResponder+FirstResponder.m */, - 83FB1526C88164D95DC8CA573B2D102C /* Pod */, - C91D676B532C074077A291D6A062E142 /* Support Files */, + CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */, + 1FF42A80F80327EFF19C442895701E4F /* react-native-safe-area-context-prefix.pch */, + 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */, + E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; 45B95D251665611D0C77BFB3C92D80FD /* AppDelegateSwizzler */ = { @@ -13355,78 +13445,72 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 46CD526FD450782F7CD8C06889667492 /* Support Files */ = { + 45F32644129876BA500890A88A22623E /* Pod */ = { isa = PBXGroup; children = ( - 0871E83AF52711F4AD1D7EC9A4AB3A4C /* React-RCTBlob-dummy.m */, - D397F10A82D01DDE50831EE875C51EEF /* React-RCTBlob-prefix.pch */, - 80869C8F5B2A254C1EAB92E57BE49922 /* React-RCTBlob.debug.xcconfig */, - C88E763911EDEADA68879E921944E448 /* React-RCTBlob.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - 46DB9585C78FF02F20DAAF89EC378F1F /* Pod */ = { - isa = PBXGroup; - children = ( - 41F116D846E7F12327A13775643D1337 /* UMAppLoader.podspec */, + 9756F390C20B248FE2AED8586A06FDC1 /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - 48170AC7D3A85405AFA338D85FB42E5E /* ReactCommon */ = { + 46ACE5E8EB6099F31B26E6B855EBEB7C /* Support Files */ = { isa = PBXGroup; children = ( - 6B1A84AE97C8C203D065D851EDEF7E18 /* Support Files */, - 9B2D1835EBDA34CB52FEC17919940BE3 /* turbomodule */, + 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */, + D3AD7235D57C76EC0040307CA5BBB12D /* react-native-appearance-prefix.pch */, + 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */, + 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - 48C96F31E8C486D11FD849377BF08549 /* Profiler */ = { + 471074A6A60D1F666116246F6F364CF5 /* Pod */ = { isa = PBXGroup; children = ( - 5710F0EC3562FB8BAC784F3F73462BD2 /* RCTMacros.h */, - E629269C56160A63C9FDB64C83F087F9 /* RCTProfile.h */, - DF96AC080D237B7EEE6FD55A7A2F8187 /* RCTProfile.m */, - 64A7E842B16DF838DCBAFC29B45607AB /* RCTProfileTrampoline-arm.S */, - DFD14A7E096A0397252F06145B0E5A2D /* RCTProfileTrampoline-arm64.S */, - A3C7A3754F55AAFA5B4E91F0B9C8830F /* RCTProfileTrampoline-i386.S */, - A3C2A4D215F38C04AC262DE863776695 /* RCTProfileTrampoline-x86_64.S */, + A73E5D101D8AD4362F724BCA7D09A2FD /* UMConstantsInterface.podspec */, ); - name = Profiler; - path = React/Profiler; + name = Pod; sourceTree = ""; }; - 48D6A1D445030E1CDF62E148B539AE5A /* Video */ = { + 47246D899999BA7EB52AE8D654EE94A2 /* Support Files */ = { isa = PBXGroup; children = ( - 5E882BAB378B024AC3C1C2524F2DDBD9 /* EXVideoManager.h */, - 80086B20D034186D33C1375FE9E128E6 /* EXVideoManager.m */, - F8FA282DD1579E726B5D9F87AAEDB077 /* EXVideoPlayerViewController.h */, - BF08A5A72A796E0D7578924045CF8A3B /* EXVideoPlayerViewController.m */, - D1D40F6B9AE4B05BABBB35D90892A727 /* EXVideoPlayerViewControllerDelegate.h */, - 7C652AE8776883D817384DFA525C52ED /* EXVideoView.h */, - 453DB2BC6EF01AC50DDD4C1A4994A50F /* EXVideoView.m */, + 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */, + C44E82C1ED45144F87A4F892488E0F9F /* React-RCTAnimation-prefix.pch */, + 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */, + 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */, ); - name = Video; - path = EXAV/Video; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 491A2C689C7F7E83E2EB4CF4F609724E /* react-native-slider */ = { + 475E176FFD97E2C800FF91DF03216556 /* RefreshControl */ = { isa = PBXGroup; children = ( - 91DF80F6E910A3C8CB8A694937579421 /* RNCSlider.h */, - B10D9AFD6D4338678CF1ED225B93617F /* RNCSlider.m */, - E98FD9E9544F3020335ED6379EFC99A3 /* RNCSliderManager.h */, - D6BF069F2732F6E9F835891C18E6EF95 /* RNCSliderManager.m */, - C5793F6C8D852E8B11159B2628818138 /* Pod */, - 3EEF37834A88501F414FE5F7B044258B /* Support Files */, + 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */, + 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */, + 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */, + A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */, + 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = RefreshControl; + path = RefreshControl; + sourceTree = ""; + }; + 48B1E22D6494F8D9D78120D3A760E5EC /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */, + 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */, + 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */, + C4ACFE8FB0317AD9212930E9E5F1F057 /* BaseText */, + 9231E46D5E8928E64E224D0EAF7B3FFE /* RawText */, + 9C72C7F8142B99D6AA06ECD694BADE6C /* Text */, + 09178F250A1752BC5FBE870231D5A155 /* TextInput */, + BD6B2313CAB6B283AF3E7C1C3C13D8F5 /* VirtualText */, + ); + name = RCTTextHeaders; sourceTree = ""; }; 494B119E0E7CA98E5728119B7D988CA3 /* Support Files */ = { @@ -13441,127 +13525,65 @@ path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; - 494D05322D483A4A888134FB0AEE7EDC /* react-native-notifications */ = { + 4965F8C77EE57F7B8843D516AF63701F /* Drivers */ = { isa = PBXGroup; children = ( - 08EA9141A6D54736E7B379B028D0DE13 /* RCTConvert+RNNotifications.h */, - CB475463812D11A24E92A8D304D00C84 /* RCTConvert+RNNotifications.m */, - 759C944D02BC3BE1893B6CC8D0130D4A /* RNBridgeModule.h */, - 57FCC889D05598718E2D52E33E1FBEB8 /* RNBridgeModule.m */, - D98D1B41390C636A9AD7701A69796582 /* RNCommandsHandler.h */, - E08071904D7D2F0A4891F9DC8EDEB75F /* RNCommandsHandler.m */, - AC0A6C8D5D38EBC13F5B8A8F5598FCD6 /* RNEventEmitter.h */, - F8E85CDCEFB77C7F762F28DA8B951922 /* RNEventEmitter.m */, - 7E8567410FB034BDD864AA4D2080275F /* RNNotificationCenter.h */, - 86F6819397830D723FCF535395C4446A /* RNNotificationCenter.m */, - B5BE8EC1E7ACB1ABEC2D7D569DE30EAC /* RNNotificationCenterListener.h */, - 2408483E2E11CF11B790E3BBDBF39A38 /* RNNotificationCenterListener.m */, - 73427C2B22D89ECCBF3EA77CF17C1302 /* RNNotificationCenterMulticast.h */, - 0EFE9E022D3C85C59A56ED2C97A7DEC8 /* RNNotificationCenterMulticast.m */, - 3D8655ED43A6270E35EA11A8B75E5871 /* RNNotificationEventHandler.h */, - 2EBE2C17455A54B13BAB477FD7BB7E2F /* RNNotificationEventHandler.m */, - 1E656B69F22332512C361E45801B2FB8 /* RNNotificationParser.h */, - E70B4B912C3718856B9C9AA6F2A8C6DF /* RNNotificationParser.m */, - B3CD37F75CA5168D4D3911E55ADAC6B8 /* RNNotifications.h */, - 4A30E4166BB2230FA571FBF90B707013 /* RNNotifications.m */, - 0073AE6B08ED13CE0E20EBD865669985 /* RNNotificationsStore.h */, - F760F7B2CF522DA6678AF34143AAC902 /* RNNotificationsStore.m */, - B5231401CF02666D23907ABEFD844107 /* RNNotificationUtils.h */, - 26820C24813B74EC02F3E78390E76315 /* RNNotificationUtils.m */, - 60CAB32A34B8454CE801473BB49046D2 /* RNPushKit.h */, - 9C520CA3686165532684A995B2A1558E /* RNPushKit.m */, - 9B097595BCE54A13A315BF6390808171 /* RNPushKitEventHandler.h */, - 1B6C236D982E19542DB9B9900D5B138F /* RNPushKitEventHandler.m */, - 37EA124FCA0ED645EE4CD92EEA1BD069 /* RNPushKitEventListener.h */, - F60ADD8AFC23B1A7DFB0240A739BD6C4 /* RNPushKitEventListener.m */, - 608D49C50BB3C63E71A7794DCEBE6213 /* Pod */, - 350341D95CC7AF1BB9704BD9C5FF1B9C /* Support Files */, + B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */, + 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */, + 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */, + A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = Drivers; + path = Drivers; sourceTree = ""; }; - 49ED97CBC5A3340948DA5BC7AD3A77DE /* RCTVibrationHeaders */ = { + 4B4555D39AB9955EEB4FB6021B2541B3 /* Pod */ = { isa = PBXGroup; children = ( - AC4D89DC055743B6D3C35541C591CF81 /* RCTVibration.h */, - 0EBF5527C184CE8B1D439B2077A4B6B9 /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 4A07A8B994A51B441464141D757535B6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 59E3E97A18E1377F38EDD619109F1446 /* RNBootSplash-dummy.m */, - 521178A93A26A6919A1D013F742A4415 /* RNBootSplash-prefix.pch */, - 2F2DB7F8457A7488E3B2F102D842E99D /* RNBootSplash.debug.xcconfig */, - F35EF008D9C383FC184C982B3009D527 /* RNBootSplash.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - 4AC5511DB5DE91210C3628ADBCB59D8A /* Support Files */ = { - isa = PBXGroup; - children = ( - EFB2ADA2F6647DAF1BA35F6D279A64F2 /* UMPermissionsInterface-dummy.m */, - 9CF39A4979C551317AADA0F275C00C15 /* UMPermissionsInterface-prefix.pch */, - 3BF39DEAF74C02F0D8A677124D3CA033 /* UMPermissionsInterface.debug.xcconfig */, - DE8FE96A401393DF663C1D0A0A3228D7 /* UMPermissionsInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; - 4BC4C85E7BE1E7E753B6932F5DAC1C0D /* Pod */ = { - isa = PBXGroup; - children = ( - A8FD6AFD5332A5C260CB3E88C9FD448F /* UMCameraInterface.podspec */, + FB423AF73A370592C088D3241E066793 /* react-native-slider.podspec */, ); name = Pod; sourceTree = ""; }; - 4C33625B1C7271A1492D6B8F3B238CED /* Support Files */ = { + 4B736DE99F69C2EE054930F316B31C0A /* Pod */ = { isa = PBXGroup; children = ( - 4F50078E62434E4DA8C72D9225A9E228 /* React.debug.xcconfig */, - 81247E4DBC0FA3308C4EE16CBB74ECBF /* React.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - 4C36693021664EAC1CA980ADA7380628 /* React-jsiexecutor */ = { - isa = PBXGroup; - children = ( - 2FB9D78EA07DE99F693EEBA901C4D8A8 /* JSIExecutor.cpp */, - 98632DB487A8965B5FEB5DDBD6DF791C /* JSIExecutor.h */, - 55BD7B35C0C6FCEDC6AA8FB0F8614304 /* JSINativeModules.cpp */, - B6D51677174B819C212DC134047038F3 /* JSINativeModules.h */, - 68A2FF3CDC36544A01F0EDFF253F426C /* Pod */, - 97F252CBC0945878074FBDF4A601F8AE /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - 4C399E3DF8A6E314FF67E3414A3DC0EC /* Pod */ = { - isa = PBXGroup; - children = ( - DFB9BA8C9B20AFF77DAF94C922915714 /* UMFontInterface.podspec */, + 383144616A9AB20CBE8698C62B6FD237 /* LICENSE */, + 4A16DF5A7F78ED5DC9A873E9D0302993 /* react-native-orientation-locker.podspec */, + 13CCDB2DB6B8BD5C8770E6E735D8CA21 /* README.md */, ); name = Pod; sourceTree = ""; }; - 4C81FD2D78D352CF7E248298232FA499 /* Pod */ = { + 4BC3606C86023E1BABAEEB367D81ECD2 /* Pod */ = { isa = PBXGroup; children = ( - 7250E8606857F0F70912DEF37DD89FAE /* Yoga.podspec */, + D4656C8233F03153A56FC08C10718E4C /* EXAV.podspec */, ); name = Pod; sourceTree = ""; }; + 4C4D46873C92A0CC07977C1F66AED631 /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */, + C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + 4C815E6ABCAC10E450E2156C5EEB1236 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + 9742D07E86C58B356E1D2CEB3111A2C6 /* UMBarCodeScannerInterface.h */, + D63EFFCA6E4A483A94CD139DAF3D3197 /* UMBarCodeScannerProviderInterface.h */, + 95FE45F304643FC93B8ED23BA09F8AB5 /* Pod */, + 82EB486A080868A0E58CE05C23E34B55 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; 4CB87717469CEA83AA657754FD2332DF /* MMKVCore */ = { isa = PBXGroup; children = ( @@ -13631,16 +13653,12 @@ path = MMKVCore; sourceTree = ""; }; - 4D2756C7009349AF94BD0A055F629B26 /* Support Files */ = { + 4CF351501AC02B15B49C5526787A38A9 /* Pod */ = { isa = PBXGroup; children = ( - CBF686FF477BA08CAB1E2E0381BF71F3 /* react-native-safe-area-context-dummy.m */, - F1B521025F0F4F758D87509B8607B25C /* react-native-safe-area-context-prefix.pch */, - 2236EE97FD7E16564C2954938BFBE98D /* react-native-safe-area-context.debug.xcconfig */, - 8D38F97A810600D413DCBE98977D6ACC /* react-native-safe-area-context.release.xcconfig */, + F2863A89B8DCCAC70CA9C4897DD83ED0 /* React-RCTNetwork.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + name = Pod; sourceTree = ""; }; 4DF7E720E9EFA067292067CA8FD4B76D /* Flipper-Glog */ = { @@ -13664,12 +13682,14 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 4EB3883823CF777F303B5F713639CE3D /* Pod */ = { + 4EB38AF68B1A72A133A9275330D5264D /* Support Files */ = { isa = PBXGroup; children = ( - 4BCDF8118425C116E712ACAA617DE01C /* EXVideoThumbnails.podspec */, + EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */, + D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; 4F6FFAA95CEF3008C049B14EF40F3D0E /* GoogleAppMeasurement */ = { @@ -13682,73 +13702,17 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - 4F7C5CCBDF8F1C9E95FA44F2F8A72F4C /* Transitioning */ = { + 500CB55126021EE637A7B9B7D72E411D /* Drivers */ = { isa = PBXGroup; children = ( - A278D90B54A2BBE0F724E45DED0A0B60 /* RCTConvert+REATransition.h */, - 72AC987B22B100B64312A2C13B98D22D /* RCTConvert+REATransition.m */, - 1106A6F9BA7A5ECEC81ED446CC24210A /* REAAllTransitions.h */, - 2C43861D198567296F1D650D6805EE04 /* REAAllTransitions.m */, - B3899DC9DD118473DC8A4ED843B8CF23 /* REATransition.h */, - E45F0AEFF0D85679F59C3F4760A67D27 /* REATransition.m */, - 371E7EBA4B68DECA2F2E723E8EE42914 /* REATransitionAnimation.h */, - AC3756005F3A665301DB75982D9BE67E /* REATransitionAnimation.m */, - 05DB85926F66B2A4873EFE09F0DECAF9 /* REATransitionManager.h */, - 2DFF569091508B46D910200710A5C6D4 /* REATransitionManager.m */, - 95EF4F0CB4513629B5B7DB27B2CDEB42 /* REATransitionValues.h */, - 2B1919218B8F63E04843B4789A349BE8 /* REATransitionValues.m */, + 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */, + 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */, + 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */, + 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */, + 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */, ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - 4F81A65734DE71037E1091765E9CFC4B /* Pod */ = { - isa = PBXGroup; - children = ( - 79A7413DA3DE425886E4F57C513970C7 /* UMBarCodeScannerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4F975ADC68E933B726529A5FF0D10AF3 /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 01E24F29F457A307DFC2E955FD9BA582 /* RCTSurfaceHostingProxyRootView.h */, - AD5883319A51B95FA97C71A2FDE674A5 /* RCTSurfaceHostingProxyRootView.mm */, - 8EF57F84DCB0CFB86C5A0017BD979E75 /* RCTSurfaceHostingView.h */, - EA1C3477BE69079F3EA4FB2F00CF16A8 /* RCTSurfaceHostingView.mm */, - 1EA45CA4388478E91926C24AD8184866 /* RCTSurfaceSizeMeasureMode.h */, - 77093D00049D223624BB3B6E81C2DEB5 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - 4FD948B5BEA6EF5707CD37F63BE829F0 /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - D846EA1B85F0B04D2294871F7B55A06C /* RCTAnimatedImage.m */, - 60096D9651F5AD11DDC2E5CBAA617416 /* RCTDisplayWeakRefreshable.m */, - 7A303DC83D1E9D0301E8E0B35D75C22E /* RCTGIFImageDecoder.mm */, - 0C36C360D7B06EB40BDB91ADA24B89EA /* RCTImageBlurUtils.m */, - DE1B6542EC270400ADAEC927CB0E8631 /* RCTImageCache.m */, - 35690712AE7EFB66FE528D1996482480 /* RCTImageEditingManager.mm */, - 4E1C6976BE3E1CA3B110921CEF5DA72D /* RCTImageLoader.mm */, - B64B80EEDD3D9194429EF5CD2A1F9DAD /* RCTImagePlugins.mm */, - 167EE6CF41F61FFF03A1C1B9C7F43555 /* RCTImageShadowView.m */, - 19AFB95A91D3FDCF31AEF6218AC259E7 /* RCTImageStoreManager.mm */, - 5FA3D34D75050A897AA0C2AACFA3144C /* RCTImageURLLoaderWithAttribution.mm */, - 7487231A9D5705D242C2DA39CBACC90E /* RCTImageUtils.m */, - 2BE94CEE4DD622DE3A79995DCBB38F80 /* RCTImageView.mm */, - 58A7D2A505C738B2644E5CBB8B43B159 /* RCTImageViewManager.mm */, - 2EF2967E2726D04058E65F36444A3F67 /* RCTLocalAssetImageLoader.mm */, - C1EE06C50AE2DD76E9E82007F2EBE1AE /* RCTResizeMode.m */, - D6A3D7CDA267E0078167CF83B1C5BF76 /* RCTUIImageViewAnimated.m */, - 2219F7A48F2A2E8A45D82043117F6DF6 /* Pod */, - 9D0E85E21FE4F19C35E4E86C4DD66AEE /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; 50FB14E744A0716848E232EBD4939D36 /* Support Files */ = { @@ -13761,18 +13725,6 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 5112BB9272EA06F1A1D5AD5F214FCA72 /* Support Files */ = { - isa = PBXGroup; - children = ( - 629066CB3AFE43DCAE1D0D6F1F500BE6 /* react-native-mmkv-storage-dummy.m */, - 0E97203928C2A804ACE5A5F8C95D0D4F /* react-native-mmkv-storage-prefix.pch */, - 37BAA62F703E8E7FB51E88748A5E943B /* react-native-mmkv-storage.debug.xcconfig */, - A3915613FC7F793FC43A12A1AFB1A57D /* react-native-mmkv-storage.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; - sourceTree = ""; - }; 51B3B8CB3DDCA94CE8EEDDCBBD482943 /* Core */ = { isa = PBXGroup; children = ( @@ -13921,228 +13873,144 @@ name = Core; sourceTree = ""; }; - 51E7AD76FE246BCF9A8D7D9A31F0D879 /* Pod */ = { + 531F07A0294DB23C7C27B2B47F74675E /* Pod */ = { isa = PBXGroup; children = ( - FEC52DA0D46B1074E6604D9FE7EC8074 /* KeyCommands.podspec */, - CC615BF0BFC9CACB20D9D4D208678026 /* README.md */, + DC6AF0419BC768638243CD0F9EB38875 /* FBLazyVector.podspec */, ); name = Pod; sourceTree = ""; }; - 522AEC66C0880A70453E111C8A944060 /* Support Files */ = { + 546B02590E0D91DFDC6CCFF7A174AEA7 /* Pod */ = { isa = PBXGroup; children = ( - 6DC8F9EF582F373968C2AB74A0F7189D /* UMAppLoader-dummy.m */, - F371510CDF08E8FEEEC97E4B47B46EC7 /* UMAppLoader-prefix.pch */, - 49029CFAADD3D72117A128C4BE298666 /* UMAppLoader.debug.xcconfig */, - 824F23E11E9FCFF1BF1056E07FD26665 /* UMAppLoader.release.xcconfig */, + 2EE7BC04B336F4E7738CF15ADD4B1334 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 546C59403695D545F9E2FA727AB8B1DE /* ViewManagers */ = { + isa = PBXGroup; + children = ( + A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */, + 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */, + 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */, + 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */, + 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */, + 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */, + DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */, + C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */, + 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */, + 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */, + 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */, + 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + 553C4B3F728EA2D2B4FD1C151D55FE0E /* Support Files */ = { + isa = PBXGroup; + children = ( + FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */, + 9B78BB3D98202529AB26B2984777EF0D /* RNBootSplash-prefix.pch */, + 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */, + 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - 5274AC0D686DDECFCCF97E55CB2D3043 /* Support Files */ = { + 563BC5455FAED9898AA5CAC53BCB5673 /* Support Files */ = { isa = PBXGroup; children = ( - C149B4D9ED96BA8DE497745CCEA37369 /* React-cxxreact-dummy.m */, - 810565D15FBA2F800AE983E945EC3726 /* React-cxxreact-prefix.pch */, - DCDA42F2DFA95DF214C7DBF264A4A257 /* React-cxxreact.debug.xcconfig */, - EF9C7484F8914FE9DFF0A489580AD78D /* React-cxxreact.release.xcconfig */, + D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */, + F16C7098707E23C1652F03AC187C367B /* React-jsinspector-prefix.pch */, + 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */, + 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 52C223C4A923CF0DE72F81D045B1F720 /* Pod */ = { + 566F12155681D85212C8AE483D165828 /* Support Files */ = { isa = PBXGroup; children = ( - 5E002C0B8E7AD5C6BAD20356C5EA0372 /* UMImageLoaderInterface.podspec */, + DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */, + 4D9B5E822DFD353429E2CCC69F4124F3 /* react-native-cookies-prefix.pch */, + A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */, + 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cookies"; sourceTree = ""; }; - 531B923E41AF2BA57A85EB8EEC8604E9 /* DevSupport */ = { + 56E6FB8C827F32E4242463131AB8B336 /* event */ = { isa = PBXGroup; children = ( - E7BEB1352D9A0F725E7B8D2FF1DDCBA4 /* RCTDevLoadingViewProtocol.h */, - D0D50F47E37E8972331B629D3BCA79C6 /* RCTDevLoadingViewSetEnabled.h */, - 3925EEC2D7C61026533E0154C4D7D572 /* RCTDevLoadingViewSetEnabled.m */, - 04087178A8AEEDAEB563FA17125B9FE9 /* RCTInspectorDevServerHelper.h */, - A23EEAE241A0BDE6E2EF7828BBEC8637 /* RCTInspectorDevServerHelper.mm */, - F8E7DCFD8A4AFC7478930E66C5CEA1E6 /* RCTPackagerClient.h */, - 5A7BD13E3626B368D600C550A048FF4F /* RCTPackagerClient.m */, - 6F9F5BC74CAE7ED926C9A1221129CA37 /* RCTPackagerConnection.h */, - 76F4F0674853C7D0CBFCE1B6A9CDD4C5 /* RCTPackagerConnection.mm */, + 7BBD17E2257061C54306749D6F782A0A /* event.cpp */, + C47E09C373B0A0FB35238FDA7C561401 /* event.h */, ); - name = DevSupport; - path = React/DevSupport; + name = event; + path = yoga/event; sourceTree = ""; }; - 533C6E4DB85A7BAC7CA444C357D16634 /* Brushes */ = { + 56F60C7BA9A1211A3CCBB06A5AFF931B /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 945D0C00A4CEEC778471BDE6EC8EA3C2 /* ARTBrush.h */, - 7FF0C0A9749B3B486459BB8DD1C2F24B /* ARTBrush.m */, - 9C44CF29220EBC8283BD04E3DF55ECAA /* ARTLinearGradient.h */, - 671699EF7F9403ACBBC723CCAB1F01AB /* ARTLinearGradient.m */, - 3765694BD8A7931EF9AA151B8BFFB135 /* ARTPattern.h */, - D2E970079CA85C8241712D8B167F2467 /* ARTPattern.m */, - 5701382D9A8846ABC000551AD5031595 /* ARTRadialGradient.h */, - 5ADF26B88AB64806E1798B085254B958 /* ARTRadialGradient.m */, - 61D49DF49E3B767A7A2FA0FF79EF6A73 /* ARTSolidColor.h */, - B1D44806E9198CC0F0E2175D1D92AF59 /* ARTSolidColor.m */, + 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */, + 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */, + B1AE52BEF388CDB7119F6302E5979D93 /* Pod */, + 820D723FBDD9BD36BFF1B95E38EA8864 /* Support Files */, ); - name = Brushes; - path = ios/Brushes; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 5375953D889175BB1148936333041241 /* RNConfigReader.xcworkspace */ = { + 579C0D12109D228082DB3ACBC303F6A4 /* Nodes */ = { isa = PBXGroup; children = ( - 5064FC9D762EC64CC35AEA5F824F6B06 /* contents.xcworkspacedata */, + 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */, + 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */, + B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */, + A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */, + 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */, + 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */, + 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */, + F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */, + EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */, + 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */, + B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */, + CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */, + 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */, + 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */, + 81766F98093BA351E98CB69984609C69 /* READebugNode.h */, + D7425907A788D25CB58D6971758201EA /* READebugNode.m */, + 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */, + 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */, + 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */, + 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */, + 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */, + A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */, + 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */, + A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */, + 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */, + 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */, + AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */, + 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */, + 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */, + 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */, + 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */, + C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */, + 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */, + 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */, + 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */, + 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */, + E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */, + A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */, ); - name = RNConfigReader.xcworkspace; - path = ios/RNConfigReader.xcworkspace; - sourceTree = ""; - }; - 546E564A6ACE4DB9B54A1F900779C6C0 /* EXFileSystem */ = { - isa = PBXGroup; - children = ( - B6684ECDDA4F69F6F86EF20CFF72B9DE /* EXFilePermissionModule.h */, - 30183117647A8EBFA12586C19C51951A /* EXFilePermissionModule.m */, - 91DC2211BF9562F6F4C10A0A887E55A0 /* EXFileSystem.h */, - D93455723F65C959386340D327CA64CD /* EXFileSystem.m */, - 479FC0A8AB10F8478593B003FEA594D9 /* EXFileSystemAssetLibraryHandler.h */, - 1189DFD69861669880AEFFC87C9CEC32 /* EXFileSystemAssetLibraryHandler.m */, - 17C7755C4DCDD70D7AA19712D472E705 /* EXFileSystemLocalFileHandler.h */, - 09939713E99149B2C9BB45CF51755507 /* EXFileSystemLocalFileHandler.m */, - 77CA1F65AB048F7CF75E75CFBA0FE1BB /* NSData+EXFileSystem.h */, - A1B6EDEBC112325BEBA60BE9161C167E /* NSData+EXFileSystem.m */, - 8358E327C3EC3E0F9038C7A6CAAD6CB6 /* EXSessionTasks */, - FBFE8C894AE78BDDC3D240F6D4253718 /* Pod */, - D267515099B3B9BE4B2CEAFEE215897F /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = ""; - }; - 54F513EBDE076B5608498EB536839719 /* UMCore */ = { - isa = PBXGroup; - children = ( - 486F4AA74FF5CFDE0B22AEA2A27428CE /* UMAppDelegateWrapper.h */, - 8D6227F545FD087DA36FB43B07B8100C /* UMAppDelegateWrapper.m */, - 37F133AEBDC29BAE5DB91012D3E13206 /* UMDefines.h */, - 3FFE76169012BDEDDD1847959AADD9A6 /* UMErrorCodes.h */, - 9F02624BA977AB475D20EBD94C668590 /* UMErrorCodes.m */, - 9B0848326022D9285AB3B2D7CFBEB1CF /* UMExportedModule.h */, - 6F156B2599F5935F219BEF7CB50F9C5B /* UMExportedModule.m */, - 7D514F7ABA45792D8BDC4177C29DAD6E /* UMSingletonModule.h */, - 64D48BF2C1C949D940E05FAA654BB4B6 /* UMSingletonModule.m */, - D82B8FB337C61F8A6F0723377FDABA44 /* UMUtilities.h */, - CACFD3B4D7D3ABE9EF1F6DB866040363 /* UMUtilities.m */, - 4CD4FEA2EC50EDDBC720C06975C92FFE /* UMViewManager.h */, - C8483327F317432240A3BF797E981260 /* UMViewManager.m */, - F39609B8DAA1D968C38FE2DB817E6D3E /* Pod */, - 576B3E8BF174AE16A7FF2116ED6A4BBF /* Protocols */, - 16F575DAA9D82F02EEE72A2FB34FA1FA /* Services */, - 937797329BBFBF34F805DBF3C98A98AD /* Support Files */, - 40F28D9D57354046CDD810F803D2E321 /* UMModuleRegistry */, - B6D79C87E73FDC2EE0ED63F3BDEFBF68 /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; - 550B0E3C10F0D4D4793BA9A275DC09E2 /* RNRootView */ = { - isa = PBXGroup; - children = ( - 3588C1837DCE8B57766EF26179A0C7C1 /* RootView.h */, - B8F036BB59D70BDCC12BB867562655A4 /* RootView.m */, - F4F2386C6C4FD12760F840860424BDA7 /* Pod */, - BFD6084315DD886223F083EABF9FBA71 /* Support Files */, - ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; - sourceTree = ""; - }; - 5579D0662DE3788CE018ADCB1162F4E4 /* Pod */ = { - isa = PBXGroup; - children = ( - 94CF3A524730CE97D5699E57E7A98E67 /* README.md */, - 1CBC1F263BC3DF790A353D55C0660CA3 /* RNCMaskedView.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 563C82A4F2B81BCD61B9765F05853604 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 9F8FF700310770E6722C190E33588993 /* UMAppLoaderInterface.h */, - 23863380FAC836A1C4469C2DCB32DE67 /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; - sourceTree = ""; - }; - 5707722724A981744452FFF67AC40FB2 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - BC26C39986B571E74A37D435B04D8992 /* RNJitsiMeetView.h */, - EE3A78189BDE60B89E686B3CAFEC639F /* RNJitsiMeetView.m */, - C35CA5F366D9E90E75B49F02508392A4 /* RNJitsiMeetViewManager.h */, - 7D48D64E2999C9E38AC3AA1B67429F3F /* RNJitsiMeetViewManager.m */, - 20D31DF5820F11D0BB722C2A552992C2 /* Pod */, - 59AAA6D3EC3E33B6C8D491E734ADD979 /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - 57114C5D49ADDCA7D02DF740B87AE334 /* react-native-background-timer */ = { - isa = PBXGroup; - children = ( - 4D6FC01B76455ECC5817D1AA6E0A046F /* RNBackgroundTimer.h */, - B490D1D95DD6CEF97E0344553BB8DC53 /* RNBackgroundTimer.m */, - 43361FC9D168A123E5CC6FE49CC2961D /* Pod */, - 997727FBDB496898E782BEDDC74E9AB1 /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; - sourceTree = ""; - }; - 5740483EB7915337AAC5082858AD2261 /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - 9BBE357D0DAAD5903587B286984F4105 /* UMTaskConsumerInterface.h */, - EB707E595257092946F7020BCA80B6B7 /* UMTaskInterface.h */, - D69664DFD8FA8787B0826DCF52C95191 /* UMTaskLaunchReason.h */, - DB75A86AB901C90C2C62C062A3254C39 /* UMTaskManagerInterface.h */, - 3DD6E5969079ED345439BDF56B78FC83 /* UMTaskServiceInterface.h */, - 13F806373E556A1F159914C41F90DF0F /* Pod */, - D9796B2B9DDAD74CC7D8BDF19572D6EF /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - 576B3E8BF174AE16A7FF2116ED6A4BBF /* Protocols */ = { - isa = PBXGroup; - children = ( - C22389029EDF4008F44BE5DEEB1A4CE3 /* UMAppLifecycleListener.h */, - FD83C1873BD8F5D53DBFE09D7C3AC8ED /* UMAppLifecycleService.h */, - 1D1A169DD3DF0865EF7E361E8D23CD81 /* UMEventEmitter.h */, - B3622F0BD6A03A834E4E101D1A89D5A2 /* UMEventEmitterService.h */, - B4CF26B3A572A32E3548A3BF62BBC69F /* UMInternalModule.h */, - 375925AA15E11378D073ABDA0144D8CF /* UMJavaScriptContextProvider.h */, - 65FA32D12690DBE4244CBEF4FC560664 /* UMKernelService.h */, - A256F2A26CB704BCD26F3511781A2DC1 /* UMLogHandler.h */, - 81EE02F9950AF7F84CFE06A0047AFCB7 /* UMModuleRegistryConsumer.h */, - 4D00D2DFA3CDC20D63939FD5E53A919C /* UMUIManager.h */, - B4F5CA118313BE2728A3FF52A6216808 /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; 585117205089EE773CF8220FF60DE426 /* Frameworks */ = { @@ -14154,93 +14022,16 @@ name = Frameworks; sourceTree = ""; }; - 594B28820B19CA6BFF846E4F60E2E3E9 /* Development Pods */ = { + 58A9B7BCDAFACA0FDC6F535EE1E27A28 /* Support Files */ = { isa = PBXGroup; children = ( - DD7345609E28482D616C7C277F2DA3FC /* BugsnagReactNative */, - AC1360BE0623926DDF8E0CB87A863B4C /* EXAppleAuthentication */, - E64AA56808C2CB8EDEA06328AF157F85 /* EXAV */, - 2CC8FB36CCAB5AC9166635EA8BF35EC8 /* EXConstants */, - 546E564A6ACE4DB9B54A1F900779C6C0 /* EXFileSystem */, - 640A8C8901CFDE4D6EB5697937B39A43 /* EXHaptics */, - BC530FAE029C02F9F9B34E54DC12C131 /* EXImageLoader */, - AF708CB4159429D60218CB0318A13659 /* EXKeepAwake */, - EA9C58C70CDE18F38789CB2CA0F0A8AF /* EXLocalAuthentication */, - 891F2E1985C176E55778D25C0528DE3E /* EXPermissions */, - 0FC2E168AEB170A82501F874EC078A51 /* EXVideoThumbnails */, - 29172733AD39D8766D43156DA0EA8DA7 /* EXWebBrowser */, - EDF18497E8066D5ECCDD7B8953C5A066 /* FBLazyVector */, - 906B4A3879046B9D5A41AC19AB1AA3A1 /* FBReactNativeSpec */, - C289E41D5499BEDC90D240F17CC8C9AD /* KeyCommands */, - 5D4984DFE740DCA74B6F3F7937BBBC6B /* RCTRequired */, - 6B589537236668522636BBB6AB84A38B /* RCTTypeSafety */, - C66488C8D11FEE57BCDB46409ADAC107 /* React */, - 86531FA87005098DCF86BD60B2C51108 /* React-callinvoker */, - A810B755058281201366B95714AE6C74 /* React-Core */, - C5D1B2A15892F619C2E8FB60857D1F71 /* React-CoreModules */, - EADBEED51B777F681F1E55EEB558C5BC /* React-cxxreact */, - 8BCA67AF31B77264841D346C92E3D257 /* React-jsi */, - 4C36693021664EAC1CA980ADA7380628 /* React-jsiexecutor */, - EF7AC632513D379419D66C34C155A5F9 /* React-jsinspector */, - 42769914BFC88624A0087B3C2C9991B6 /* react-native-appearance */, - 57114C5D49ADDCA7D02DF740B87AE334 /* react-native-background-timer */, - 78D77B51F7631D8DD91DDD94CF33FD67 /* react-native-cameraroll */, - 5B50F6C7041893F38824E28B3CB11B55 /* react-native-document-picker */, - 5707722724A981744452FFF67AC40FB2 /* react-native-jitsi-meet */, - 25138E29BE29E37AE734C6EDFAC11867 /* react-native-mmkv-storage */, - 494D05322D483A4A888134FB0AEE7EDC /* react-native-notifications */, - F1D336B1CA43B37A79C3A33757D52645 /* react-native-orientation-locker */, - E07B6754149382F58C60BAD7A09BA2F5 /* react-native-safe-area-context */, - 491A2C689C7F7E83E2EB4CF4F609724E /* react-native-slider */, - FC66F1A054D1B6AF407870439FFA77F2 /* react-native-webview */, - 2504F2D7BEF1585AEB3C6510CBDD7762 /* React-RCTActionSheet */, - B43FC80A7DB65DBF970ACA74CC04EAAA /* React-RCTAnimation */, - 41E95317C8D0787DA59F44E17069C664 /* React-RCTBlob */, - 4FD948B5BEA6EF5707CD37F63BE829F0 /* React-RCTImage */, - BF9BDA9C9B985D7D078B76AACD55B030 /* React-RCTLinking */, - E9CCD5F9A725A7BCFAEA76AADB3CE3EC /* React-RCTNetwork */, - 066E0494C6B13F8F876CF2BF0A25832A /* React-RCTSettings */, - C5B5F26957A2D1A88BA6D578003C5E99 /* React-RCTText */, - 21683FF89DA41438D174E5E479A8D851 /* React-RCTVibration */, - 48170AC7D3A85405AFA338D85FB42E5E /* ReactCommon */, - D79A7AFD2D1053540938BA046D77AD5B /* ReactNativeART */, - 102540019C920ED94D807BBD95A954F1 /* ReactNativeKeyboardInput */, - 459F3989FCE5B9927E3992E5073296D3 /* ReactNativeKeyboardTrackingView */, - 4087B4EAA17111393746E48F11645A3A /* rn-extensions-share */, - B693CB58A40E28A697D27BEF13C7DE71 /* rn-fetch-blob */, - 787A34C4EFC1A35ED025B88E3025EE6C /* RNBootSplash */, - C0AF541C40F976FEA34C80526D990738 /* RNCAsyncStorage */, - B236C6130788638B55915E387E99E880 /* RNCMaskedView */, - ACBCD32A59925AED94D73482F6B9B537 /* RNConfigReader */, - 88E155776967AFBA5159F3F31907293C /* RNDateTimePicker */, - AF4CBFD3F93AE5B0058D81DDBB753A26 /* RNDeviceInfo */, - 71C805C7EB893CD45B1BDE5A1581465B /* RNFastImage */, - 0955BF50DA527D8CEADFC6DD5784E855 /* RNFBAnalytics */, - CE36C474B25A833E0DD4846EEAB8E798 /* RNFBApp */, - 1DAB0B9A884FA7E1737EA70E985D276B /* RNFBCrashlytics */, - C09D0D41B78360769B6676CF69015D64 /* RNGestureHandler */, - 41754E23F991D970552858F22A25A201 /* RNImageCropPicker */, - 044BCC5A45B71A553D14B292059A52E1 /* RNLocalize */, - 6A4F3C88B8F586985AD5CBFD78893003 /* RNReanimated */, - 550B0E3C10F0D4D4793BA9A275DC09E2 /* RNRootView */, - 782C91C3E497C4F677A513A172C5240F /* RNScreens */, - 79EE92DE8CAAE37DDE8D80D18CF82A4A /* RNVectorIcons */, - 3A01D3E8C2CC9AB0516C26F7EEEB48B8 /* UMAppLoader */, - BB2198DDD95678E00A96ED89D7C2F177 /* UMBarCodeScannerInterface */, - 91D801C2A6870BDCE13F194D71A2F2A8 /* UMCameraInterface */, - 5FF89E042E7EA6D88D045454EC60AC9E /* UMConstantsInterface */, - 54F513EBDE076B5608498EB536839719 /* UMCore */, - D55FFB05E64D707E572E589ACBE38829 /* UMFaceDetectorInterface */, - B1658CB67F1B5922C61CDCD7016F81F8 /* UMFileSystemInterface */, - 689060E2AA95D658AA0D441816D8A434 /* UMFontInterface */, - 363C66D050C87F90504804E16F9C333A /* UMImageLoaderInterface */, - F96C3E7695E9FEBFFC8F818DA9914536 /* UMPermissionsInterface */, - 81060F0862CF2DB47F27BCD266303F50 /* UMReactNativeAdapter */, - A04865C6D128F5684FCE9507E3CE8F30 /* UMSensorsInterface */, - 5740483EB7915337AAC5082858AD2261 /* UMTaskManagerInterface */, - C6E36DDCFEBEB1AA81301EE426C4AF6C /* Yoga */, + 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */, + E13DBC7AA929E656D00405709E528DD1 /* ReactNativeKeyboardInput-prefix.pch */, + C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */, + E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */, ); - name = "Development Pods"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; sourceTree = ""; }; 596959E8F6CA185C187D9DC91DAC32CF /* Support Files */ = { @@ -14254,60 +14045,28 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 59AAA6D3EC3E33B6C8D491E734ADD979 /* Support Files */ = { + 5A459960D6CFBC076295E0C11B5CE13A /* Support Files */ = { isa = PBXGroup; children = ( - 6E86A43107B6C90CDFCB4201487DE0D8 /* react-native-jitsi-meet-dummy.m */, - 9EE3B0BBA08C81F04B45CEB96D3871EE /* react-native-jitsi-meet-prefix.pch */, - DF0E7C9117E9471C412DA2EFB7661457 /* react-native-jitsi-meet.debug.xcconfig */, - 0133831D38C7E00969CC06938E12D48D /* react-native-jitsi-meet.release.xcconfig */, + 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */, + 4AAD645A89AA53AA46FF2F2EA406D435 /* RNLocalize-prefix.pch */, + 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */, + 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - 5A1BBEA2F3EAA14BB6C1D221FCEF9744 /* Pod */ = { + 5B73AE5A405588EB2A1DFF2098FA17C6 /* Support Files */ = { isa = PBXGroup; children = ( - D9FB251C4A6D03F9CCCC5DB2BEE563C9 /* React-Core.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5A2CB0F172E303452A4AEC23ABFEEC1A /* Support Files */ = { - isa = PBXGroup; - children = ( - CEF4B4DD2CB8C347B93F9CD1D1D64D2C /* FBReactNativeSpec-dummy.m */, - FA2436E9FC7CE63CBDB61E8F57DC1576 /* FBReactNativeSpec-prefix.pch */, - 352990121E0A66CD03B104026B87B37E /* FBReactNativeSpec.debug.xcconfig */, - 52921158AA1E041CFD10AD48858BC565 /* FBReactNativeSpec.release.xcconfig */, + 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */, + C7E06C4B7A2DC711C361CA70A01762D9 /* react-native-document-picker-prefix.pch */, + 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */, + DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - 5A365EA5E54995A3264FA95D40492628 /* Support Files */ = { - isa = PBXGroup; - children = ( - 13D3614EDFBBA73048D53A64182FB08E /* UMReactNativeAdapter-dummy.m */, - 30165B8240703E3C7EF0200ACBE476DD /* UMReactNativeAdapter-prefix.pch */, - 9AEF4114EA8A77EDC4DB38524A5C12CA /* UMReactNativeAdapter.debug.xcconfig */, - 48675413E5F83ED979FF3B47C9ACB5ED /* UMReactNativeAdapter.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - 5B50F6C7041893F38824E28B3CB11B55 /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - B60A63908E158D8558B4CA7B539FC1D0 /* RNDocumentPicker.h */, - FA577DEE9857236D0B08B675E4949F0D /* RNDocumentPicker.m */, - 3E21331B4FF893E20AB4360489CFE841 /* Pod */, - 6FCBF0FDBA34E8693E06DE4B8ABBBA1D /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; 5B8F51C88042A440D531603516386B85 /* Support Files */ = { @@ -14320,26 +14079,14 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - 5BA821DB90F32D4F346397AC54969550 /* UIUtils */ = { + 5BB7D530C9074BE1E0E12C148FB0DD4A /* Support Files */ = { isa = PBXGroup; children = ( - B4FB171311E3FFF3799EE2E419CAEF22 /* RCTUIUtils.h */, - 6D915D485381EED95275C38EA9CF0C01 /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - 5BCF2E891DBFBC53A2DB594C008EBBE6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5C637B6A50FC1BD8E160F8DAC7E0E003 /* RNReanimated-dummy.m */, - 554064B418906E5291EDAADD86DE209A /* RNReanimated-prefix.pch */, - EC34AD1F56B9DF9E6BEBFBFAF8733F43 /* RNReanimated.debug.xcconfig */, - 1D21C1E3154D205532C5C7731FB42A35 /* RNReanimated.release.xcconfig */, + 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */, + 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; 5BCFFA1DE18AC03DF2BDB0F208FAE05A /* Flipper */ = { @@ -14433,37 +14180,29 @@ path = PromisesObjC; sourceTree = ""; }; - 5CDD4738650A84F09A1971A54A935455 /* Support Files */ = { + 5CD12DD1F6F55AA3E814CAD4DBADA4FA /* Core */ = { isa = PBXGroup; children = ( - D8F9D427DF74F5E3078ED50BD51C4406 /* UMFileSystemInterface.debug.xcconfig */, - 101A72E6061B8CD4083858C19A009CA8 /* UMFileSystemInterface.release.xcconfig */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + name = Core; sourceTree = ""; }; - 5CE25CDCC09D5D47D37A39FEF15A2136 /* Support Files */ = { + 5D3EF85EEA74440667856A174A7CF90C /* RNScreens */ = { isa = PBXGroup; children = ( - F5EEAB1047BEBBA2329DA3CDF8F64B10 /* ReactNativeKeyboardInput-dummy.m */, - DCCEF9F286E7871098AFB7EC2B1E0E2A /* ReactNativeKeyboardInput-prefix.pch */, - 7BDAA8437BA9522C166711B13F38EDA7 /* ReactNativeKeyboardInput.debug.xcconfig */, - 65D3432402A4ED51AEA5007E42107E02 /* ReactNativeKeyboardInput.release.xcconfig */, + 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */, + 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */, + 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */, + DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */, + A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */, + BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */, + CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */, + 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */, + 18D086326D1B816B8532F118DFC0B002 /* Pod */, + FD57CBD6983388FA42FFFC36787B0E8E /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; - sourceTree = ""; - }; - 5D4984DFE740DCA74B6F3F7937BBBC6B /* RCTRequired */ = { - isa = PBXGroup; - children = ( - 59D2AD844A9F003BAA74DF898A3825C7 /* RCTRequired.h */, - 3012CDE45E83C2A26A50C46F70180BFC /* Pod */, - EEB59551DA7A2041FD41D07C3D5B9724 /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; 5DBDFB69F4CA4ABD9CB5934DE6FCEABD /* NSData+zlib */ = { @@ -14476,89 +14215,112 @@ name = "NSData+zlib"; sourceTree = ""; }; - 5E3ECFD6CCA99B67A84E0235FB890447 /* Support Files */ = { + 5EEF917987BCC8AEF5CF5061469CE45C /* Resources */ = { isa = PBXGroup; children = ( - 1924C22D638CB1F31E99537254BB7D00 /* RNCMaskedView-dummy.m */, - 203401F7AAEE5B2FB3C1808C6BF70CCA /* RNCMaskedView-prefix.pch */, - 2B67D7B50D4DA591A9D6C24E43E8FDF8 /* RNCMaskedView.debug.xcconfig */, - B831DE2E14FA1AC3D0C711922D62D355 /* RNCMaskedView.release.xcconfig */, + 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 5F882E7BBFA9658259142D5289B455EB /* Pod */ = { + isa = PBXGroup; + children = ( + 7B12B24F0D2B4C9ABF11C62EC0707101 /* LICENSE */, + 28105B13EA351F4B508FE0E4AD5B2230 /* ReactNativeKeyboardTrackingView.podspec */, + C60524B5B9A9D8052ECA2416033AC77E /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 5FAC90D16813282C6B8A8657B38F7036 /* Multiline */ = { + isa = PBXGroup; + children = ( + C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */, + 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */, + A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 60246F03CBD5215A4D05C4DBB9618114 /* ReactNativeKeyboardInput */ = { + isa = PBXGroup; + children = ( + A9387CF7966E546046E2F9ED7B573504 /* LNInterpolation */, + 755308F53B9F113348A5EAEE5F791C50 /* Pod */, + 9184F2D9EFBD9839DF678BEC01488F70 /* RCTCustomInputController */, + 58A9B7BCDAFACA0FDC6F535EE1E27A28 /* Support Files */, + ); + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + 6110DC87D643E5BB776753A2E2DA0B19 /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */, + 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + 6153446E70B9D23EE70C201E02BF89D7 /* Support Files */ = { + isa = PBXGroup; + children = ( + B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */, + 3BE6681C640A8D82C22D08B78CD22781 /* react-native-slider-prefix.pch */, + 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */, + 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; - 5FF89E042E7EA6D88D045454EC60AC9E /* UMConstantsInterface */ = { + 623B30ACF92AF9DFE025A5AC85E7658F /* Pod */ = { isa = PBXGroup; children = ( - AD439684480ACFE8F0F51B52A85432F3 /* UMConstantsInterface.h */, - 8FF260B924AF551C9FB2E2B45B362B1D /* Pod */, - A60A001442F0EFC69A13D12C1731DFFB /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - 605C97DDD8C7DD9944F72789C74DEB0C /* Pod */ = { - isa = PBXGroup; - children = ( - CE2C676F0085318784448BBBA63F2429 /* LICENSE */, - 2E19AE3D17C1D6EED5F10BAD74140FEE /* README.md */, - BFFFA2BF22DD49E1CB25316C7EC3FA96 /* rn-fetch-blob.podspec */, + 8EA5049FEBF87BF99988F7BB6B3A542A /* LICENSE */, + FEFA42E3A626B7AD203A6688EEB6BFBA /* react-native-mmkv-storage.podspec */, + C0FFCF3DFB89B29660D715CD5BF1E35D /* README.md */, ); name = Pod; sourceTree = ""; }; - 608D49C50BB3C63E71A7794DCEBE6213 /* Pod */ = { + 638A5498CA549D052BF54A0DD032BB90 /* Multiline */ = { isa = PBXGroup; children = ( - 9A9F42B5250933CF88C7877509252FCE /* advancedIos.md */, - 3FB19765CA1C2E9E22FA7A7F12B5D186 /* installation.md */, - 806A6A850804DAC387E194717155CEA9 /* LICENSE */, - C57CCB09D5FE66EE472ECF04389CB2C2 /* localNotifications.md */, - 3F57F9C17E28EC94693F4AAC962D9CB4 /* notificationsEvents.md */, - 15B7F9B90D592DD2FF74179B2AA3A698 /* react-native-notifications.podspec */, - 3C8B2FAA47900FBF98B06503FC48884E /* README.md */, - 2171CDE876D03C2388CE54F7958A6B07 /* subscription.md */, + 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */, + 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */, + DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */, ); - name = Pod; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 60F382BB533201A7B8D906DDEABB0AD0 /* internal */ = { + 642AB45569CCE76C03F7FEF7DF743E10 /* Services */ = { isa = PBXGroup; children = ( - 4B861A2A0BFBEFE7356A8262D7952623 /* experiments.cpp */, - 5B82D463BD29B4C6AB3DCEDA8619034D /* experiments.h */, - FDCF08832B587A2A19844620A5440E9F /* experiments-inl.h */, + F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */, + C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */, ); - name = internal; - path = yoga/internal; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - 63D38F0003817BCA69E562530AF9C6EB /* Pod */ = { + 6670945F244007AF97B3B4793D972E83 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 4C355FD727AD8B25275A4D0ECB54A60C /* UMPermissionsInterface.podspec */, + 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */, + 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */, ); - name = Pod; + name = RCTVibrationHeaders; sourceTree = ""; }; - 640A8C8901CFDE4D6EB5697937B39A43 /* EXHaptics */ = { + 6763E034031DE82C399D8FE54951F420 /* Pod */ = { isa = PBXGroup; children = ( - 7429D080F7516AB8424004612D84AF03 /* EXHapticsModule.h */, - 944D942E113B09A0E9DE0486D1E77562 /* EXHapticsModule.m */, - 0AEC8E6D6932E68C98F9C522EAB07F96 /* Pod */, - BB5450293AF3C1E75C70E610ED5BF84A /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - 644990BB9DCC8155D2EE1D1341F37363 /* Pod */ = { - isa = PBXGroup; - children = ( - 1CF6DAD8C68CA5020EAB917F2B678F58 /* UMFileSystemInterface.podspec */, + A1F4D676DDF4AFA47254899CD233F1ED /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -14588,48 +14350,31 @@ name = Environment; sourceTree = ""; }; - 6843E80DEAFBCBC681354BE763959C41 /* Support Files */ = { + 68698F1A3F479AABB642766229EE31EA /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 96C3EA56CA8D0AD7611923CD09E52544 /* React-RCTNetwork-dummy.m */, - DC257AA18D01553D42EDD9E2694DF47C /* React-RCTNetwork-prefix.pch */, - 1D6E30B5D5A54411361F9E0B5938B513 /* React-RCTNetwork.debug.xcconfig */, - FA23739DC3A896C5CE4852C02E9B89B1 /* React-RCTNetwork.release.xcconfig */, + 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */, + F64C64DDE6EC5C49768FD88986FB73A2 /* Pod */, + 1EA42BF00FC8845824AF1A9EB3053EA2 /* Services */, + 94A89412E5841A0D0B040C6409F6E90A /* Support Files */, + 7557E182950A7CB57CDD1DED5664C8EF /* UMModuleRegistryAdapter */, + 81A0A887501720585A6ED4B8337DA728 /* UMNativeModulesProxy */, + 86289DA29472A446FE7B07E68E144B26 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 68B333B521F2661162615BECA7986FFE /* Support Files */ = { + isa = PBXGroup; + children = ( + 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */, + 672FB528F5AD5313A27A93E44D7275C1 /* RNFBCrashlytics-prefix.pch */, + B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */, + 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = ""; - }; - 689060E2AA95D658AA0D441816D8A434 /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 07450A0148C009C8EC2E208D4DB4AF5F /* UMFontManagerInterface.h */, - A58F9A9E0B4209A7BDFD1D6D8A459A00 /* UMFontProcessorInterface.h */, - 8B86FF9926A558E1D91C033A7C0862E4 /* UMFontScalerInterface.h */, - 9FA431D53C331DBA0DD85D98FE1AB946 /* UMFontScalersManagerInterface.h */, - 4C399E3DF8A6E314FF67E3414A3DC0EC /* Pod */, - 13C24CCEDA6C58D0DE8AC1CFF657432A /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 68A2FF3CDC36544A01F0EDFF253F426C /* Pod */ = { - isa = PBXGroup; - children = ( - 1495B405351C8B6D4D7315A4C1A6FA6D /* React-jsiexecutor.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 695D4C3775C1BC886794CD633972CB61 /* Pod */ = { - isa = PBXGroup; - children = ( - F96AFA66AF74102BB8F7EBF74E32DA2F /* LICENSE */, - 3FB40CED4FF6252A0FA720AD3CBF6151 /* react-native-appearance.podspec */, - 510E3B9E9D879159DB412367A37476E0 /* README.md */, - ); - name = Pod; + path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; sourceTree = ""; }; 697E6CD1227AD119CC4E3A7D8D9222E4 /* Support Files */ = { @@ -14644,6 +14389,18 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; + 6986F119D6270D7130A36CB90A7DAEEA /* Support Files */ = { + isa = PBXGroup; + children = ( + D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */, + 5A2C14A8D023869B15AE3C8A886173EC /* rn-extensions-share-prefix.pch */, + 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */, + 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; 698A0BFBD27F2486B9151A654CC5C614 /* MMKVAppExtension */ = { isa = PBXGroup; children = ( @@ -14656,126 +14413,63 @@ path = MMKVAppExtension; sourceTree = ""; }; - 69A6709AEE8D5C38E6C2BBAB77E2E905 /* Support Files */ = { + 6A22E9AB051C3C1A09ACAD7492425B71 /* Pod */ = { isa = PBXGroup; children = ( - 9CF77E3065652047D6A490602EBF425C /* BugsnagReactNative-dummy.m */, - AAE940790A5924D7E033728DA7E02081 /* BugsnagReactNative-prefix.pch */, - 05177C72A2585FC43F67B7538D200440 /* BugsnagReactNative.debug.xcconfig */, - C46E5CCD8F3CE4B3511D8B9712E51671 /* BugsnagReactNative.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; - sourceTree = ""; - }; - 69C84E343B580969E19E96D0037D6AEF /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 3FA481B9ADC7761E5D17F53B727F5616 /* RCTLinkingManager.h */, - EB3A70D5004E3BFA10EE25FCADBA809C /* RCTLinkingPlugins.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 6A4F3C88B8F586985AD5CBFD78893003 /* RNReanimated */ = { - isa = PBXGroup; - children = ( - CF2C74DA7C23F0306B08467680B5962C /* REAModule.h */, - EDAC5ACB7725E2AF42A171B9B5E299D0 /* REAModule.m */, - C6041DDA4182F72E37D472F3921A1CCE /* REANodesManager.h */, - D9920642743684FA0B5BC3C4A9192B25 /* REANodesManager.m */, - D60482B47FD0AA318A8F3ABB87D71181 /* REAUtils.h */, - 6C411FB060FCACBD5C133FC7275A0D69 /* Nodes */, - 07E29AB17D6F08FE2E34EA6CB7558454 /* Pod */, - 5BCF2E891DBFBC53A2DB594C008EBBE6 /* Support Files */, - 4F7C5CCBDF8F1C9E95FA44F2F8A72F4C /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = ""; - }; - 6B1A84AE97C8C203D065D851EDEF7E18 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4D910A03E2BD03EAE274F7C05E50F5A5 /* ReactCommon-dummy.m */, - A60C3F73C95B68C51F2ADD208E146E1D /* ReactCommon-prefix.pch */, - 0F87400FE876A41F56C7ADD39BDB8D71 /* ReactCommon.debug.xcconfig */, - 2FF6A539084A7D2DAF113E7B09679D94 /* ReactCommon.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 6B589537236668522636BBB6AB84A38B /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - D5D3FAE20F2A32E94E51A1FADE7A633E /* RCTConvertHelpers.h */, - 3C6300E881728F8CF35D40641CCBEE3B /* RCTConvertHelpers.mm */, - 1CC050E57AE90094F1AA4D333891B6B4 /* RCTTypedModuleConstants.h */, - 375033BF1816F43387051570E1E5B279 /* RCTTypedModuleConstants.mm */, - DA9AADF8721688CBF2A78970AB37B3CB /* Pod */, - 7A1CE5493B9BFCC28F99C3D077E7BBAF /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; - 6C411FB060FCACBD5C133FC7275A0D69 /* Nodes */ = { - isa = PBXGroup; - children = ( - 679EE78CE2218A00785083968D3493FC /* REAAlwaysNode.h */, - 16C969C7F622D1966207C2AEC63B8625 /* REAAlwaysNode.m */, - 727EEE16F29306FD34854F46B3A8B762 /* REABezierNode.h */, - B55BADFE24214C1DD81A359070BCD0AF /* REABezierNode.m */, - 276AA64C33F2B43E6002D226CB1DD7D7 /* REABlockNode.h */, - 318BCBC7C8DDBD935B9B73974ECEF4C4 /* REABlockNode.m */, - B2670751A97310AE5AA215BBE20D9645 /* REACallFuncNode.h */, - 082C1A363B728D6698E9B7CDF0C4C87B /* REACallFuncNode.m */, - 4271CB6631869433031EE33331EA0986 /* REAClockNodes.h */, - 729C5AB3CD55EDFDEBC0668A0EAF2A69 /* REAClockNodes.m */, - 798DB6C8DFE6F147B46EB55389159322 /* REAConcatNode.h */, - CEBE5B36CD09382E91046AA5604F5156 /* REAConcatNode.m */, - A2C74282D982E72086CF307238D5F5E7 /* REACondNode.h */, - 3D9F6AC58CF7A8930A08AA3C2F3EF1B4 /* REACondNode.m */, - 5FC4454EFBF16CBF99EB76DBADF5AC6F /* READebugNode.h */, - F2BFA9D42C64D5B34BD5545832430EB7 /* READebugNode.m */, - 7254E18DE87EA152AF8F9300DF7C38AC /* REAEventNode.h */, - 1897C43F8AF9278B0BA995ED379EF9BC /* REAEventNode.m */, - 043DC73DBDFBE110753D52D68CE30660 /* REAFunctionNode.h */, - 9E1582A303A42A23ADC566CED1C8C326 /* REAFunctionNode.m */, - 976B5795551A2E7A56C658E34A7FF6C8 /* REAJSCallNode.h */, - 9D20A7D80D8CFABC26E75D42D366E4EE /* REAJSCallNode.m */, - D72CB9DC4B38BB6A28E4438C66B379EB /* REANode.h */, - 20C9F86FF97D42BB26DEA30C6A1B46BD /* REANode.m */, - 237C8807356F273D4CFF4AA2545EE5AC /* REAOperatorNode.h */, - 96A7AD52DAACFA12029D77086B9D7340 /* REAOperatorNode.m */, - 7B0B3CD97CFD9DEE34B5B8E734CC6C2D /* REAParamNode.h */, - D4AAFF579C422392445252BD690A4990 /* REAParamNode.m */, - DB7A8628061DCD177FC8C5A697F0135F /* REAPropsNode.h */, - 7864190D18C69C165E4170A9228073D0 /* REAPropsNode.m */, - B09F08E99E15DF1FE879D2AC71A89178 /* REASetNode.h */, - 6029EF04764BBAF67A5F5023B7E71C44 /* REASetNode.m */, - 85A2E9904AF9039027E40E6F9CEA6210 /* REAStyleNode.h */, - F272A6BAB8AED54A66BA10777835DDE1 /* REAStyleNode.m */, - 0F9D6A740E135D30F84B1EB60183C1F3 /* REATransformNode.h */, - A24B4F453E6120E6DF8BFB1B867D1375 /* REATransformNode.m */, - BF0B71563DD435BE29E990FD40338B37 /* REAValueNode.h */, - 20195AABBA45654FD56A21DFD0546CFD /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - 6CD08529E1A6BFCD19F56B9F0267EEE7 /* Pod */ = { - isa = PBXGroup; - children = ( - 9A0D97A2A2DCCBEF7F6915B645783FC3 /* LICENSE */, - 27C19ED383EC256AE0DEB299C4E9B08B /* README.md */, - 3403ED4FB9015FFC4874DA2C5F2703B8 /* RNConfigReader.podspec */, + 2631E8762A1DFC1BA0B0348CC1451B19 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; + 6A3D7D9823C968C937C778C265FA3671 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */, + 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */, + 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */, + D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */, + 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */, + 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */, + 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */, + 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */, + C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */, + B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + 6A6E0CB9BE2DAE8EFEA047CACFB426E7 /* Pod */ = { + isa = PBXGroup; + children = ( + 62745929D97AF49C979E30DA0E40E56F /* UMTaskManagerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6AADFBA24CBBB3224CFC77C9B15E7BF9 /* RCTRequired */ = { + isa = PBXGroup; + children = ( + D0B4C8DADC8526FA24BCCF04E3A4D41F /* RCTRequired.h */, + 287C79185501C07AAC29D07AC2CBD590 /* Pod */, + 41E0BB1617922B137ACF7366BCD5A04B /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + 6C3F0C275A0AC9862755F3B9A314D843 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */, + 8799C6D324F39F47AFE742FD3F5324C4 /* RNFastImage-prefix.pch */, + 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */, + 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; + sourceTree = ""; + }; 6D05F4D9D9905FAE82B3502119505EAB /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( @@ -14804,6 +14498,17 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; + 6DF023158562145E939F8A39A7E760CE /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */, + 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */, + B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */, + 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; 6DF29A607C0E6B2D634E6B437FCACFE9 /* Firebase */ = { isa = PBXGroup; children = ( @@ -14814,16 +14519,36 @@ path = Firebase; sourceTree = ""; }; - 6FCBF0FDBA34E8693E06DE4B8ABBBA1D /* Support Files */ = { + 6E93EE68EBA038DCE0B1E7B02D040683 /* react-native-slider */ = { isa = PBXGroup; children = ( - 204D00FFC11A7DBF8C7243D6A44FBE52 /* react-native-document-picker-dummy.m */, - 696AF49D8FA3B331D645CC3AD0EA0E37 /* react-native-document-picker-prefix.pch */, - B7B1B26952C9E6BFC7F36231BE4628E5 /* react-native-document-picker.debug.xcconfig */, - 976531FFAE322F1FC546C191937461F9 /* react-native-document-picker.release.xcconfig */, + AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */, + FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */, + D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */, + C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */, + 4B4555D39AB9955EEB4FB6021B2541B3 /* Pod */, + 6153446E70B9D23EE70C201E02BF89D7 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; + 6FBB216DC07131C87EEEF0DB4E44A2D7 /* Pod */ = { + isa = PBXGroup; + children = ( + C25E4150B5718F88A5B69F105C1D3A6E /* React.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 702CF7685D8DA608FFFC5196A4606846 /* Interfaces */ = { + isa = PBXGroup; + children = ( + 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */, + B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; sourceTree = ""; }; 7035C80412B0C4841897265AEB12BD04 /* Flipper-Folly */ = { @@ -15458,16 +15183,6 @@ path = "Flipper-Folly"; sourceTree = ""; }; - 7174472A16E3E69D971224697E72B636 /* Support Files */ = { - isa = PBXGroup; - children = ( - E5A83C25E5DDAD0AD3890E24684C6E3A /* UMFaceDetectorInterface.debug.xcconfig */, - 2FBCD2B4BD585A64AE4DF49B7BB67F9B /* UMFaceDetectorInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; 71A2BD1EFB778BF6CCB7D5B14F22767B /* MethodSwizzler */ = { isa = PBXGroup; children = ( @@ -15478,22 +15193,94 @@ name = MethodSwizzler; sourceTree = ""; }; - 71C805C7EB893CD45B1BDE5A1581465B /* RNFastImage */ = { + 721FBB9C55DB8A2C167B27192DEC6A44 /* Development Pods */ = { isa = PBXGroup; children = ( - 229795A32AA2151A170DE8C6F5E910E7 /* FFFastImageSource.h */, - A433A0364BA5242A77F3403965A71642 /* FFFastImageSource.m */, - 288BC9806E8A2497001C8A27589A399C /* FFFastImageView.h */, - 3D04337651E98287D8F25B9E2B933C41 /* FFFastImageView.m */, - D183125734277AC9BDA2F5AB4AC29A24 /* FFFastImageViewManager.h */, - 02EB752EFDBE6B042C0FD87F8089A5DC /* FFFastImageViewManager.m */, - 1C39633638470EDC25CA7433DC576ABD /* RCTConvert+FFFastImage.h */, - D9769EC6584CEA88699BE232D2938218 /* RCTConvert+FFFastImage.m */, - B0D8BF6F71D7FCE249C7317E0A01F5D9 /* Pod */, - B7B8AE35C0973DAB0C0C0BA1AA56141D /* Support Files */, + 7339638B7AEEF9AAAE93581B618D0BB4 /* BugsnagReactNative */, + 7AADAA82E7426993A74336EFA774F34D /* EXAppleAuthentication */, + C5E2E085289C40CB6D0809477B758A64 /* EXAV */, + 0E9178E942377A10EBB846D22282453C /* EXConstants */, + D90B3B1C85E811A1E6F6E2F46ECB939E /* EXFileSystem */, + EBDD451B1EDFE6C57384BADA0A2049F7 /* EXHaptics */, + 7F62E3271D235EE9FE7B658D6D7C80E8 /* EXImageLoader */, + 3BE342E0A8021B43EEFC27AD20514A9D /* EXKeepAwake */, + A4F7178970D321F93655D5010C1A8A0B /* EXLocalAuthentication */, + B9DEA0474651DC8C0EBD144C9DE73A73 /* EXPermissions */, + 30AE52FA523D8D6A827FFD5FB52BFA40 /* EXVideoThumbnails */, + B679771910F4A81551D1E38E4665DBEF /* EXWebBrowser */, + 3A0C474F99BC6200ADC8D79AC5758228 /* FBLazyVector */, + 2E5525E616D2F8D1B0EC85FFC0F951BB /* FBReactNativeSpec */, + 8650E049AE9AEABDF45E3A8FDA2772C4 /* KeyCommands */, + 6AADFBA24CBBB3224CFC77C9B15E7BF9 /* RCTRequired */, + AB75C7A1FBE5932918837FE11AD9BE23 /* RCTTypeSafety */, + E807A22ADAF010AC5DC5DA60FB950E40 /* React */, + 0C597FC495245608A7FA73A252F42EE6 /* React-callinvoker */, + 9CE656F4C732E4BFEC5E9D514824E861 /* React-Core */, + EC6A6B6D30F3D3E2AF0FD5D232FDAED1 /* React-CoreModules */, + DD9331D5DFCFE97933F9B50DC25D6CC6 /* React-cxxreact */, + F0BE9487BBA120FD4FC7D02B2CCD7DE4 /* React-jsi */, + 8D029EC7DE4AB620FDE06D2AE2BE0C6A /* React-jsiexecutor */, + B220566F9A71391BE56F0D1D6CE408E2 /* React-jsinspector */, + 183BD8E6F6390EA428681A786FFEFD1F /* react-native-appearance */, + B4A97F3E1D7799A2FCB2972DE3775727 /* react-native-background-timer */, + D2BB87ABF2D0379B8151A30B546665CD /* react-native-cameraroll */, + BA934D1C302756BA6C0B6C6E726E4B2B /* react-native-cookies */, + B9C9572617DA0B4487142D672E64C4FA /* react-native-document-picker */, + A0D690C389A7578A96C11AE72AF35FE2 /* react-native-jitsi-meet */, + C2996937B571F082A28491934DCCAAA6 /* react-native-mmkv-storage */, + FE1FED9E7D28F792F81F1C9089FE4B22 /* react-native-notifications */, + C35584EB1147A59FB5CC2BD6E2C40F2B /* react-native-orientation-locker */, + 3AA563231A0D24C0C9B5353FB4D8E514 /* react-native-safe-area-context */, + 6E93EE68EBA038DCE0B1E7B02D040683 /* react-native-slider */, + 0562D1950AC38AFF7452998284673FDD /* react-native-webview */, + F0A4DDB1922ACA2CEBF85FF611F351B3 /* React-RCTActionSheet */, + 18608142289F471E38808A8ADA158428 /* React-RCTAnimation */, + 4079B81494299F2709088983860799A4 /* React-RCTBlob */, + F0A9B2C00158E823B2BAB8A75F87F2D5 /* React-RCTImage */, + B1AB7A685813F87E6F10088EFF9D7EC6 /* React-RCTLinking */, + 87B44C786802D54011001CF3593AA227 /* React-RCTNetwork */, + E1A6A5527B8AF92949B3BD0A9F957A70 /* React-RCTSettings */, + D35F6BBC82BB0DF5ADA0BE825A2EEC71 /* React-RCTText */, + 56F60C7BA9A1211A3CCBB06A5AFF931B /* React-RCTVibration */, + 88EAC76CC77BEACE9FC56AE8F1780819 /* ReactCommon */, + C6F9029A910D8BC8C0163810A27C265E /* ReactNativeART */, + 60246F03CBD5215A4D05C4DBB9618114 /* ReactNativeKeyboardInput */, + B8740C3710BC2CD3EBFA3882D0B01D27 /* ReactNativeKeyboardTrackingView */, + EF2EE03D2AB8243D4370E0D9DDCF4077 /* rn-extensions-share */, + 3681B8E9250B0176070C8FA7BD0A82AB /* rn-fetch-blob */, + 2C0E986FD88567D520BD169C326DCAE4 /* RNBootSplash */, + 8F000F8109FE293C1E6C9C0F7074773A /* RNCAsyncStorage */, + 7BA21EE8A409F080FA366712FEA72879 /* RNCMaskedView */, + 1F7F2987322CB4729DF4E8D85FA57DC0 /* RNConfigReader */, + E1009CF6D720934DF51787A152623C92 /* RNDateTimePicker */, + 223AF0011C98B433401C8BB78CB6B065 /* RNDeviceInfo */, + B563E4387CB19E8B38671C4749768402 /* RNFastImage */, + B28E02485F4EDD492C77DC8A7F0663AF /* RNFBAnalytics */, + 93142AD3FFDCF47D39445C3EFFAD3441 /* RNFBApp */, + C4CE50BE886B79DBD9FE749BE209B9C5 /* RNFBCrashlytics */, + B3DC4F27F4448D79BC412C62FA9717B9 /* RNGestureHandler */, + D5C29F1A49DB36147E9D23E58FF89FD2 /* RNImageCropPicker */, + A7C40E40254E48BAE66811C865E24C74 /* RNLocalize */, + 8872ED4AB014463DC3D15E08FBA2E263 /* RNReanimated */, + 29B3BBC50E3B09CB178B41FC558C7014 /* RNRootView */, + 5D3EF85EEA74440667856A174A7CF90C /* RNScreens */, + B734537B266390DB30BD231BDC85C051 /* RNVectorIcons */, + 740011A901CE6286CEBD5422B595F2AF /* UMAppLoader */, + 4C815E6ABCAC10E450E2156C5EEB1236 /* UMBarCodeScannerInterface */, + 15E7B22CEC38BA408FEB9EEB7358BF0C /* UMCameraInterface */, + 086FFAFE6E7817323A848D025A831E5F /* UMConstantsInterface */, + F29688D79448210C180DF95E41A2AF8A /* UMCore */, + A8B98527ECC67F41B8F69CE6FFCA004F /* UMFaceDetectorInterface */, + 0F1F268623CB845A49D8DC1224E721B3 /* UMFileSystemInterface */, + 0EE6A6AC15B8BD82051644CF0955BEC4 /* UMFontInterface */, + 73E3485F483F1C6D18E3922E7E999941 /* UMImageLoaderInterface */, + DA0155A9707F7A7502C69CB1B71C31E9 /* UMPermissionsInterface */, + 68698F1A3F479AABB642766229EE31EA /* UMReactNativeAdapter */, + 9F01BA565B63C672890B6711D54BA225 /* UMSensorsInterface */, + CBA0DDEA86B5331F979D7D142AA9848F /* UMTaskManagerInterface */, + 02415FCC4611A85031296AE92CB66F81 /* Yoga */, ); - name = RNFastImage; - path = "../../node_modules/@rocket.chat/react-native-fast-image"; + name = "Development Pods"; sourceTree = ""; }; 72F070DC3360CE59390200E880493E96 /* FirebaseCrashlytics */ = { @@ -15710,6 +15497,20 @@ path = FirebaseCrashlytics; sourceTree = ""; }; + 7339638B7AEEF9AAAE93581B618D0BB4 /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */, + 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */, + 5CD12DD1F6F55AA3E814CAD4DBADA4FA /* Core */, + 2619A6AD0A3FACCB5F32907EC8215996 /* Pod */, + C6B3F1CB2CE57E47EF2743BD1A56EBB4 /* Support Files */, + DE38A7557C1E27EF1209860DC5428B02 /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; 7379C5E618F712834D08CA2D2A372235 /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( @@ -15720,6 +15521,30 @@ path = FirebaseAnalytics; sourceTree = ""; }; + 73E3485F483F1C6D18E3922E7E999941 /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 1DDFF192969E5F39CBE160C9D07FF0A7 /* UMImageLoaderInterface.h */, + EA39D57D4F1CC9E749FF3E4960E8446A /* Pod */, + 9DD3303727E2848889ABD26D094BEB27 /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 740011A901CE6286CEBD5422B595F2AF /* UMAppLoader */ = { + isa = PBXGroup; + children = ( + 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */, + F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */, + 702CF7685D8DA608FFFC5196A4606846 /* Interfaces */, + 03D9F122ECEA399083B288E7F8F10AD3 /* Pod */, + 8867F1CE22441F0419DD9EED0844ADC5 /* Support Files */, + ); + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = ""; + }; 74F82CFA2A7C3CE5AD9C85B71AB9CDE1 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -15728,46 +15553,51 @@ name = Frameworks; sourceTree = ""; }; - 7538AD418C2A3146AB86A1A40D5E3703 /* Support Files */ = { + 755308F53B9F113348A5EAEE5F791C50 /* Pod */ = { isa = PBXGroup; children = ( - E0648B63D0B8503BE5377E8A097A741F /* EXAV-dummy.m */, - E3A636C1DECE4A8CF11908EB51858650 /* EXAV-prefix.pch */, - 885590BBCA9B83685361583B2E7872B6 /* EXAV.debug.xcconfig */, - 0D7CD98AEEA1187B50BDCB55AF5A1795 /* EXAV.release.xcconfig */, + 4B7875F27F127CF8396F2E6645C875E5 /* LICENSE */, + A695A13C0E5F831730D8888E9514AD6B /* ReactNativeKeyboardInput.podspec */, + A7FFCC9D6C2098659C31E890B08D598B /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = Pod; sourceTree = ""; }; - 782C91C3E497C4F677A513A172C5240F /* RNScreens */ = { + 7557E182950A7CB57CDD1DED5664C8EF /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 48052199FB109BB2CA9986E3A7E67887 /* RNSScreen.h */, - B1C98D41BB9E5A3D8AEEAF9E071B93FD /* RNSScreen.m */, - C842F32AD724F6D4667AFB274A758ADD /* RNSScreenContainer.h */, - AA6CC12CAB9F7D42AFFE5C260CE9D327 /* RNSScreenContainer.m */, - EA30B3E3534E7C99F0BDD61195FF0B86 /* RNSScreenStack.h */, - 37D74F5DE2FE2876BBB51C45F8AF660F /* RNSScreenStack.m */, - B01388C67167AE4A22B47907EF5797B8 /* RNSScreenStackHeaderConfig.h */, - F9D65330F5C0E2E909C49FFBC5EABE82 /* RNSScreenStackHeaderConfig.m */, - 24D81D0FCF70F2D8A3E247F93D48FEEF /* Pod */, - 201E77D5FC9F2C560235FD1ED1E1C1D3 /* Support Files */, + 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */, + 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */, + 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */, + 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */, + D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */, + CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - 787A34C4EFC1A35ED025B88E3025EE6C /* RNBootSplash */ = { + 75B5D3DB25D99C310F2596DDBAE1D595 /* Pod */ = { isa = PBXGroup; children = ( - 0D5FF0E2960DD887E13264A53C9E651B /* RNBootSplash.h */, - 657B6B2F34BDF60C841519231966EDBB /* RNBootSplash.m */, - ED8F750E172FCF20CAFFD6225E4FE9D0 /* Pod */, - 4A07A8B994A51B441464141D757535B6 /* Support Files */, + 73AAE5A40DA4CC489A5CADE17D4DBFF0 /* React-RCTAnimation.podspec */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = Pod; + sourceTree = ""; + }; + 779D1B1C32EE8AEFEB2D4CF8428F167F /* Default */ = { + isa = PBXGroup; + children = ( + 36A706185249AAC0847D568C5A99C9F6 /* Base */, + 6A3D7D9823C968C937C778C265FA3671 /* CxxBridge */, + 819F5BF032F7AD3DF905F77ED002FB6B /* CxxModule */, + DCBDC2813D02CD43AAD20A4D4BBBB537 /* CxxUtils */, + EB375272F0B356B85856342BB99FF5D6 /* Modules */, + 0B747D2F93D5FC219BDA4941A4DE5D2E /* Profiler */, + 9834DD3FEFDCAD9ACA032885CD5E6E4E /* UIUtils */, + 21EC55C78E7F6C46959A8C3389FE911C /* Views */, + ); + name = Default; sourceTree = ""; }; 78965AEC7CFAC80BAA06DF24D74E3323 /* libwebp */ = { @@ -15782,18 +15612,21 @@ path = libwebp; sourceTree = ""; }; - 78D77B51F7631D8DD91DDD94CF33FD67 /* react-native-cameraroll */ = { + 7908FCA2BA37EA5CF7806B789C69518F /* DevSupport */ = { isa = PBXGroup; children = ( - 6CA872FA3C28D2567D18F599B2E803C4 /* RNCAssetsLibraryRequestHandler.h */, - 32B3BABE00CB6BFBB3CEC558EEE4D240 /* RNCAssetsLibraryRequestHandler.m */, - 4EB22447DEC2C63182FE809DBA4F07E4 /* RNCCameraRollManager.h */, - DB39F7717B3F63159A9F3F781F77AFB6 /* RNCCameraRollManager.m */, - 12CFD0A6988B06A43EBFD66D42BF7ADC /* Pod */, - FD9B78684BD6D7BEC5556E0675B93F3E /* Support Files */, + 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */, + FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */, + 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */, + 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */, + CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */, + A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */, + 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */, + 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */, + B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; 7931A39B705A95BB7866F27ABB98A3D6 /* CocoaLibEvent */ = { @@ -15854,59 +15687,135 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 79DA4B0DC38F49FEBC203D4AF085ADA3 /* Support Files */ = { + 7A2A83545F2FCF2AB9ED9BB7468E232A /* Pod */ = { isa = PBXGroup; children = ( - 23A9632B197DE52B6893CDF4433B3874 /* react-native-orientation-locker-dummy.m */, - 4D89C1DF8B188C624C01E6F765C88C23 /* react-native-orientation-locker-prefix.pch */, - 921FC6106D14A1CD680A9EB1105DEFCA /* react-native-orientation-locker.debug.xcconfig */, - 954E2BC9DFC6830F2330A56B71539E62 /* react-native-orientation-locker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; - 79EE92DE8CAAE37DDE8D80D18CF82A4A /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - 57042D1B513B28351EFC2CBE1C8F6841 /* RNVectorIconsManager.h */, - 4506792DF6D13BEBCD48163466D7CBF9 /* RNVectorIconsManager.m */, - 0D0B69E735E74794D60B50C6CAD4FF9A /* Pod */, - 1B32B2562EACCB04B4FCDBB0340FF006 /* Resources */, - EC3AD85EC7E12DE35203254882AAB04F /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - 7A1CE5493B9BFCC28F99C3D077E7BBAF /* Support Files */ = { - isa = PBXGroup; - children = ( - 2413DA9EFEEC8972DBD2B58DFD628088 /* RCTTypeSafety-dummy.m */, - 4DBA0F44A7FB7C0CB468984DF19119B1 /* RCTTypeSafety-prefix.pch */, - 1EB4CB7EDF1759CA3B2F2D09DE8993A9 /* RCTTypeSafety.debug.xcconfig */, - 3C690B73D92E233C3AAA4D4CBB2FF49B /* RCTTypeSafety.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - 7CF32F652C3F0FADAF549199C24950B5 /* Pod */ = { - isa = PBXGroup; - children = ( - 4B682F2098BA0DA46F5BF88BC2C537A1 /* EXConstants.podspec */, + 79F8ED89BD94F8EE6B1B828CD57F6CA8 /* LICENSE */, + 7F59A20232A82C3A1F2221D19BDCB4B9 /* react-native-appearance.podspec */, + 8807F8279AA9D8328C725CC8315E6FA9 /* README.md */, ); name = Pod; sourceTree = ""; }; - 7DCA7734FBA1B4B6A79275A5B15C17A9 /* RNFetchBlob */ = { + 7AADAA82E7426993A74336EFA774F34D /* EXAppleAuthentication */ = { isa = PBXGroup; children = ( - 6B26EB9C31336D94C378B02A673B0B72 /* RNFetchBlob.h */, - B53F20CFB59A32F72D9E730386FE3C7B /* RNFetchBlob.m */, + FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */, + 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */, + 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */, + EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */, + 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */, + 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */, + 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */, + F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */, + EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */, + F9D236E165E1EDACD5276D08F324B36E /* Pod */, + 30C150141518662107F5E0903C031AC8 /* Support Files */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; + sourceTree = ""; + }; + 7AB19570D7E63EBE5AB8517EBF3ECE0A /* Pod */ = { + isa = PBXGroup; + children = ( + 0A6004443115709FE18B9DDF74161C07 /* React-Core.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7AEB97E7662E5C9DB5488345FDBEF150 /* Support Files */ = { + isa = PBXGroup; + children = ( + 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */, + A5190ACF6DCC4A3587DB78E561CE8A86 /* UMPermissionsInterface-prefix.pch */, + 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */, + 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + 7B7A18D737CBA6070367193E0EBA60C1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */, + D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + 7BA21EE8A409F080FA366712FEA72879 /* RNCMaskedView */ = { + isa = PBXGroup; + children = ( + A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */, + 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */, + EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */, + 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */, + 0639E85480CFDC635BFECB55C3010BA0 /* Pod */, + D7D299527FC6E48E0616004EC49AB790 /* Support Files */, + ); + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; + sourceTree = ""; + }; + 7E36263F7E04F9867FF8C9CC2EF9B8F8 /* Singleline */ = { + isa = PBXGroup; + children = ( + FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */, + 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */, + 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 7E785726C5B8AF523BFB6D7C2B4BD8E2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */, + 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + 7E7F90CADCBC425302A36BC37847084E /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */, + 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */, + FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */, + D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */, + 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */, + D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */, + 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */, + A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + 7EFBFCE9A24CBD2BACDEAC662C42F6DE /* Nodes */ = { + isa = PBXGroup; + children = ( + AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */, + 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */, + FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */, + 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */, + A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */, + 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */, + 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */, + 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */, + 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */, + 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */, + CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */, + F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */, + DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; 7F0D6CCE718597B8302CF93DD952FD8E /* demux */ = { @@ -15930,163 +15839,282 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 7F9074E3E643F81EC8DAF515153D2B3F /* Support Files */ = { + 7F62E3271D235EE9FE7B658D6D7C80E8 /* EXImageLoader */ = { isa = PBXGroup; children = ( - F95309A50D0B8FD03C98F182AB2F9EFA /* RNCAsyncStorage-dummy.m */, - EDB679B7408FEBFD75515A67B94AD6D0 /* RNCAsyncStorage-prefix.pch */, - 4262276E6F7D763EDD664686FFCB8F02 /* RNCAsyncStorage.debug.xcconfig */, - 78AF35345782DF4B651DEB0A6F2267B9 /* RNCAsyncStorage.release.xcconfig */, + E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */, + 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */, + 0DD99175C117B9F22A4594D4F020BE73 /* Pod */, + B136CC6E2F397AB8AF475C4F14D06A43 /* Support Files */, + ); + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = ""; + }; + 80781ED6A52467FA288B316E0E11CC06 /* Support Files */ = { + isa = PBXGroup; + children = ( + 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */, + CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 81060F0862CF2DB47F27BCD266303F50 /* UMReactNativeAdapter */ = { + 8148DF8F2774B76439E5974C0FF1622B /* Support Files */ = { isa = PBXGroup; children = ( - 56EE8BD9D121CD7DCB1FF164E88971D6 /* UMBridgeModule.h */, - BBE290340596F1F52AE92BEBDE286666 /* Pod */, - 29DC1DC0CDC2CAFB8F9D5254BB4705DF /* Services */, - 5A365EA5E54995A3264FA95D40492628 /* Support Files */, - 0B03872CC23F0847454B8CD2100007E0 /* UMModuleRegistryAdapter */, - E272A1A3520A5A1DB9AD052B51D7F3BA /* UMNativeModulesProxy */, - 37CBDA91E67FE8AEE5C54F0866BE7A55 /* UMViewManagerAdapter */, + 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */, + BFD5E52AEA94E4656958C33DC62DF317 /* EXConstants-prefix.pch */, + A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */, + 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - 8358E327C3EC3E0F9038C7A6CAAD6CB6 /* EXSessionTasks */ = { + 819F5BF032F7AD3DF905F77ED002FB6B /* CxxModule */ = { isa = PBXGroup; children = ( - E7074DF42EF3AA040FFBFE468D6FEFCB /* EXResumablesManager.h */, - 86B8AE93FCB0DA330838A9B7B2B4EC14 /* EXResumablesManager.m */, - 7DC3C36EDAA167E488CB77FA21DB4FFE /* EXSessionDownloadTaskDelegate.h */, - 58703E196236054882BB78506DE68BA3 /* EXSessionDownloadTaskDelegate.m */, - B70AD1FD8919EF72D41C5964FBDBD118 /* EXSessionResumableDownloadTaskDelegate.h */, - B871B29AC1D901A7CD1B1F289AA76646 /* EXSessionResumableDownloadTaskDelegate.m */, - 6A507C0CAFFA75505C7E301739281A59 /* EXSessionTaskDelegate.h */, - F254117AE8A15EB507407D054BB90FAC /* EXSessionTaskDelegate.m */, - ACCEE285559DDD716A2D27C6E00242DA /* EXSessionTaskDispatcher.h */, - D0C13B453637A18D4F87E4C8159850DB /* EXSessionTaskDispatcher.m */, - 343C97A4BB16924994F8BF12F7D2E396 /* EXSessionUploadTaskDelegate.h */, - F6661BCD5A254890FB784D224325B3EF /* EXSessionUploadTaskDelegate.m */, + 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */, + 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */, + 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */, + A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */, + 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */, + 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */, + 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */, + 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */, + B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */, ); - name = EXSessionTasks; - path = EXFileSystem/EXSessionTasks; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - 83FB1526C88164D95DC8CA573B2D102C /* Pod */ = { + 81A0A887501720585A6ED4B8337DA728 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - F29CBD3B06580546B95DA7269303534A /* LICENSE */, - E064C9C93095EAA21BF99BFB200C3E41 /* ReactNativeKeyboardTrackingView.podspec */, - B461E480570A317749311A8AD88A6A93 /* README.md */, + 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */, + 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 820D723FBDD9BD36BFF1B95E38EA8864 /* Support Files */ = { + isa = PBXGroup; + children = ( + 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */, + 263274F1FC8F196D9F7C9F2C12F26D52 /* React-RCTVibration-prefix.pch */, + 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */, + 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; + 82650B58A2B1A3F501FACF130C6CC508 /* Pod */ = { + isa = PBXGroup; + children = ( + 81477035CACCD5F63C95CD0D19747EB4 /* LICENSE */, + 8FA1CAFA4C9B4AD3FE1691EE96767F7B /* README.md */, + 0DD269157CA10F350C3350C38D4D7F15 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - 841119E9AB1837E3AD5BD8743D3763B6 /* Pod */ = { + 82EB486A080868A0E58CE05C23E34B55 /* Support Files */ = { isa = PBXGroup; children = ( - BFBF0EC1567CA5D10C35591385CB18A3 /* LICENSE */, - BE9C5EFADBCB46EFB6044944B8C58683 /* react-native-webview.podspec */, - 60D6E618995733345A1FD4755B63FC2D /* README.md */, + 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */, + 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 86531FA87005098DCF86BD60B2C51108 /* React-callinvoker */ = { + 82F805433D39072A7F43BACF9CB9AADA /* Support Files */ = { isa = PBXGroup; children = ( - BA9B6BECB66C3A4A180BB0A52F06A371 /* CallInvoker.h */, - 0C472F4E0956BBD5F6FA0B561CC6930A /* Pod */, - F53F758E25AFD0D01CFADE3198DAC339 /* Support Files */, + 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */, + 0810F33036DAB18C702F91D1600E5DB6 /* EXVideoThumbnails-prefix.pch */, + 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */, + E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */, ); - name = "React-callinvoker"; - path = "../../node_modules/react-native/ReactCommon/callinvoker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = ""; }; - 88E155776967AFBA5159F3F31907293C /* RNDateTimePicker */ = { + 831C3F43486ABC5E935971A6CFF3ED91 /* Reporting */ = { isa = PBXGroup; children = ( - C6FA0DEC6C9C14D9F269C14ADED531BD /* RNDateTimePicker.h */, - 6259AF9D0A2989D383A979E63518BA11 /* RNDateTimePicker.m */, - 2BF85799A90CD0293E64FAF057EEF5B7 /* RNDateTimePickerManager.h */, - 82D0E220F2D5B5E0676A13272BDB5264 /* RNDateTimePickerManager.m */, - 931E462F656C6C43C16801E6BB8E67CB /* Pod */, - 2B4D84FC44F6B4E751A1567926D8A40B /* Support Files */, + 3DF0792DBFDA3DE264CAB836696B5E3C /* Filters */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = Reporting; + path = Reporting; sourceTree = ""; }; - 88FA18F3FE97490F1DC84C64DEB2C30B /* vendor */ = { + 86289DA29472A446FE7B07E68E144B26 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - DD7B45BB1C5D0486FF55AE4272EC2F0B /* bugsnag-cocoa */, + 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */, + 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */, ); - name = vendor; - path = cocoa/vendor; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 891F2E1985C176E55778D25C0528DE3E /* EXPermissions */ = { + 8650E049AE9AEABDF45E3A8FDA2772C4 /* KeyCommands */ = { isa = PBXGroup; children = ( - E72DAF582A3F9EA663F151591F59DBCC /* EXPermissions.h */, - C9D36648AFB735731F48A6E15DC61D34 /* EXPermissions.m */, - D415DD9D2DD55057176B5FB8CB2FB45B /* EXReactNativeUserNotificationCenterProxy.h */, - FB90AE073DAC558732F8DD918B1CBA2F /* EXReactNativeUserNotificationCenterProxy.m */, - 3E92FEC63507321C98A4EBEE3CF1F106 /* Pod */, - B6A96DC31D58BA04602E6857E52B75A0 /* Support Files */, + 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */, + 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */, + 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */, + 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */, + F0FAFB50C1D05826529E858FF0FCFA86 /* Pod */, + D73BBA1C2866858577B8A74420A9B8E4 /* Support Files */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; - 8A6B77506B10C52E72C1397A9F67DEDA /* Pod */ = { + 86A09457C4E3C8214C2E108E5717EAFD /* Tools */ = { isa = PBXGroup; children = ( - 557F17AC0F84D455AD2593C1E72F528C /* BugsnagReactNative.podspec */, - 209714EB0688ADBD2F3F36CCB41E0EA3 /* LICENSE.txt */, - BC4A76B1E6DF63C0C93A15A80B67D774 /* README.md */, + 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */, + 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */, + AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */, + BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */, + EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */, + 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */, + 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */, + 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */, + 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */, + 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */, + F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */, + F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */, + 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */, + AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */, + D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */, + 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */, + EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */, + 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */, + 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */, + 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */, + D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */, + 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */, + C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */, + 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */, + 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */, + FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */, + C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */, + 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */, + FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */, + 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */, + 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */, + 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */, + 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */, + 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */, + B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */, + 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */, + 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */, + B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */, + D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */, ); - name = Pod; + name = Tools; + path = Tools; sourceTree = ""; }; - 8A73FE1987F29BA2DB3D32AA5C69B759 /* Recording */ = { + 86A332B4C12AD8F3923A6894535E7C7A /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 0DED45358B07E766205F3EFBB3053004 /* BSG_KSCrash.h */, - E597A8CB5D80748F4FD1DA78B3D5B256 /* BSG_KSCrash.m */, - 99E1A96874575E082922F6133E50001E /* BSG_KSCrashAdvanced.h */, - 66A1B5C9B5A580EEC6213EF295CBBE5A /* BSG_KSCrashC.c */, - E20B645CCEADAF83BB1F549F39537571 /* BSG_KSCrashC.h */, - DB4B8A32ED6D51E6B3FACB12221AEBC2 /* BSG_KSCrashContext.h */, - BEBE73AC339716382E27B6AA050669E4 /* BSG_KSCrashDoctor.h */, - 6D23AD3DCEE35A3E5AF54D2BF5E009D1 /* BSG_KSCrashDoctor.m */, - 36A2438BE060132EF4A25AD96F16032F /* BSG_KSCrashIdentifier.h */, - 1B55B0D7000F8DE360C1D0E6DC17C356 /* BSG_KSCrashIdentifier.m */, - 4D4D2FCCB5279DBDC4DFB5C5EFB354AD /* BSG_KSCrashReport.c */, - B1EEFA2A7AA56DA2A2188C134C29F3C0 /* BSG_KSCrashReport.h */, - 91D516947EFE99A8E6D7374748A59FEC /* BSG_KSCrashReportFields.h */, - 3FF32756FE29546B636CF6D7509CBA3A /* BSG_KSCrashReportStore.h */, - DE31D1E870D416A6780A3C863F5C2876 /* BSG_KSCrashReportStore.m */, - E2145A2F41EDC5234E880BB745F19CD2 /* BSG_KSCrashReportVersion.h */, - 035993335400665A624E09234BC6A986 /* BSG_KSCrashState.h */, - 6D910FDBCBA0953E7787AE9BA1ECE110 /* BSG_KSCrashState.m */, - 3830B31BCB6F903CACA5A51999979FD4 /* BSG_KSCrashType.c */, - 0A02D6EEBA4ADB85419B2C1B4B2C6C8F /* BSG_KSCrashType.h */, - D76541F0D3782A99778EE6EF0B51FE2E /* BSG_KSSystemCapabilities.h */, - 43077A161AD964BE047EBD2928AA5E45 /* BSG_KSSystemInfo.h */, - C4A91A6C4526F1A2288089FA57791041 /* BSG_KSSystemInfo.m */, - C4C7E5F3C9D0EB2D75150B27CBD2976E /* BSG_KSSystemInfoC.h */, - CFE6F7D249161B009BC5C083B4B07034 /* Sentry */, - 2543A6547BFD9B1FB6629DF3A3F400F8 /* Tools */, + 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */, + 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */, ); - name = Recording; - path = Recording; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + 86B1D2B7F6354DE7E902FE2FC20B7B5A /* platform */ = { + isa = PBXGroup; + children = ( + F5AC1BF6EBB1BC08684BA28CE1424A8A /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 87B44C786802D54011001CF3593AA227 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */, + 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */, + 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */, + 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */, + 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */, + CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */, + 4CF351501AC02B15B49C5526787A38A9 /* Pod */, + B721D6049C917C7D59E061A5C064ED5A /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 880DD25C8EB60CF5AFF741B06575E376 /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */, + 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + 8867F1CE22441F0419DD9EED0844ADC5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */, + 53189377CC587CA423403F74E0A8613D /* UMAppLoader-prefix.pch */, + B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */, + 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + sourceTree = ""; + }; + 8872ED4AB014463DC3D15E08FBA2E263 /* RNReanimated */ = { + isa = PBXGroup; + children = ( + E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */, + 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */, + E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */, + BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */, + EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */, + 579C0D12109D228082DB3ACBC303F6A4 /* Nodes */, + 1F56FD3B29F35D002A0C8277CCB2BB63 /* Pod */, + DD762FA6B790835B10AD4A5F866A4E79 /* Support Files */, + 1FF9C11DEA5FB5AC07C68242C7CA9432 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 88EAC76CC77BEACE9FC56AE8F1780819 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + 2F25A4A6B7D83C7454DBFD76BE418B8E /* Support Files */, + 359DC2B57FFF4A2F4C8CAD4E5503C7D8 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 8A7DD642CB20DAEEF4623FAAE0E192EC /* Support Files */ = { + isa = PBXGroup; + children = ( + 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */, + 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; 8B5D3D6A59DDA44D0193F5E8C4D284FA /* Support Files */ = { @@ -16102,29 +16130,6 @@ path = "../Target Support Files/TOCropViewController"; sourceTree = ""; }; - 8BCA67AF31B77264841D346C92E3D257 /* React-jsi */ = { - isa = PBXGroup; - children = ( - 5ADF6BB4D04AF57DBA445CF07AED2ECD /* JSCRuntime.cpp */, - 1179AC3200C75DDB3748022B45D9D631 /* JSCRuntime.h */, - FE5667F1FCDBF19AAD9C1BE5DAC84964 /* jsi */, - 2040A008705392FF6F4E90804D8C9EFC /* Pod */, - B225B38E7DF0D6D5427C7628A3FBD2C6 /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - 8C2DFF161BAEC4741EEE8DE4726CE1E5 /* Pod */ = { - isa = PBXGroup; - children = ( - F1EE1F056116A55804C2929C605C1540 /* LICENSE */, - BF42C41C1F4894FC7CC6648FE069D9A2 /* README.md */, - 44700FC89A7A4C017D46E065805CCBEB /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 8C76EE0DDC78CD80396D1EE857BBF1E8 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16137,61 +16142,18 @@ path = "../Target Support Files/MMKV"; sourceTree = ""; }; - 8CD93845B9C5E0E10970F39310E34C0A /* Pod */ = { + 8D029EC7DE4AB620FDE06D2AE2BE0C6A /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - CA12D9F4E171EF07C17F87E3A0AB13F5 /* LICENSE */, - 762ECF139423D2CA6E2716D3D73CBA65 /* react-native-safe-area-context.podspec */, - FCC2076410890F210AF7657358503B83 /* README.md */, + 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */, + 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */, + 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */, + 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */, + 546B02590E0D91DFDC6CCFF7A174AEA7 /* Pod */, + E53604BCCEDA8D0736C10B7BE25BCFF4 /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - 8CE538709A7C40174CFCEF7241C57466 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - 353340E8757DA01E09290DC9AA2D119B /* RCTAnimatedImage.h */, - 2C95887DF54710521A88FD294C10C35F /* RCTDisplayWeakRefreshable.h */, - C0BB513211A6DC708618C88791528FC0 /* RCTGIFImageDecoder.h */, - 2BF111DB0426A996E4ECBDE94FE5C87E /* RCTImageBlurUtils.h */, - 096AEDC4B5F11BBEA4D0BF93D2818C26 /* RCTImageCache.h */, - C54B4F6C51C0330DFBC714F49CF6D0C1 /* RCTImageDataDecoder.h */, - E7E52F36B031DE941983559CDB42F562 /* RCTImageEditingManager.h */, - 1FD229D8F017FE2ED27E59017179E3D5 /* RCTImageLoader.h */, - 7FA0EF3446FDDC7C7A7A5106D12014C3 /* RCTImageLoaderProtocol.h */, - 557AB26BF7FC1B2780D2CC3C15CFB7F2 /* RCTImageLoaderWithAttributionProtocol.h */, - 3B678A2A5D006AEFD812E41736A0304D /* RCTImagePlugins.h */, - C07F5F0682EB28343DD522BCF81D34AB /* RCTImageShadowView.h */, - C1025EE494F9E26A66776E07BBFF698E /* RCTImageStoreManager.h */, - 89E372F16A6F0282078F209A0A3DE776 /* RCTImageURLLoader.h */, - 0B95211535CC9AFF6A4B2924A06C1192 /* RCTImageURLLoaderWithAttribution.h */, - 5A93CBC6237D460CD3B25CF466DD5A78 /* RCTImageUtils.h */, - BA8089CC8AC382F32DD4884D9040CF95 /* RCTImageView.h */, - D4B5423DDC5C2605A11EEB341CAB88BD /* RCTImageViewManager.h */, - 405A5F68DBF642E8599AC1FF863B1E75 /* RCTLocalAssetImageLoader.h */, - C1195969C1029363F953960E5A831B29 /* RCTResizeMode.h */, - EF4A1368E40CE867E264AB6291AF4258 /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - 8D14943EF432287C46E8C51EC3672BF4 /* DevSupport */ = { - isa = PBXGroup; - children = ( - 531B923E41AF2BA57A85EB8EEC8604E9 /* DevSupport */, - D55D53C4B284BB9B936CE39954F57C10 /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; - 8E63EB5000FACCF4BC2C6ADDD7CA127D /* Pod */ = { - isa = PBXGroup; - children = ( - 662B84B153AAE768AE6BB2B488403157 /* LICENSE */, - 41D4ED8E1F778F8232320E09D85E217E /* react-native-mmkv-storage.podspec */, - DEC0AFF091F5D6BAD95DB9D16FF96331 /* README.md */, - ); - name = Pod; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; 8ECB27809797ED53D46CE26B74E1389A /* FKPortForwarding */ = { @@ -16204,24 +16166,44 @@ name = FKPortForwarding; sourceTree = ""; }; - 8FF260B924AF551C9FB2E2B45B362B1D /* Pod */ = { + 8F000F8109FE293C1E6C9C0F7074773A /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - F43A6DDDE3105B3D9543893DD1136190 /* UMConstantsInterface.podspec */, + 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */, + F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */, + D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */, + DBFEF84851C94D8F9D9E178D5CDD5327 /* Pod */, + 2E3A1DF2DA14FB3666776C4CB4B08633 /* Support Files */, ); - name = Pod; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = ""; }; - 906B4A3879046B9D5A41AC19AB1AA3A1 /* FBReactNativeSpec */ = { + 8F464B8A277C64EFD4C6E529DECC8330 /* TextInput */ = { isa = PBXGroup; children = ( - C0E9CCF0D047077A12B754DA7AFC74FD /* FBReactNativeSpec.h */, - 8976EDD7CD940020697DD076A18E5CF6 /* FBReactNativeSpec-generated.mm */, - A47E40AA7797ABE87018A3CC37B3B2DA /* Pod */, - 5A2CB0F172E303452A4AEC23ABFEEC1A /* Support Files */, + 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */, + 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */, + 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */, + F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */, + 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */, + 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */, + 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */, + 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */, + F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */, + 638A5498CA549D052BF54A0DD032BB90 /* Multiline */, + 9843954947EAC85E371AC52E236D5BAB /* Singleline */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + 902E19639B871BC67EB4FF4E4F4EA39D /* Pod */ = { + isa = PBXGroup; + children = ( + CE1F06876D0CC4BBA737075281BD9C98 /* React-RCTActionSheet.podspec */, + ); + name = Pod; sourceTree = ""; }; 91222BD6062AEB28CA1E594E98BCC24F /* Support Files */ = { @@ -16241,15 +16223,56 @@ name = CppBridge; sourceTree = ""; }; - 91D801C2A6870BDCE13F194D71A2F2A8 /* UMCameraInterface */ = { + 9184F2D9EFBD9839DF678BEC01488F70 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 9C7CBF2C8CA3576682FD6A03B211A1A0 /* UMCameraInterface.h */, - 4BC4C85E7BE1E7E753B6932F5DAC1C0D /* Pod */, - C9A4A98A9683589BFF8FCA35116DBEEA /* Support Files */, + CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */, + C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */, + 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */, + 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; + sourceTree = ""; + }; + 9231E46D5E8928E64E224D0EAF7B3FFE /* RawText */ = { + isa = PBXGroup; + children = ( + 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */, + FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + 93142AD3FFDCF47D39445C3EFFAD3441 /* RNFBApp */ = { + isa = PBXGroup; + children = ( + 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */, + C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */, + AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */, + 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */, + 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */, + 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */, + BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */, + 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */, + E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */, + A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */, + 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */, + 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */, + F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */, + AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */, + 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */, + 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */, + 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */, + A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */, + FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */, + A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */, + D526C46309BDFACBF5E631780994DA9A /* Pod */, + 42453C13279AC297B17665AB79878FF7 /* Support Files */, + ); + name = RNFBApp; + path = "../../node_modules/@react-native-firebase/app"; sourceTree = ""; }; 931B1399964B6232B293D86F2DD24E61 /* Pods-NotificationService */ = { @@ -16265,55 +16288,83 @@ path = "Target Support Files/Pods-NotificationService"; sourceTree = ""; }; - 931E462F656C6C43C16801E6BB8E67CB /* Pod */ = { + 937845A46CC759D9F8C191E92F949C72 /* Support Files */ = { isa = PBXGroup; children = ( - 17879FA2A42008A8E14BE91ECA9E0061 /* LICENSE.md */, - A2A6B58C5A357BCAA4C1DA66D60110E9 /* README.md */, - 0A37801D5D5C10203C0A9A7C61F01BD0 /* RNDateTimePicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 937797329BBFBF34F805DBF3C98A98AD /* Support Files */ = { - isa = PBXGroup; - children = ( - A0BB518C14A15A56648290B177BAA21E /* UMCore-dummy.m */, - B0313497B41AF83839A837E1606711D2 /* UMCore-prefix.pch */, - CD9205A0E74FACA100CA0265A0E01417 /* UMCore.debug.xcconfig */, - 7D7A972B2B3C3AD9CB0E366B9CFFFDA5 /* UMCore.release.xcconfig */, + AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */, + E51D7295706B24C7E51D40AC2374D6C1 /* EXAV-prefix.pch */, + 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */, + 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 9412EAAD1AB14E780390F8D16DBDC218 /* VirtualText */ = { + 9461B2310AC4F6C5B28C8ED3AA01D3D8 /* Pod */ = { isa = PBXGroup; children = ( - 0175BBE807D7723BB3EEC10991D78E26 /* RCTVirtualTextShadowView.m */, - 0DD536932BBA8A8E593665932ED32688 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; - 9438EC0441229933D79BB328CD2205BD /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - 2315C3C190483488A8F4D8ECAE972147 /* RCTSettingsManager.h */, - E4070477C96CC71FD35538207451BC1D /* RCTSettingsPlugins.h */, - ); - name = RCTSettingsHeaders; - sourceTree = ""; - }; - 94FCDCDEF1F05D63F8C272DF0CCB328D /* Pod */ = { - isa = PBXGroup; - children = ( - A617C1D6C8CA8A58A8E15995D33F0A27 /* EXAV.podspec */, + E115A5CC8349D2EBB53C173598E174B5 /* LICENSE */, + E65F9FE191E8F5252BAC81336BB2BE24 /* README.md */, + 2B71EBC4ACEA997915594817EF22B58D /* RNConfigReader.podspec */, ); name = Pod; sourceTree = ""; }; + 94A89412E5841A0D0B040C6409F6E90A /* Support Files */ = { + isa = PBXGroup; + children = ( + 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */, + 52CB8EBF34160CEFC2CB2675D6FB6492 /* UMReactNativeAdapter-prefix.pch */, + 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */, + B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + 94B2B74240F5AECB6A1F0A2C293FF151 /* Pod */ = { + isa = PBXGroup; + children = ( + 2E5FC021907B516E89D8CC0F3E05853E /* LICENCE */, + 280A32BBCE7F8146256E7F950329E303 /* react-native-cameraroll.podspec */, + F45D686FDB1D5BFC093C6D094A0ACCE5 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 95DB2161F10DC2494DEE86BB76F251D5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */, + EB518DB5516FA7D8B25BCC8C68E58B25 /* React-Core-prefix.pch */, + 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */, + CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */, + BA173522044DEE0F36BE18B95FF4FD19 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + 95FE45F304643FC93B8ED23BA09F8AB5 /* Pod */ = { + isa = PBXGroup; + children = ( + 652F3A596F67FFC587579C04CAC911CA /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9658D76025EDC3DB86FC95FE8BAE2B13 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */, + 7B458DF706EDC0CE70F50A6C1CF721FC /* react-native-orientation-locker-prefix.pch */, + 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */, + 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + sourceTree = ""; + }; 96DF5A7A1C0F27BFF26BC82FFB899D12 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16336,67 +16387,46 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 97E86E16C3F688732AB1AE918E00FF19 /* Filters */ = { + 980AC0D48DFE00EF6DBF78B8CAC4CC3F /* Support Files */ = { isa = PBXGroup; children = ( - 1A295D416EF762CCB840AD69F9BE8C33 /* BSG_KSCrashReportFilter.h */, - 1F14516FCAE5971F25D6B28FF89904B6 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 97F252CBC0945878074FBDF4A601F8AE /* Support Files */ = { - isa = PBXGroup; - children = ( - F4072B6E48E40919D7ADE93214CAB1BD /* React-jsiexecutor-dummy.m */, - EF9EFB47BD87AEDC82954981E5C42EB4 /* React-jsiexecutor-prefix.pch */, - 9BD6647C5614301E99E5512C1AABBCA7 /* React-jsiexecutor.debug.xcconfig */, - 847A8608F349EE5ECE1951620E181DF4 /* React-jsiexecutor.release.xcconfig */, + ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */, + 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 997727FBDB496898E782BEDDC74E9AB1 /* Support Files */ = { + 9834DD3FEFDCAD9ACA032885CD5E6E4E /* UIUtils */ = { isa = PBXGroup; children = ( - 21BA93BC1A1FF706F6A5B7560A334F79 /* react-native-background-timer-dummy.m */, - 363D49E2C079F69A275961BFEB3C0E96 /* react-native-background-timer-prefix.pch */, - 1C4D03CF8F014052559FCCE94B1A0E4B /* react-native-background-timer.debug.xcconfig */, - A0A1F76A0EAE8C915823DABA35B9568F /* react-native-background-timer.release.xcconfig */, + 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */, + 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 9AB49BDB937059ED353352AC82DE7202 /* Nodes */ = { + 9843954947EAC85E371AC52E236D5BAB /* Singleline */ = { isa = PBXGroup; children = ( - 747F222DD33F12CE7143A62F540D6332 /* RCTAdditionAnimatedNode.m */, - 3D1F43611A98AD82B4CBB574250B56D5 /* RCTAnimatedNode.m */, - 8BEA6863779A6BE3FEFBF103D066C84E /* RCTDiffClampAnimatedNode.m */, - 16BB04F0758A5294AE1EA9874ED33436 /* RCTDivisionAnimatedNode.m */, - 2B66533D254EEE8688D4D571BF460A85 /* RCTInterpolationAnimatedNode.m */, - 5225BF2A7F7B61EF9A2558B51FA60513 /* RCTModuloAnimatedNode.m */, - 7D829935540EC256843A70CCA787173F /* RCTMultiplicationAnimatedNode.m */, - D9A5A4E8D11F66DBC9985E2385084172 /* RCTPropsAnimatedNode.m */, - 277CEA201910B02DC5F2E127BD9E8BD8 /* RCTStyleAnimatedNode.m */, - 7FECA2743FEC6FE8A9D991B3ED16B2C5 /* RCTSubtractionAnimatedNode.m */, - 0B1D089D8185A19388DABECB50C95D0E /* RCTTrackingAnimatedNode.m */, - ABA7A6545454AD458FE43873123D5191 /* RCTTransformAnimatedNode.m */, - ADF23AA1A985FE7AA0EA26D6310EF410 /* RCTValueAnimatedNode.m */, + 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */, + 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */, + 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */, ); - name = Nodes; - path = Nodes; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 9B2D1835EBDA34CB52FEC17919940BE3 /* turbomodule */ = { + 98AAB1644CD3447E74BD128066C60ED2 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 9EEE5BCE83451F59A0B227EACEE27250 /* core */, + 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */, + DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */, + A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */, ); - name = turbomodule; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; 9BB451EB821AB63047B31B9C102AC3B8 /* FirebaseCoreDiagnostics */ = { @@ -16413,35 +16443,199 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 9BCB41BC7E2C6DC2E49894297BAC1D33 /* RawText */ = { + 9BB6234C987718DC13F14E841155ACC7 /* Support Files */ = { isa = PBXGroup; children = ( - B140C5D2948B7E35261CEEAEDEEC6EB6 /* RCTRawTextShadowView.m */, - 60A921CF66497392C9B959725B563EC9 /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 9BEA1A4580CCA547B4039795DF6E4B15 /* Support Files */ = { - isa = PBXGroup; - children = ( - D1EBC0B183795115E28663C823648369 /* React-CoreModules-dummy.m */, - B00050AF49AFDB58E7DFC270D4E6C1FB /* React-CoreModules-prefix.pch */, - C727DE46322E8CD40BEE18F03F9DF365 /* React-CoreModules.debug.xcconfig */, - 2AAC17BCE6AE3690326EDC7EC3714D56 /* React-CoreModules.release.xcconfig */, + E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */, + 18789E868EC609FF031C4FF9E7A205F2 /* React-RCTSettings-prefix.pch */, + 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */, + 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 9CD733555DB7611EF0EB7D8DCEE012D9 /* RNConfigReader.xcodeproj */ = { + 9C2BB1CC9390462F2FB8D3EFF60A138F /* Pod */ = { isa = PBXGroup; children = ( - 5342D7D17B1B53BBD355BC0198B57E68 /* project.pbxproj */, + C9E1CC4BE8E54D8BD85A389E56BC06AD /* EXFileSystem.podspec */, ); - name = RNConfigReader.xcodeproj; - path = ios/RNConfigReader.xcodeproj; + name = Pod; + sourceTree = ""; + }; + 9C600B3CF720D09E7726049BA09B2063 /* Pod */ = { + isa = PBXGroup; + children = ( + DC74CADD05342A7985DBEA1B0FBB5E10 /* LICENSE */, + DFB02A2A091BEC65DFC9E8B38C00DCA8 /* README.md */, + CE7D59CB5FF71F5B1A541F69ABFAC75C /* RNBootSplash.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9C72C7F8142B99D6AA06ECD694BADE6C /* Text */ = { + isa = PBXGroup; + children = ( + DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */, + C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */, + E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */, + 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + 9C96ADE704FBC758CF1CCA401EA0546C /* Products */ = { + isa = PBXGroup; + children = ( + FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, + 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */, + E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, + 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, + 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, + EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 9CC3BB3D2AB4DF10C475BE71E361083C /* Pod */ = { + isa = PBXGroup; + children = ( + A291C68FDF6EABA33847A4B7BDEBD91B /* React-RCTLinking.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9CE656F4C732E4BFEC5E9D514824E861 /* React-Core */ = { + isa = PBXGroup; + children = ( + 26A545BB4521618A4411ADB819D81B97 /* CoreModulesHeaders */, + 779D1B1C32EE8AEFEB2D4CF8428F167F /* Default */, + 0A5D767935971C34A1E5E42439FC120E /* DevSupport */, + 7AB19570D7E63EBE5AB8517EBF3ECE0A /* Pod */, + CECEFD6E271041A8ABD3586765BFE9D6 /* RCTAnimationHeaders */, + 6110DC87D643E5BB776753A2E2DA0B19 /* RCTBlobHeaders */, + 1782E4C0BAEC9779F492763333C34598 /* RCTImageHeaders */, + 880DD25C8EB60CF5AFF741B06575E376 /* RCTLinkingHeaders */, + 9DFAD1AEDEA1032D854F69609362D4B0 /* RCTNetworkHeaders */, + 4C4D46873C92A0CC07977C1F66AED631 /* RCTSettingsHeaders */, + 48B1E22D6494F8D9D78120D3A760E5EC /* RCTTextHeaders */, + 6670945F244007AF97B3B4793D972E83 /* RCTVibrationHeaders */, + 6DF023158562145E939F8A39A7E760CE /* RCTWebSocket */, + 5EEF917987BCC8AEF5CF5061469CE45C /* Resources */, + 95DB2161F10DC2494DEE86BB76F251D5 /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 9CF207A6C9D805FD54018B5CADB2DB4E /* Support Files */ = { + isa = PBXGroup; + children = ( + 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */, + 7D4E4DC5E49587673355D1AEB0FBD285 /* EXKeepAwake-prefix.pch */, + 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */, + 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; 9D05350BC834DB12AF6A7AC48E944276 /* UserDefaults */ = { @@ -16453,82 +16647,112 @@ name = UserDefaults; sourceTree = ""; }; - 9D0E85E21FE4F19C35E4E86C4DD66AEE /* Support Files */ = { + 9DD3303727E2848889ABD26D094BEB27 /* Support Files */ = { isa = PBXGroup; children = ( - E9273E9670000B4B9C6FFB990562C1AD /* React-RCTImage-dummy.m */, - 051D7FEC280ED28F2257D656EC2CBDC8 /* React-RCTImage-prefix.pch */, - ACA2C7C5FB8BCE12FC69745BA4FA52B4 /* React-RCTImage.debug.xcconfig */, - A167F190E4ABC5AC1491C59227F50A0D /* React-RCTImage.release.xcconfig */, + DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */, + D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 9EEE5BCE83451F59A0B227EACEE27250 /* core */ = { + 9DFAD1AEDEA1032D854F69609362D4B0 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 5A8A7A840DF2299EAB32476327A690FA /* LongLivedObject.cpp */, - 4259D4B9966E495079C85B5204D7C926 /* LongLivedObject.h */, - 5C64C15D6BC79FCF5CCD31A1C9B16810 /* TurboCxxModule.cpp */, - 019C9C9440A1FDE2E3F1482D54AE8B55 /* TurboCxxModule.h */, - D28E2B05F53F7414E0A3FB1A75786191 /* TurboModule.cpp */, - 560B5DF42CBDBD47BA0CDFCE162BB17B /* TurboModule.h */, - C16E9D24AD6BBD4C183C61CCD2EC62A0 /* TurboModuleBinding.cpp */, - 0472923F99A725E5E616978332FE5562 /* TurboModuleBinding.h */, - 08D2C7A96906240E752EFEE9AA160FF6 /* TurboModuleUtils.cpp */, - B839FFE31FBF5BBCAA74912A4442C4E0 /* TurboModuleUtils.h */, - 376D7A011BAD27BC82F20E182757CCE0 /* platform */, + CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */, + 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */, + C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */, + 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */, + FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */, + 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */, ); - name = core; + name = RCTNetworkHeaders; sourceTree = ""; }; - 9F34A4F0553DAF8CE8AD98DB893DAACC /* Pod */ = { + 9ED079D851167E88732EDE5AF46C7F67 /* Pod */ = { isa = PBXGroup; children = ( - F12A9848E17EF8C8DF17F14293F29169 /* React-RCTLinking.podspec */, + 9A67BC0E541A9D25F6A5A49A2496768B /* advancedIos.md */, + 328B0CA65EF2262F638651C7A6AA1AFF /* installation.md */, + BC488A23661459D78B3AAE07E520B0F0 /* LICENSE */, + 2603074FEBFC477C3D117AB5C694CAD9 /* localNotifications.md */, + D856AB5537848570AF1BB8E671AD202F /* notificationsEvents.md */, + EBAA76A623C8B547437FD0117AD7E1BC /* react-native-notifications.podspec */, + BE073D0DD5ECA301ED61E24C790ED6C3 /* README.md */, + 81118BF48D985BBD3F4B1B670E8F2DA7 /* subscription.md */, ); name = Pod; sourceTree = ""; }; - A04865C6D128F5684FCE9507E3CE8F30 /* UMSensorsInterface */ = { + 9F01BA565B63C672890B6711D54BA225 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 06B6D697CBAC069824A8A004020D0CD0 /* UMAccelerometerInterface.h */, - 6DDE655359A15D05BE109AF8F6600227 /* UMBarometerInterface.h */, - 701FA21003D5AFD9D9E56FEE8925AA7A /* UMDeviceMotionInterface.h */, - 01FD86F92514D9D7B6FAA092323D8480 /* UMGyroscopeInterface.h */, - 2B0116198CC46BB0EE518A7A397E5DD8 /* UMMagnetometerInterface.h */, - B368B9AAE410585F75A227CB8DBD051D /* UMMagnetometerUncalibratedInterface.h */, - FED089022FE7A38C306139EAA2423C06 /* Pod */, - CD3321590AC0F4438549E19563DB221B /* Support Files */, + 7DF188500B821D2A3F9FE8B0BBE2C438 /* UMAccelerometerInterface.h */, + CFCB57D8AD754C62A592AD22F73AD0C9 /* UMBarometerInterface.h */, + 7BCF154E10A7B538805D44D3345C4AE2 /* UMDeviceMotionInterface.h */, + D9F6F69292C2F6F64608AA02822B5C99 /* UMGyroscopeInterface.h */, + B5A0E639535A43CD1EE73AE08E99399F /* UMMagnetometerInterface.h */, + 0F919D9C2C8ADB90E776350580593764 /* UMMagnetometerUncalibratedInterface.h */, + 141794D377F8B494684B6C3E7F8FDCC3 /* Pod */, + 2C541E9B9656B60529E2822BEC8F1AD4 /* Support Files */, ); name = UMSensorsInterface; path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - A057DF07B0B1E1770EF28F3E659379B6 /* Support Files */ = { + 9F08E35505D2EEE7576E2B296CF9CF75 /* Support Files */ = { isa = PBXGroup; children = ( - FDF7125AF570E188DD481BA07CCAEC93 /* React-RCTActionSheet.debug.xcconfig */, - 27819B9DE0159480E49C07274F025758 /* React-RCTActionSheet.release.xcconfig */, + A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */, + 8D2E9A5AE0578008F281459CB9A08251 /* rn-fetch-blob-prefix.pch */, + 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */, + FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - A192BB0FF19D051615E7C5B5DDAF5AF8 /* Support Files */ = { + A0D0A721FDFA834AA78EF333CBEE0D72 /* Support Files */ = { isa = PBXGroup; children = ( - A01FF1CCDCA83FC7E71982962A8D3042 /* Yoga.modulemap */, - E9AF1361A986ACE87D792E1F1853DFBD /* Yoga-dummy.m */, - C5B070B2FD89F63D6338848592BD886C /* Yoga-prefix.pch */, - 830F897DF7AD939E47E8155FB34962DC /* Yoga-umbrella.h */, - 7393B1DB75D338321C6CEC0FA5A684A9 /* Yoga.debug.xcconfig */, - FBE650E3B6BFCB13A238251ECA1A591D /* Yoga.release.xcconfig */, + 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */, + 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + A0D690C389A7578A96C11AE72AF35FE2 /* react-native-jitsi-meet */ = { + isa = PBXGroup; + children = ( + C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */, + AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */, + 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */, + F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */, + A1D03F8AADF9F38DC515981BD4C1C5A8 /* Pod */, + 19DD4BF0D2BA1792C46D8F63B1B64A65 /* Support Files */, + ); + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; + A1115708637BBF26EE97A9665E561161 /* Pod */ = { + isa = PBXGroup; + children = ( + 61762F11F9DF31EAB9C7312E6B679C47 /* LICENSE */, + F39F75CD0519FDEC289CE7B6DD93F1E1 /* README.md */, + 4FC5FD206FDA8596406D871F557C3CC8 /* RNFBAnalytics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A1715B3CA2753027E5EA8197BC7F58AF /* Pod */ = { + isa = PBXGroup; + children = ( + 29622706EC0A8413E4BCAC4ED3B8A4A9 /* UMCore.podspec */, + ); + name = Pod; sourceTree = ""; }; A1BD659F64B0160B559E0C8289F0044A /* glog */ = { @@ -16552,56 +16776,53 @@ path = glog; sourceTree = ""; }; - A3D904653436D43DC33F08DDBF679E02 /* Resources */ = { + A1D03F8AADF9F38DC515981BD4C1C5A8 /* Pod */ = { isa = PBXGroup; children = ( - 91DBC6A1E416E2CFD76FA9F6A6C67DD0 /* de.lproj */, - 65F49B2C0DCD73D303980DB2C3C41BBB /* en.lproj */, - 7E34DF6B49E2A767E056271CAADC831C /* es.lproj */, - 0551CD0667E9000E0040D3202265E628 /* fr.lproj */, - 02F7D0EA4C2AC752FCDFD29B278E88E1 /* ja.lproj */, - D194A15B278127866141E2C7BA081A8B /* pl.lproj */, - 6EC151FD8EFC96F9EE0286604A838191 /* QBImagePicker.storyboard */, - B433A05A8B2D01A1F22FA9A055BB3789 /* zh-Hans.lproj */, - ); - name = Resources; - sourceTree = ""; - }; - A45E4A45E0DDEEF19DAC8081A9AC64DA /* Support Files */ = { - isa = PBXGroup; - children = ( - F17D3220E4C30BE2EE0AB830B75CCD5F /* react-native-appearance-dummy.m */, - 4F1EB129ED99747100EB71F7D8923F08 /* react-native-appearance-prefix.pch */, - 4A2AD76B82D22E12FAF2955FC21A38F3 /* react-native-appearance.debug.xcconfig */, - 8726FEFF2B734B95167D1273D3819551 /* react-native-appearance.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = ""; - }; - A47E40AA7797ABE87018A3CC37B3B2DA /* Pod */ = { - isa = PBXGroup; - children = ( - 6BDE81089D767A4D2FF02DA2519FB7AF /* FBReactNativeSpec.podspec */, + 6230D56843EEEDD6911A8EA529A78DF9 /* LICENSE */, + 3F13EB1F5655AF4A8A32C61FD6D851E8 /* react-native-jitsi-meet.podspec */, + 64943AE33232EE083680F7A06B4520AC /* README.md */, ); name = Pod; sourceTree = ""; }; - A481A0011D68507B3BA2CABBE01D44A8 /* CxxModule */ = { + A25D44189272012B9CE829CE329E5F32 /* Support Files */ = { isa = PBXGroup; children = ( - EA30BE7C452789100FE431223439D295 /* DispatchMessageQueueThread.h */, - 8E54B77C10474AF8FF36361BBFE17477 /* RCTCxxMethod.h */, - 0DE59714CF7AB7A5F9F5C6DDA59A8F91 /* RCTCxxMethod.mm */, - C0B962A3B09146BA12DB89B01038E78F /* RCTCxxModule.h */, - 21A304C5A326E04E00FEAC020DA809F9 /* RCTCxxModule.mm */, - 78958D1821C95F3354BE422BC63B8D57 /* RCTCxxUtils.h */, - F54FB51CC6FAE6ECE7AF66F4563697EF /* RCTCxxUtils.mm */, - 571019617498472A2AE1884EAA39B0DF /* RCTNativeModule.h */, - D00DE655DF4EFCF2D240F3D033EF7680 /* RCTNativeModule.mm */, + D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */, + 87A27DFB848B1D91986B582737F67521 /* React-RCTText-prefix.pch */, + 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */, + D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */, ); - name = CxxModule; - path = React/CxxModule; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + A3AEAD23E7A03E1D0F23C2ED39654FAB /* Pod */ = { + isa = PBXGroup; + children = ( + F7B12EF93162BD019F19684ACA1D380C /* UMFaceDetectorInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A3BA7870D82678CCF297623E779A7007 /* Pod */ = { + isa = PBXGroup; + children = ( + 7715D0E3CFB75F67FEE64C273A3B1703 /* LICENSE */, + 3BC93B6831CA460AE41FA2A1BDC200AE /* README.md */, + 0CA915474D78F85DA6EDC4CB123DFBA4 /* RNFBCrashlytics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A3D93461A099F1E6E8B48163D1A5D8C0 /* RNConfigReader.xcodeproj */ = { + isa = PBXGroup; + children = ( + 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */, + ); + name = RNConfigReader.xcodeproj; + path = ios/RNConfigReader.xcodeproj; sourceTree = ""; }; A4BD9703F9F43D3B54B612A58BF81EB8 /* SDWebImage */ = { @@ -16614,6 +16835,18 @@ path = SDWebImage; sourceTree = ""; }; + A4F7178970D321F93655D5010C1A8A0B /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */, + DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */, + C7EFCC0DF1E201722806663C2CA529FC /* Pod */, + BAAF7FEF08B6486425931A89F9FC3BA5 /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; A5022E231A23D8572173516017C3EEF7 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16624,77 +16857,84 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; - A504D5BCD37FADA672CA37E61DC93E3C /* RCTWebSocket */ = { + A545B6C991DB6190BB3E2DD38991FB69 /* Pod */ = { isa = PBXGroup; children = ( - 117CD2973C445BB0B8A315C237CE2B92 /* RCTReconnectingWebSocket.h */, - ED4164C5212E806BB956239B1B30F074 /* RCTReconnectingWebSocket.m */, - 0E75942501EFB3C479CF2C4DF3AA6F84 /* RCTSRWebSocket.h */, - 32748E61FFC7C92EE0AC455FDC59F435 /* RCTSRWebSocket.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - A60A001442F0EFC69A13D12C1731DFFB /* Support Files */ = { - isa = PBXGroup; - children = ( - 71C789B7D4E90A945EA950B6CBFDFF80 /* UMConstantsInterface.debug.xcconfig */, - DADF14C41C76F14DE805078FDF398CA6 /* UMConstantsInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - A6C095389D414E755E196328B298788C /* ScrollView */ = { - isa = PBXGroup; - children = ( - 9D8460F27B31D8F9AE5110D70F179BDF /* RCTScrollableProtocol.h */, - 3F52085F214DEABE26AC0C16B9E8846E /* RCTScrollContentShadowView.h */, - EE4D011E5CF13C33F3C3A9617F0CFA6B /* RCTScrollContentShadowView.m */, - 18FC4290B54E9EFA8BBE707D2C6823DE /* RCTScrollContentView.h */, - D320F3252EDF0F6045CC408FAD475555 /* RCTScrollContentView.m */, - C3EBCCAA8340B2292779478E322C0F7B /* RCTScrollContentViewManager.h */, - BC2C1DF23CD0358ACF87C73A488A63F7 /* RCTScrollContentViewManager.m */, - 85367A4907755BCC42651195F306CF88 /* RCTScrollEvent.h */, - 079CF9E09E497914994BBDAC32B6D206 /* RCTScrollEvent.m */, - 7EA86E4662B26C8A93FA761E0A51269B /* RCTScrollView.h */, - 467C50CC3B7F61CC7FAE84F15E130419 /* RCTScrollView.m */, - D3BE21B6BFACFEA6E6A2689D9EDFCFA4 /* RCTScrollViewManager.h */, - C0A8BAA7A6BAEE2C5823F8DAC191B3C7 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - A79AA62338B8DC0FBB9249AF03815A19 /* Pod */ = { - isa = PBXGroup; - children = ( - 4C3923D1BC230914D29030F45F767C34 /* React-RCTBlob.podspec */, + 2EAFCBAA5D97BE2F1EBB907AC5FA7666 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - A810B755058281201366B95714AE6C74 /* React-Core */ = { + A5C3840DD86195F6C22AD127E5F59154 /* Support Files */ = { isa = PBXGroup; children = ( - 25F3DF312DB18176FDF8043B84AF7B9F /* CoreModulesHeaders */, - DE76730A17B67296DB937D9293F122AA /* Default */, - 8D14943EF432287C46E8C51EC3672BF4 /* DevSupport */, - 5A1BBEA2F3EAA14BB6C1D221FCEF9744 /* Pod */, - 36900C7BA8B9064B116FD8C3EBD0FAD7 /* RCTAnimationHeaders */, - 24CD3ABFAFEB9674F803BC7B0AD4F290 /* RCTBlobHeaders */, - 8CE538709A7C40174CFCEF7241C57466 /* RCTImageHeaders */, - 69C84E343B580969E19E96D0037D6AEF /* RCTLinkingHeaders */, - EEC71EA63367514EAD0EE64436194CE7 /* RCTNetworkHeaders */, - 9438EC0441229933D79BB328CD2205BD /* RCTSettingsHeaders */, - DA96467F35A8B93BD8AD20E8CAAA1D2A /* RCTTextHeaders */, - 49ED97CBC5A3340948DA5BC7AD3A77DE /* RCTVibrationHeaders */, - A504D5BCD37FADA672CA37E61DC93E3C /* RCTWebSocket */, - E5FF40A335A71D7B2057AEB8CE28194D /* Resources */, - 1987D8941C8C02F2938B129C9C5B8B16 /* Support Files */, + 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */, + 614819B2D574266BADC22FC38FE98BCE /* RCTTypeSafety-prefix.pch */, + A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */, + 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + A6F421855D6AB1D1DB8A3199655DE343 /* Pod */ = { + isa = PBXGroup; + children = ( + F03382C69DFBABB2DD7976155CEDE2DD /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A7C40E40254E48BAE66811C865E24C74 /* RNLocalize */ = { + isa = PBXGroup; + children = ( + E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */, + 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */, + E67AAC0A27FEC1102B53A4CE8AF5575E /* Pod */, + 5A459960D6CFBC076295E0C11B5CE13A /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = ""; + }; + A8B98527ECC67F41B8F69CE6FFCA004F /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 41C2E2C1CD378DA7F3D84F4A99A6B16E /* UMFaceDetectorManager.h */, + F966C8F147E0EBC2FB6FA6061DD5CF3E /* UMFaceDetectorManagerProvider.h */, + A3AEAD23E7A03E1D0F23C2ED39654FAB /* Pod */, + 80781ED6A52467FA288B316E0E11CC06 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + A9387CF7966E546046E2F9ED7B573504 /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */, + 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */, + B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */, + 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */, + 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */, + 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */, + 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */, + E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; + AB12B5EFBD14AC0274E96A461BDF4922 /* Support Files */ = { + isa = PBXGroup; + children = ( + 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */, + CFFCDECA7EBF6812A30EAF74864C7167 /* RNGestureHandler-prefix.pch */, + 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */, + C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; AB2FD0CB1DC61420565381A535B87AB2 /* boost-for-react-native */ = { @@ -16717,307 +16957,299 @@ name = Frameworks; sourceTree = ""; }; - AB6E1B94EDA52ABED94CD16270BD0DF7 /* Pod */ = { + AB75C7A1FBE5932918837FE11AD9BE23 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 0C6621D3DC2D30DBA209C248A40500E5 /* React-jsinspector.podspec */, + 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */, + BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */, + 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */, + 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */, + D867B9C36AAF93BB07B4B326E76A4BEE /* Pod */, + A5C3840DD86195F6C22AD127E5F59154 /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + ACB9607D84896078272620A2E1D962D4 /* Resources */ = { + isa = PBXGroup; + children = ( + 32EFF23C5D7562F6C858A50A7A4258A8 /* AntDesign.ttf */, + 865C102D39A7D472F578BF83450016DC /* Entypo.ttf */, + BFA3321B234B08C7B816977EB7FECA58 /* EvilIcons.ttf */, + 83F22593E2A934B430841A48D9801164 /* Feather.ttf */, + 8DF78B4B81C3C19E39ADF3D34859C626 /* FontAwesome.ttf */, + 936D72B3D0E143CB516F5BF22CBADAB4 /* FontAwesome5_Brands.ttf */, + 843B1EF185471BC08E9BA3B40CB9DDB0 /* FontAwesome5_Regular.ttf */, + 53F35907FAA3E87EC41A5869F4B00646 /* FontAwesome5_Solid.ttf */, + 577C1C8DC38F16DD4F965E1B128C0CE4 /* Fontisto.ttf */, + 4DCE9007D77EB18D5FAB788689DE140A /* Foundation.ttf */, + 4D99BA9B27AB22CAB03D1EFE09E33E0E /* Ionicons.ttf */, + 2858B3C406226118D28DC967086236A6 /* MaterialCommunityIcons.ttf */, + 841D44BF593332B09202C9A5E64459B8 /* MaterialIcons.ttf */, + B56B664308FCB6852CE5A0F93B6EF57E /* Octicons.ttf */, + 39F46680FF08FA6F0073C1BD702C5DCF /* SimpleLineIcons.ttf */, + 737458C07B96B88B234E2C441DB04B85 /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + AFFFE20E862C5AF555EAA589CEB78765 /* Pod */ = { + isa = PBXGroup; + children = ( + FD514DC6C839CAE30673C5D7D536281F /* Yoga.podspec */, ); name = Pod; sourceTree = ""; }; - ABBE518178ED37B70E19C605FC044C28 /* Pod */ = { + B02039631428F9D4DBCACFEDCAB96BF9 /* Pod */ = { isa = PBXGroup; children = ( - 98C4B0E90364991B51449E243D87171E /* React.podspec */, + EAA89C337BBDAED7F2802BECE9B200DB /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - AC1360BE0623926DDF8E0CB87A863B4C /* EXAppleAuthentication */ = { + B114AD28ED28AE03783C18796A445B18 /* ScrollView */ = { isa = PBXGroup; children = ( - 432B63230EC208F5C88679278D14482A /* EXAppleAuthentication.h */, - 7DA35140A87FA2AF61FBA6763B8A3B3B /* EXAppleAuthentication.m */, - F3C7BCF35B2DE2527122189F4C9205F8 /* EXAppleAuthenticationButton.h */, - 181D663F17AE7BA3F32C41680C739CDD /* EXAppleAuthenticationButton.m */, - 5D929FE4CABA939AC717AD6BC099A274 /* EXAppleAuthenticationButtonViewManagers.m */, - 506DF3D395925462A6CB31F10E0D4ABF /* EXAppleAuthenticationMappings.h */, - 0E4E36166F9116C65ABEE40E76DD6024 /* EXAppleAuthenticationMappings.m */, - 36B82AC85FFCEEF9132F8D15E211E8E5 /* EXAppleAuthenticationRequest.h */, - 20B2C3FC3CCE44DE744B06D44171CECC /* EXAppleAuthenticationRequest.m */, - BD1FCEF1384CFD041B69D97286C0F517 /* Pod */, - 11F6BFFFF6EE8026315BBC10CB5FF4B5 /* Support Files */, + CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */, + 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */, + B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */, + 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */, + D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */, + B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */, + DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */, + 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */, + 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */, + 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */, + 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */, + CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */, + 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */, ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - ACBCD32A59925AED94D73482F6B9B537 /* RNConfigReader */ = { + B136CC6E2F397AB8AF475C4F14D06A43 /* Support Files */ = { isa = PBXGroup; children = ( - 30F012AC6EB22C8B61B124E148E58C29 /* RNConfigReader.h */, - 08B72BC4114CE37722AE67B787967A06 /* RNConfigReader.m */, - 6CD08529E1A6BFCD19F56B9F0267EEE7 /* Pod */, - 9CD733555DB7611EF0EB7D8DCEE012D9 /* RNConfigReader.xcodeproj */, - 5375953D889175BB1148936333041241 /* RNConfigReader.xcworkspace */, - 15B4723392A6E66D61D243E32561FEB0 /* Support Files */, + 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */, + 4856E4B99BCEC6FFAED5E4BED783FF19 /* EXImageLoader-prefix.pch */, + B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */, + C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */, ); - name = RNConfigReader; - path = "../../node_modules/react-native-config-reader"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = ""; }; - AE72C5F3E1EC632CBB36F084ADC69FB3 /* Pod */ = { + B1AB7A685813F87E6F10088EFF9D7EC6 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 53A133D9B8E269670A35C24D3EA264CF /* React-cxxreact.podspec */, + 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */, + 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */, + 9CC3BB3D2AB4DF10C475BE71E361083C /* Pod */, + 074351399A186546AA249738908DBB4A /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + B1AE52BEF388CDB7119F6302E5979D93 /* Pod */ = { + isa = PBXGroup; + children = ( + 08E9EA705803A7C8E505CFBA35398591 /* React-RCTVibration.podspec */, ); name = Pod; sourceTree = ""; }; - AF4CBFD3F93AE5B0058D81DDBB753A26 /* RNDeviceInfo */ = { + B220566F9A71391BE56F0D1D6CE408E2 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 8D6B5697FEC6EA4DE7B3E76D5D38F147 /* DeviceUID.h */, - 72D703C80A9A50EE0C6C40F29C03E854 /* DeviceUID.m */, - F035BA7D60899A59A77BD8090C7F4423 /* RNDeviceInfo.h */, - 6974B2DFE54AE54F6291176E818650FA /* RNDeviceInfo.m */, - 2F89575E04BCD44096E299CF7D230854 /* Pod */, - B363D852276940E2DF75D2163F1E733A /* Support Files */, + B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */, + 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */, + 6A22E9AB051C3C1A09ACAD7492425B71 /* Pod */, + 563BC5455FAED9898AA5CAC53BCB5673 /* Support Files */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - AF708CB4159429D60218CB0318A13659 /* EXKeepAwake */ = { + B28E02485F4EDD492C77DC8A7F0663AF /* RNFBAnalytics */ = { isa = PBXGroup; children = ( - 9FB411ADE790C2510C4E0DAD1B87E5C3 /* EXKeepAwake.h */, - 9D03F12A4E88D55B9DAB3A8CF758FCF1 /* EXKeepAwake.m */, - B2A72F2FEAF47803688BCCCD0637D27C /* Pod */, - CA0E12971D986967F61C18448FC871BE /* Support Files */, + 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */, + D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */, + A1115708637BBF26EE97A9665E561161 /* Pod */, + B2D05423883F80C2C64D165868D8011D /* Support Files */, ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = RNFBAnalytics; + path = "../../node_modules/@react-native-firebase/analytics"; sourceTree = ""; }; - B0D8BF6F71D7FCE249C7317E0A01F5D9 /* Pod */ = { + B2D05423883F80C2C64D165868D8011D /* Support Files */ = { isa = PBXGroup; children = ( - E24F5A023DED9E1C726CE3F65C9AB0DC /* LICENSE */, - 41D82A78FFC03041996177629FFE327E /* README.md */, - 037A12CB85187AD41F390286C17E2301 /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B0EB9FF6421336EFD32E02ACBF3FB720 /* Drivers */ = { - isa = PBXGroup; - children = ( - D1A13AAB934CED7A43063C6412DB5837 /* RCTAnimationDriver.h */, - F974DFE549E05ED2EA2BC451ED73D222 /* RCTDecayAnimation.h */, - 5331DA9B969A270E440309EDD679944A /* RCTEventAnimation.h */, - 73F9F5C2ADF396741AA8B04729145AA5 /* RCTFrameAnimation.h */, - 9E30AE02186EEC8A70B2EBC3C766AF8D /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - B144A7DE35CB46F17F37309BA0E58371 /* Support Files */ = { - isa = PBXGroup; - children = ( - CBFAD01BF20353FC3A0C29ADEB61C615 /* ReactNativeART-dummy.m */, - 8FF1B3D380A38534BA390C059897EB82 /* ReactNativeART-prefix.pch */, - EDE4C87728E74E199B34F294E2698093 /* ReactNativeART.debug.xcconfig */, - FB29BA4093B458B195FAD1207C49D3AB /* ReactNativeART.release.xcconfig */, + 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */, + 356C3802AAB930F1B1EC52AD86B24EB9 /* RNFBAnalytics-prefix.pch */, + BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */, + 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; sourceTree = ""; }; - B1658CB67F1B5922C61CDCD7016F81F8 /* UMFileSystemInterface */ = { + B3770FCAACFEC879FF1F721AC639359D /* Support Files */ = { isa = PBXGroup; children = ( - 9C8E86F5C34BAC129CA6E2D869FE1CF0 /* UMFilePermissionModuleInterface.h */, - 5AA5C427DBA63F6B091639D34F64E46C /* UMFileSystemInterface.h */, - 644990BB9DCC8155D2EE1D1341F37363 /* Pod */, - 5CDD4738650A84F09A1971A54A935455 /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - B1B88D07808179034712D098B498E6BF /* KSCrash */ = { - isa = PBXGroup; - children = ( - E7091780DDAF4C84A20ABE0F67933DCE /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - B225B38E7DF0D6D5427C7628A3FBD2C6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2A8801879744C457321D771615FA9E1A /* React-jsi-dummy.m */, - 640F5F3B13DBDF8DC19FBAA7E7C062A2 /* React-jsi-prefix.pch */, - 7130D3DD21E3A2FC8FBD3E7F72549B6C /* React-jsi.debug.xcconfig */, - 8B24A35CFC63AED4D4D4A62223E308EB /* React-jsi.release.xcconfig */, + AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */, + D704632CB2E62CA40864DA093B702AB6 /* react-native-notifications-prefix.pch */, + 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */, + 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; - B236C6130788638B55915E387E99E880 /* RNCMaskedView */ = { + B3DC4F27F4448D79BC412C62FA9717B9 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 8C4496D628C42AAE64D6CBB4BD2768AC /* RNCMaskedView.h */, - FD51AE634C3CA1DDEEAF9944C84FB624 /* RNCMaskedView.m */, - 5F114128E907A0B271B9E581B7429DE9 /* RNCMaskedViewManager.h */, - 3643CE7BF073A819C3B4142D871FE13D /* RNCMaskedViewManager.m */, - 5579D0662DE3788CE018ADCB1162F4E4 /* Pod */, - 5E3ECFD6CCA99B67A84E0235FB890447 /* Support Files */, + 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */, + 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */, + 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */, + E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */, + EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */, + 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */, + B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */, + 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */, + 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */, + C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */, + C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */, + 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */, + 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */, + 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */, + C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */, + E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */, + 312FF6791778C2FF701DDEA133BAD15C /* Handlers */, + 82650B58A2B1A3F501FACF130C6CC508 /* Pod */, + AB12B5EFBD14AC0274E96A461BDF4922 /* Support Files */, ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - B2A72F2FEAF47803688BCCCD0637D27C /* Pod */ = { + B479ACCE09BBADB7D83DB327ADAB2FFD /* EXSessionTasks */ = { isa = PBXGroup; children = ( - 813657F95726447622A48846C27065DE /* EXKeepAwake.podspec */, + C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */, + 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */, + DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */, + DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */, + 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */, + AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */, + 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */, + C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */, + 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */, + BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */, + F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */, + 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */, ); - name = Pod; + name = EXSessionTasks; + path = EXFileSystem/EXSessionTasks; sourceTree = ""; }; - B2B58A2F35FC416C038FD9E73796176D /* Pod */ = { + B4A97F3E1D7799A2FCB2972DE3775727 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - A862970B27586A522D000F790CC79A99 /* React-RCTAnimation.podspec */, + E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */, + 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */, + BE18140944816C020D3CD834E0B95100 /* Pod */, + 16297DDB1A37130233D3BBB45D2F16EA /* Support Files */, ); - name = Pod; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - B35E7CB873930114DF8AB65E563DD81D /* QBImagePickerController */ = { + B563E4387CB19E8B38671C4749768402 /* RNFastImage */ = { isa = PBXGroup; children = ( - 5813BF3A80226B687E4D4AC417F962E8 /* QBAlbumCell.h */, - 6C6488B2D2AFBC4384652C40B9A5B63B /* QBAlbumCell.m */, - 20408DDDDD8676E9F6B8C4E8AEB3551A /* QBAlbumsViewController.h */, - 8F16E7ADC4C026ADE02A4F59231C14F8 /* QBAlbumsViewController.m */, - 31BDF1FF8D89908EF066F6367DC217E0 /* QBAssetCell.h */, - DB482367CCDA3EF7644CD67EA1F641E4 /* QBAssetCell.m */, - 530172C0FFEFF59AFE590ED116E9D897 /* QBAssetsViewController.h */, - 475E047424CF03D95443F7AF5920881A /* QBAssetsViewController.m */, - 3EF83A7377D693CE9E2B1BBCD4B15792 /* QBCheckmarkView.h */, - C2E94BB6C228FAFB282EACC9F2ADBFAA /* QBCheckmarkView.m */, - 830C4F640F8687F78E2391C6481BCFFD /* QBImagePickerController.h */, - DA9A860DFB3AF53DCB2C6BD37F35D301 /* QBImagePickerController.m */, - 941C70F45DADE90A44CE03CCB6FA618E /* QBSlomoIconView.h */, - 7ABCECC63138C11A27583A1F0E866E6D /* QBSlomoIconView.m */, - A6C680711EE2C68E572587F007B3D64F /* QBVideoIconView.h */, - 275B4471850334F18F614589E6556204 /* QBVideoIconView.m */, - 3909AA63E20BDDBA020EA572C512A4DD /* QBVideoIndicatorView.h */, - CDCE5AEFFBC0EFB90D51A5DB68D3FD95 /* QBVideoIndicatorView.m */, - A3D904653436D43DC33F08DDBF679E02 /* Resources */, + 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */, + DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */, + 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */, + 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */, + 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */, + A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */, + 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */, + E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */, + 2E8DACBE318224DEE977731F4A6AFA15 /* Pod */, + 6C3F0C275A0AC9862755F3B9A314D843 /* Support Files */, ); - name = QBImagePickerController; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; sourceTree = ""; }; - B363D852276940E2DF75D2163F1E733A /* Support Files */ = { + B679771910F4A81551D1E38E4665DBEF /* EXWebBrowser */ = { isa = PBXGroup; children = ( - AD9B25A8024811C070BA66D1FEF3F7B2 /* RNDeviceInfo-dummy.m */, - 204B777594CFD0CE9C3E3F07CA319D9A /* RNDeviceInfo-prefix.pch */, - AF7954154DB1CF4A16573D13B0E740D3 /* RNDeviceInfo.debug.xcconfig */, - D577CDD5534647F89DCFAC24F55F227C /* RNDeviceInfo.release.xcconfig */, + 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */, + F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */, + 4400143791212FCDBBDDFB2FF3B0D303 /* Pod */, + 016A0553A89829B70C552FDF9F3380A4 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + B6FCC62BF0988F46A067913AD1AA4551 /* Support Files */ = { + isa = PBXGroup; + children = ( + 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */, + 27D3620E5516A7CD19F78992AAD108CF /* UMCore-prefix.pch */, + E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */, + EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - B43FC80A7DB65DBF970ACA74CC04EAAA /* React-RCTAnimation */ = { + B721D6049C917C7D59E061A5C064ED5A /* Support Files */ = { isa = PBXGroup; children = ( - BE0643EA3378DFE88430A4E45C70E561 /* RCTAnimationPlugins.mm */, - 5F91A8AA68C3D8EC78DEF9F7CFE4653D /* RCTAnimationUtils.m */, - FC92EB041100B6768F51D8A6E3A854AD /* RCTNativeAnimatedModule.mm */, - B2BB7021BF8CBBFAA5C1E8B3218F9351 /* RCTNativeAnimatedNodesManager.m */, - FA904FC1BE89E2F8482CCBC50486BAFA /* Drivers */, - 9AB49BDB937059ED353352AC82DE7202 /* Nodes */, - B2B58A2F35FC416C038FD9E73796176D /* Pod */, - 2685E75ADEFA0ED5B03535594B7D9585 /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - B693CB58A40E28A697D27BEF13C7DE71 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - C2C5BDB03F1A54113F94AE0B8B930CBF /* IOS7Polyfill.h */, - A8F66D2702499EC09BD8569800380308 /* RNFetchBlobConst.h */, - 514C8672C2545CF1A75541F6EC6423B4 /* RNFetchBlobConst.m */, - E06DD6CA85AA045EF82D4CC12E425AAC /* RNFetchBlobFS.h */, - EFD22DC567D94397E1CF1F93BAD37B64 /* RNFetchBlobFS.m */, - DC2068BFB352DFFDC26A3C6A90C8EA64 /* RNFetchBlobNetwork.h */, - E3BFEA44425E7E614FE9BE1E07E43CEB /* RNFetchBlobNetwork.m */, - 88FE8128E0B06B8EBF6848BD8ADDA9A2 /* RNFetchBlobProgress.h */, - 6A6CB1ACFD815D1A962850EFA68A5267 /* RNFetchBlobProgress.m */, - E29604A5ED6A68472E00D8C015D0E8FE /* RNFetchBlobReqBuilder.h */, - 63C7EF17E92FE2D4B046659B2C319AE8 /* RNFetchBlobReqBuilder.m */, - ADCCC178323BEB8B5FBB40FAC84D7E80 /* RNFetchBlobRequest.h */, - DB4E1AAA4C012839394D5A47ADB8A3C5 /* RNFetchBlobRequest.m */, - 605C97DDD8C7DD9944F72789C74DEB0C /* Pod */, - 7DCA7734FBA1B4B6A79275A5B15C17A9 /* RNFetchBlob */, - E322499FB77B51C930D164923A175471 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - B6A96DC31D58BA04602E6857E52B75A0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 31393E962E278B010F84ECB7CD0472E1 /* EXPermissions-dummy.m */, - E0DF9801469EFF3C7711A9FB8256ACBA /* EXPermissions-prefix.pch */, - 612AECA7913B21FCE0440247FEC8D3EB /* EXPermissions.debug.xcconfig */, - B79DB8695CE6E5D16922C2C2E8E096D2 /* EXPermissions.release.xcconfig */, + DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */, + E2F1266F17E68F3DB63FFF9582C74F85 /* React-RCTNetwork-prefix.pch */, + 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */, + 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - B6D79C87E73FDC2EE0ED63F3BDEFBF68 /* UMModuleRegistryProvider */ = { + B734537B266390DB30BD231BDC85C051 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 581A57A5C014FB5079350A89F7FCFF0A /* UMModuleRegistryProvider.h */, - 0CA7E46911AE28BE36547F4BAAA49FF8 /* UMModuleRegistryProvider.m */, + E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */, + 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */, + D0A1B4D080DF1AF22AE4211A40CFB0D5 /* Pod */, + ACB9607D84896078272620A2E1D962D4 /* Resources */, + 32A25F038C980CCC9DADC13D3901D76D /* Support Files */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - B7A93D03618E25CA6DE7242643A84489 /* Support Files */ = { + B7A42549C43C9DE254F76B890B920C43 /* Resources */ = { isa = PBXGroup; children = ( - 349B0C4A4790BF2069F3A89945CDC85B /* FBLazyVector.debug.xcconfig */, - 150AEA159C65A7F59BB467DC287C2E8D /* FBLazyVector.release.xcconfig */, + 42817937F1E875A7A8871155D62D0947 /* de.lproj */, + E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */, + BDF605201112541ED81426885684670B /* es.lproj */, + 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */, + 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */, + 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */, + C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */, + C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; - sourceTree = ""; - }; - B7B8AE35C0973DAB0C0C0BA1AA56141D /* Support Files */ = { - isa = PBXGroup; - children = ( - 453576AF85EFD854EDB3E3311DC7604D /* RNFastImage-dummy.m */, - 3FDD7287EC101566D68575F95293482D /* RNFastImage-prefix.pch */, - DA6DC6C6B2271D5FDABD7E86FD18C638 /* RNFastImage.debug.xcconfig */, - 07746EB1C27E0A1CC7890FD9A143614B /* RNFastImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFastImage"; + name = Resources; sourceTree = ""; }; B7C61A8692159E71352B7B376D656091 /* SKIOSNetworkPlugin */ = { @@ -17037,28 +17269,20 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - B887E0A0CC8974783032FF09F5F4D624 /* Handlers */ = { + B8740C3710BC2CD3EBFA3882D0B01D27 /* ReactNativeKeyboardTrackingView */ = { isa = PBXGroup; children = ( - AB5375DB3F24B9B116567C0EDAB83688 /* RNFlingHandler.h */, - 5E4F446132D23565B4DDE72642E68872 /* RNFlingHandler.m */, - 4D139BC9E108DE20DF1A0C52DE7188BA /* RNForceTouchHandler.h */, - 2FF5B47DA6C608C1A74A71E0C1C11648 /* RNForceTouchHandler.m */, - 910BE4D029D425D203607CC5ACDCCB12 /* RNLongPressHandler.h */, - 9ED09204DC31E77A445E9EEA39700E53 /* RNLongPressHandler.m */, - 483913E29C3272A722AD73C970A54390 /* RNNativeViewHandler.h */, - 5591E6B7FACFC8679C48A0C91F2537D5 /* RNNativeViewHandler.m */, - DA3530D7166759815ED0CF20640FC721 /* RNPanHandler.h */, - A954A99B1855EF7E0DCF45E3D72E5D57 /* RNPanHandler.m */, - 3B18A0457BBAB21FCCC265D41AA00A7D /* RNPinchHandler.h */, - F36250798D43DB4010BE13139FAD021E /* RNPinchHandler.m */, - 9193D376AE96352133F2775A0619F92E /* RNRotationHandler.h */, - 688DBF90F448D67995DF1023D9427E06 /* RNRotationHandler.m */, - E0D880E4DB9D99EC13081324711A4D6C /* RNTapHandler.h */, - 8BB1B6BD0F2EBB754F315CB745A8D9CE /* RNTapHandler.m */, + 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */, + 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */, + 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */, + 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */, + 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */, + 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */, + 5F882E7BBFA9658259142D5289B455EB /* Pod */, + C316937714E3F51B9C385E59EB88B6C8 /* Support Files */, ); - name = Handlers; - path = ios/Handlers; + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; B93CA65AE4C2256B8E1C7B2635240739 /* Support Files */ = { @@ -17073,50 +17297,54 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - B968DF2A16CED7D06B668D6C6D706A76 /* Support Files */ = { + B9C9572617DA0B4487142D672E64C4FA /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 23F598B1982F8C1C25E05583BDF26E8D /* RNFBAnalytics-dummy.m */, - 9BBD96324E72B900F754E91B9DE58130 /* RNFBAnalytics-prefix.pch */, - 860EBB29C61DD2C826B0C343492DB7D9 /* RNFBAnalytics.debug.xcconfig */, - 8F300091273A35CE5E7A76C6F4A0129E /* RNFBAnalytics.release.xcconfig */, + 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */, + 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */, + 1BC0DBBB543FA45386E1A957306A3906 /* Pod */, + 5B73AE5A405588EB2A1DFF2098FA17C6 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + B9DEA0474651DC8C0EBD144C9DE73A73 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */, + 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */, + FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */, + 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */, + 45F32644129876BA500890A88A22623E /* Pod */, + C9023A8DF9AF325A6A182AAE34C6391F /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + BA934D1C302756BA6C0B6C6E726E4B2B /* react-native-cookies */ = { + isa = PBXGroup; + children = ( + BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */, + AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */, + FB4CF3D1F5E261FDB1CF2195499536FD /* Pod */, + 566F12155681D85212C8AE483D165828 /* Support Files */, + ); + name = "react-native-cookies"; + path = "../../node_modules/@react-native-community/cookies"; + sourceTree = ""; + }; + BAAF7FEF08B6486425931A89F9FC3BA5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */, + C684B614F7A5FBBA191DA064B25F6FE2 /* EXLocalAuthentication-prefix.pch */, + A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */, + 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; - sourceTree = ""; - }; - BB1B42B226114703C023F0929B0EE3C6 /* Pod */ = { - isa = PBXGroup; - children = ( - FCCD623D0E5093309DCDC16A8996D6A3 /* LICENSE */, - EDD0DCD3210A3FFC39593E8088F47145 /* ReactNativeKeyboardInput.podspec */, - 0295A5E503DED09676494EB116EE2304 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - BB2198DDD95678E00A96ED89D7C2F177 /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - 4513159A26710D3292AE0741631A8AC3 /* UMBarCodeScannerInterface.h */, - 7329067D94E992BB8BAE71B494B71BDD /* UMBarCodeScannerProviderInterface.h */, - 4F81A65734DE71037E1091765E9CFC4B /* Pod */, - 215E9477F95B71637383833BC95F8B11 /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - BB5450293AF3C1E75C70E610ED5BF84A /* Support Files */ = { - isa = PBXGroup; - children = ( - B026C07D70D49BDB94CD184519B0BBA9 /* EXHaptics-dummy.m */, - 03F18F840D2FFFA5B6E43B0BF4176ED6 /* EXHaptics-prefix.pch */, - 95D4EAA6E2D783E6BA3CA1F8DAD7F97B /* EXHaptics.debug.xcconfig */, - 56038ADDEA7D61887F3E38F732A0E15E /* EXHaptics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; BB5FABDA66760511AF47DE0D280E26E3 /* YogaKit */ = { @@ -17134,24 +17362,24 @@ path = YogaKit; sourceTree = ""; }; - BBE290340596F1F52AE92BEBDE286666 /* Pod */ = { + BB77D82ABB6CD699B60B07B0A8609201 /* Support Files */ = { isa = PBXGroup; children = ( - B5728199172032F9FA81D04B4D54A54D /* UMReactNativeAdapter.podspec */, + 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */, + CA0EEC2F605A34718DCC11945AF562C6 /* RNDeviceInfo-prefix.pch */, + 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */, + A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - BC530FAE029C02F9F9B34E54DC12C131 /* EXImageLoader */ = { + BBA837FCCB47B023F6823CB6D1E7690B /* Pod */ = { isa = PBXGroup; children = ( - 3F4A63D4185C26E6DA36BBC46F8416A9 /* EXImageLoader.h */, - 3E8B612897576AECEB807CCB36D99CB1 /* EXImageLoader.m */, - DC43DB3A6E75672B4F9C4BF13E219C0E /* Pod */, - 08A0FA4E8A9A481DA2521B2E435308E5 /* Support Files */, + 22FEE90964CE911CF9B035C2DE71DDBD /* React-RCTSettings.podspec */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = Pod; sourceTree = ""; }; BC61BEE1F3C320A72252A211E07559F6 /* Support Files */ = { @@ -17166,42 +17394,22 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - BD1FCEF1384CFD041B69D97286C0F517 /* Pod */ = { + BD6B2313CAB6B283AF3E7C1C3C13D8F5 /* VirtualText */ = { isa = PBXGroup; children = ( - C1851A2199779D0A8BFFEA3D0D010C42 /* EXAppleAuthentication.podspec */, + D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */, + 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */, ); - name = Pod; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - BD21F87A41AFCA7CB57DBB0D6A2CA977 /* Pod */ = { + BE18140944816C020D3CD834E0B95100 /* Pod */ = { isa = PBXGroup; children = ( - DB518D1AD1774D77CD55A45E61498507 /* LICENSE */, - D28902C29C20441B638F6B0DB7FD5D29 /* README.md */, - 6281BD8A8FC2E45A2696D73E4BD359AB /* RNFBApp.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - BD525591DDC1307646D15B23322C3441 /* Text */ = { - isa = PBXGroup; - children = ( - C0744341C04F176ED6B9D0F0FF5B9597 /* NSTextStorage+FontScaling.m */, - 5AE76409F8E09674460079D1762B5D5F /* RCTTextShadowView.m */, - 01C9650D93DFA6DEF30AE085C411E408 /* RCTTextView.m */, - CE796E3D7DCC5F9BE8D6FC3566C3A207 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - BDC0B0B8DA044C7444789AACED8B53AC /* Pod */ = { - isa = PBXGroup; - children = ( - E4125A28FB018B891858E7011F22071A /* LICENSE */, - D55D13D422149DECE948ACAC643A93B2 /* README.md */, - DBFB91BA36CECF695BFCBFFDD9893FDE /* RNImageCropPicker.podspec */, + 8A3EC40F8D83F2576BD5667948D04DEE /* LICENSE */, + 2608A00DB071AABD68B93DFC7C46A01B /* react-native-background-timer.podspec */, + 7C2E6D530C35035871EC5B2C5D0428C8 /* README.md */, ); name = Pod; sourceTree = ""; @@ -17445,160 +17653,34 @@ name = webp; sourceTree = ""; }; - BF9BDA9C9B985D7D078B76AACD55B030 /* React-RCTLinking */ = { + BFFE3E0EB1BCC4189411C0EF8C2B1824 /* Pod */ = { isa = PBXGroup; children = ( - 0AED725F071366514C48F4B5B7FE6F64 /* RCTLinkingManager.mm */, - 5EA80EF50FC0AC436071C8C39F35C4E6 /* RCTLinkingPlugins.mm */, - 9F34A4F0553DAF8CE8AD98DB893DAACC /* Pod */, - F35DFEEFDEF77C741EFB4778E57962FB /* Support Files */, + 32A2F852FACB7687260A645A7CA35306 /* EXVideoThumbnails.podspec */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = Pod; sourceTree = ""; }; - BFD6084315DD886223F083EABF9FBA71 /* Support Files */ = { + C179B71EE2013EC55CA01132CA04DDE2 /* Surface */ = { isa = PBXGroup; children = ( - 23FF7EE257854C1239EFFE1E86057AC1 /* RNRootView-dummy.m */, - 1EA485D99694253C201A2CA4CADE9DF9 /* RNRootView-prefix.pch */, - ABCA33AE0BD9E4632697DE558DA823ED /* RNRootView.debug.xcconfig */, - DDEB3ACA0E88865D7239BE786A826510 /* RNRootView.release.xcconfig */, + 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */, + B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */, + F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */, + 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */, + 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */, + A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */, + 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */, + 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */, + 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */, + A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */, + B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */, + 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */, + 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */, + 11FFF265BC8455577CD2E9D2549BC8BE /* SurfaceHostingView */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; - C09D0D41B78360769B6676CF69015D64 /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - AAC98D681B86BEBBFE86C4BE23A0AD3A /* RNGestureHandler.h */, - 04F585B85130C37C2B8F62893F947DDF /* RNGestureHandler.m */, - A7C0625203A33BE888C56B17EE0AD136 /* RNGestureHandlerButton.h */, - 2BEF946517D51F07C30335F4E6121076 /* RNGestureHandlerButton.m */, - 6238E85A660C449FE52C3E60FE0505D1 /* RNGestureHandlerDirection.h */, - 9C886AE4138A4F9CDAB06A835C9FA12C /* RNGestureHandlerEvents.h */, - E601AF0BA74D4919720A00F46373110B /* RNGestureHandlerEvents.m */, - 62D8F7CE9484A6D1A6D41237B9943D40 /* RNGestureHandlerManager.h */, - 4B12E07DB5C7ABC90D9F903C0E42928D /* RNGestureHandlerManager.m */, - 06D7CB033475C5739CFDA803436174BC /* RNGestureHandlerModule.h */, - A80962DD9C04567AF28B364DC5947C6E /* RNGestureHandlerModule.m */, - A1E6D853F65029BF42BA1692B5EE1D63 /* RNGestureHandlerRegistry.h */, - 2B7DFFF386629A13BDD874F24FFC60E2 /* RNGestureHandlerRegistry.m */, - 4D0ADF9D9CD9EC9CDBA609B43FBB4F9F /* RNGestureHandlerState.h */, - 88CC90FE0B189BAE2F58DD54E4A55C04 /* RNRootViewGestureRecognizer.h */, - E482E835CC939CBCC465C888790B8F57 /* RNRootViewGestureRecognizer.m */, - B887E0A0CC8974783032FF09F5F4D624 /* Handlers */, - F9BB660136C6A55DB65E5355B911556A /* Pod */, - DFC8B60CD26CDD1B827E99425DCC6FB1 /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; - C0AF541C40F976FEA34C80526D990738 /* RNCAsyncStorage */ = { - isa = PBXGroup; - children = ( - 443B073FAA95C1077E31868F46A6B736 /* RNCAsyncStorage.h */, - 64F79130284FFE31CC621C77B5F336F6 /* RNCAsyncStorage.m */, - 76533A976C94536C1DD2B99D506A31F7 /* RNCAsyncStorageDelegate.h */, - 4125440E6F07BB5CEBDE776D3985E1C6 /* Pod */, - 7F9074E3E643F81EC8DAF515153D2B3F /* Support Files */, - ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; - sourceTree = ""; - }; - C0BDCF8411D9E879071EF847B0438DCE /* Support Files */ = { - isa = PBXGroup; - children = ( - 90D0B942150CB45CD1A912B5904B7447 /* UMImageLoaderInterface.debug.xcconfig */, - CF6CC1DFEB9DD42B901216B25DDD83D9 /* UMImageLoaderInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; - C11EAB75369558C2AE498127031F81CF /* Views */ = { - isa = PBXGroup; - children = ( - FC7C8AE8B9CCB5E4ACF50984B78D048B /* RCTActivityIndicatorView.h */, - 8E0415AE584E280A0A25587C03FA02C8 /* RCTActivityIndicatorView.m */, - 0C7CF0284EA6F1E785EAA502460E20D7 /* RCTActivityIndicatorViewManager.h */, - F2C68857867E7428DA7B276598F5F6D2 /* RCTActivityIndicatorViewManager.m */, - 04F9B836809543672AFA1F7643E98628 /* RCTAnimationType.h */, - F6619D4C84FB5F99486EA359CF43B757 /* RCTAutoInsetsProtocol.h */, - 9863C2536B6D6EE6E082E7FC842FB6C8 /* RCTBorderDrawing.h */, - 19D71031BF05F7DECAD3B4431711B4E6 /* RCTBorderDrawing.m */, - 9672D26825FDEA0DE700B59B47C0F9D6 /* RCTBorderStyle.h */, - E3A90C19A3C7625BB49C7AD659EC1B81 /* RCTComponent.h */, - 4E69C91826A40B89D6913BF2F2196D84 /* RCTComponentData.h */, - 3BCC72616908960A33555F8E2312615D /* RCTComponentData.m */, - 0922084C1425E592CC1F9F1DC3764D7E /* RCTConvert+CoreLocation.h */, - 6119BA2FD711FFDFE0A1E52C6BC3CCA1 /* RCTConvert+CoreLocation.m */, - 0D8422E787FE9A4E8B91AA77749C6C08 /* RCTConvert+Transform.h */, - A48522EA0A383575734E4397FE6824C1 /* RCTConvert+Transform.m */, - 42CDF25490573F0F4326626F69CD41C4 /* RCTDatePicker.h */, - C8CC3E96800B5F2273F450D73CF3F3B1 /* RCTDatePicker.m */, - 40D842DB6A4676722749E9BEF28DF9C2 /* RCTDatePickerManager.h */, - 36216F26D2E9DEC04AE009AD5476C98C /* RCTDatePickerManager.m */, - 744F7FC9C5AE5710B56A2B2F3F9D18CA /* RCTFont.h */, - 2E27C351B16B6D0C56C854A347B16CD7 /* RCTFont.mm */, - 2FF3199DBE26A41F0F05D343A7A074CA /* RCTLayout.h */, - 53B1A1306C64D608EB4C738C6388502F /* RCTLayout.m */, - 2001F0B8470629C4C9988F6397F5C9FE /* RCTMaskedView.h */, - A7519D8DB210259D70E75CAD919781E0 /* RCTMaskedView.m */, - 1BF4DC47CB9ED87FEFC26974B0621377 /* RCTMaskedViewManager.h */, - 6D16F5B4C4DEA22DFE73B1421CB0C3E7 /* RCTMaskedViewManager.m */, - 6C8FB4B298F4E4B9770BEF6BD042EE04 /* RCTModalHostView.h */, - C346F0F21097A7CAAE7FAE977F1E23CD /* RCTModalHostView.m */, - E6476B4CE715E5700814D91BBA5F5303 /* RCTModalHostViewController.h */, - F9129D8DF249E413E64F82408FC3C052 /* RCTModalHostViewController.m */, - 2FDB07B532F29B21583DA6417C39D247 /* RCTModalHostViewManager.h */, - 8B8DAFCEEA8153C96566A703F8DCB2D4 /* RCTModalHostViewManager.m */, - DEAEC3E15B35CB17E97232B53F3FD5B4 /* RCTPicker.h */, - 8602DB997C9B9C93ACCE5460D2F804C0 /* RCTPicker.m */, - C16AAC66D67CEF3568F1266F452B1EF7 /* RCTPickerManager.h */, - 3B5FED3127466CFCE12B1296EA6318FA /* RCTPickerManager.m */, - 7B5310DE7A9282EA96BBB3F2842D7DFE /* RCTPointerEvents.h */, - A4B8A0A9700975F91433BD752EC08FDC /* RCTProgressViewManager.h */, - C6E8317078827A6C535A4D8399ECD26A /* RCTProgressViewManager.m */, - 5D8C3E4A4D49DA6642E5FCCDB0A4700C /* RCTRootShadowView.h */, - 11F37B481D738544DA6CE36392796790 /* RCTRootShadowView.m */, - BFB3B708E539D0D6D0607CF4F424D26E /* RCTSegmentedControl.h */, - 1D43960265216C011FD87EF6B2536CAB /* RCTSegmentedControl.m */, - D756115EE2A49A48EA6F6F5EEF2F1AAE /* RCTSegmentedControlManager.h */, - 47257137896C296152C0B0E53E0A76B2 /* RCTSegmentedControlManager.m */, - B1AE798127CD3569385370EB0CEA8562 /* RCTShadowView.h */, - BC2E31737282D6D55A193285CC2B879B /* RCTShadowView.m */, - 084009312EA136C724E559CAE2842EC8 /* RCTShadowView+Internal.h */, - 989083A91BA8AEA471DC3DC8E4646D57 /* RCTShadowView+Internal.m */, - 27ACC469345EE9D21E0DAA14B4CE1E39 /* RCTShadowView+Layout.h */, - 3CDB0A036C878B62CB2C6C33D1E48698 /* RCTShadowView+Layout.m */, - D5740ABC42701AE952A683A636FA9758 /* RCTSlider.h */, - 802CC5F20ADF1952DE5F0339EF33A0BF /* RCTSlider.m */, - 07529568832E5F59795ECB0DCC40DFDA /* RCTSliderManager.h */, - 22FAB21A7F60383460ED6C9AD9B679CB /* RCTSliderManager.m */, - B9A23C92A017240FF7D7732EF5965310 /* RCTSwitch.h */, - F82F6A35D4E347C92C7089138947C4C7 /* RCTSwitch.m */, - 002C57094DA700A2E880C9AFDF09F718 /* RCTSwitchManager.h */, - 37919E73B926421805715FA31167842E /* RCTSwitchManager.m */, - FED23D7AABCC17C58109B6E47211A366 /* RCTTextDecorationLineType.h */, - 4BF92E21B7778DAE98C6CE57778B3314 /* RCTView.h */, - 64D0AC5AD2DA4070D34ABFB08CDE01B0 /* RCTView.m */, - 58358AF138411BD81E287BC141376FE9 /* RCTViewManager.h */, - 9E1C02FFACF83C156465292CC9A2ACC7 /* RCTViewManager.m */, - 37C62E7C8B92C3475544C1304C7C5443 /* RCTWrapperViewController.h */, - BA209FC21F2A8B4D6E748065B71A63CB /* RCTWrapperViewController.m */, - 5D140B32A433A03997642E0B4B840755 /* UIView+Private.h */, - F545C6856DE8823E076CF7B63A3DF0EF /* UIView+React.h */, - 82B2055F0CD5236FA95ACE35065A6788 /* UIView+React.m */, - 1189E3D11A9C0A8CE1087AE3FFD86B54 /* RefreshControl */, - 14B11B856CAE0D7492D303AAACB2D28E /* SafeAreaView */, - A6C095389D414E755E196328B298788C /* ScrollView */, - ); - name = Views; - path = React/Views; + name = Surface; + path = Surface; sourceTree = ""; }; C22D7639420093ED0085941A484DFBA7 /* Support Files */ = { @@ -17613,26 +17695,107 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; - C289E41D5499BEDC90D240F17CC8C9AD /* KeyCommands */ = { + C2996937B571F082A28491934DCCAAA6 /* react-native-mmkv-storage */ = { isa = PBXGroup; children = ( - 7C9BF74DA58AB4B8C2F083D4E9F01F56 /* RCTKeyCommandConstants.h */, - 22963DC665AFB9DD4221D121C790D4B3 /* RCTKeyCommandConstants.m */, - 37B01A9E249125C6BDE674885F124BA0 /* RCTKeyCommandsManager.h */, - E2C29E69BBAA60B469FDAB2F39671609 /* RCTKeyCommandsManager.m */, - 51E7AD76FE246BCF9A8D7D9A31F0D879 /* Pod */, - 07909F7A493AE438785E868EADAFDB10 /* Support Files */, + DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */, + 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */, + BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */, + 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */, + 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */, + 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */, + 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */, + 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */, + D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */, + E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */, + 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */, + 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */, + 623B30ACF92AF9DFE025A5AC85E7658F /* Pod */, + 33B961758CD47BB742283486F0EE94DF /* Support Files */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = "react-native-mmkv-storage"; + path = "../../node_modules/react-native-mmkv-storage"; sourceTree = ""; }; - C5793F6C8D852E8B11159B2628818138 /* Pod */ = { + C316937714E3F51B9C385E59EB88B6C8 /* Support Files */ = { isa = PBXGroup; children = ( - 9BEB0EAB4D68D6F21D99F23BEBABE8BC /* react-native-slider.podspec */, + 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */, + 015A25D2F24C5E05205779B1A4BAC1D8 /* ReactNativeKeyboardTrackingView-prefix.pch */, + 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */, + DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + sourceTree = ""; + }; + C35584EB1147A59FB5CC2BD6E2C40F2B /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */, + 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */, + 4B736DE99F69C2EE054930F316B31C0A /* Pod */, + 9658D76025EDC3DB86FC95FE8BAE2B13 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + C42FFA6D244147A88DC3B8B52D5AEC20 /* Nodes */ = { + isa = PBXGroup; + children = ( + 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */, + 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */, + DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */, + 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */, + CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */, + 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */, + E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */, + 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */, + 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */, + 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */, + 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */, + BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */, + 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; + C4ACFE8FB0317AD9212930E9E5F1F057 /* BaseText */ = { + isa = PBXGroup; + children = ( + A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */, + E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + C4CE50BE886B79DBD9FE749BE209B9C5 /* RNFBCrashlytics */ = { + isa = PBXGroup; + children = ( + BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */, + B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */, + AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */, + EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */, + A3BA7870D82678CCF297623E779A7007 /* Pod */, + 68B333B521F2661162615BECA7986FFE /* Support Files */, + ); + name = RNFBCrashlytics; + path = "../../node_modules/@react-native-firebase/crashlytics"; + sourceTree = ""; + }; + C517FF34D8D7F08409C9CF27EF526395 /* Support Files */ = { + isa = PBXGroup; + children = ( + FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */, + 0ED415A1D72AF8ED46007836A649B44C /* ReactNativeART-prefix.pch */, + EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */, + BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; C58D9F18D8A5B9C619A30F6E2612B563 /* Logger */ = { @@ -17645,134 +17808,103 @@ name = Logger; sourceTree = ""; }; - C5B5F26957A2D1A88BA6D578003C5E99 /* React-RCTText */ = { + C5DCC868292DFFD07E37144C65ECAFF9 /* Pod */ = { isa = PBXGroup; children = ( - 2BFAE8F405BB41BF0BFB01969B9EF3D4 /* RCTConvert+Text.m */, - 5448220EA7FC470AE752F236EE90E40D /* RCTTextAttributes.m */, - FC20519EBE97BED871479FE81F68425D /* BaseText */, - E84B3F3A132F731234050023D7CDE300 /* Pod */, - 9BCB41BC7E2C6DC2E49894297BAC1D33 /* RawText */, - DE78CBD4DEF8A0C23BA1A272E2604669 /* Support Files */, - BD525591DDC1307646D15B23322C3441 /* Text */, - 1FD79B5E90F0A797C8808160E9FA0D17 /* TextInput */, - 9412EAAD1AB14E780390F8D16DBDC218 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - C5D1B2A15892F619C2E8FB60857D1F71 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - 74FBAD16EF30FDC924BE0EFB56FD6B87 /* CoreModulesPlugins.mm */, - 71378FC31CB3A783DEA54030CD8E8714 /* RCTAccessibilityManager.mm */, - 13EEDB47087C94BF230FE3C727ADFEB6 /* RCTActionSheetManager.mm */, - CE71AAFAC877F542DFE313DBD702D772 /* RCTAlertManager.mm */, - D533F060636B8AE2F97CE233A0513FEC /* RCTAppearance.mm */, - B1B6672333382D5B13F526B215EB8A39 /* RCTAppState.mm */, - A4CDB0D9C73E51FFA334B04682922010 /* RCTAsyncLocalStorage.mm */, - E63E033A8CDFEBAB16EBE653AA6EA3A5 /* RCTClipboard.mm */, - AFD02F6A5B255CC437C699658BE9F7F4 /* RCTDeviceInfo.mm */, - 34E7F7AD0CD6CB2D7FDCBCFD985F5E2F /* RCTDevLoadingView.mm */, - DC26500FECF4AB1B8CA66812404EEACA /* RCTDevMenu.mm */, - 195AF11C1098E12BE828303E9E9127D0 /* RCTDevSettings.mm */, - F3A15D5581EFFB3C30EC9CB006C82880 /* RCTExceptionsManager.mm */, - CA8534B3F49BA9E517B23261DB268B0E /* RCTFPSGraph.m */, - 11688C8490BBB8CB6B261E2A7625C9E3 /* RCTI18nManager.mm */, - 29931BA3EC220405FBD417A4E2529D23 /* RCTKeyboardObserver.mm */, - 708361AD98622C496D934609AAD7DECE /* RCTLogBox.mm */, - 18B2C156A8217BBC422049B064443B97 /* RCTPerfMonitor.mm */, - B3AFA96A667389C4CA89E98BB73C2A77 /* RCTPlatform.mm */, - 16A4505FB7C9A02DC6F46DBF29F18E8D /* RCTRedBox.mm */, - 3F541AD96404B3ED7F6B9922FEC7E1EC /* RCTSourceCode.mm */, - 146E7CB2DE1BBAE185CE0856DBEACFC9 /* RCTStatusBarManager.mm */, - 336524F926836BCF66DFDEAC3E03F669 /* RCTTiming.mm */, - 8CDCA41AA9F933074D57720A28E94412 /* RCTTVNavigationEventEmitter.mm */, - B3E8EDBFB5EA37FB6FB895A6E3F05229 /* RCTWebSocketExecutor.mm */, - B8C051CCF1D32FE5FD1447947982F0BB /* RCTWebSocketModule.mm */, - 2E1F80842684ACE9FED81D9272AB55FF /* Pod */, - 9BEA1A4580CCA547B4039795DF6E4B15 /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - C66488C8D11FEE57BCDB46409ADAC107 /* React */ = { - isa = PBXGroup; - children = ( - ABBE518178ED37B70E19C605FC044C28 /* Pod */, - 4C33625B1C7271A1492D6B8F3B238CED /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - C66EF49B20F4D86C705894FB0816ACEB /* Pod */ = { - isa = PBXGroup; - children = ( - 6CE83BAA13012CA7A2E06E5EBA69338B /* UMFaceDetectorInterface.podspec */, + AF4B58897DB5D08DFE4FF967DDFF100D /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - C6E36DDCFEBEB1AA81301EE426C4AF6C /* Yoga */ = { + C5E2E085289C40CB6D0809477B758A64 /* EXAV */ = { isa = PBXGroup; children = ( - 71C4AF489663C23D5BC35750058BF1FC /* BitUtils.h */, - BCC04C3A8EB769138A43B0A5CE76C439 /* CompactValue.h */, - 5813ADBAA0C15D71832FB96884529B48 /* log.cpp */, - A278B0D38AE628106EF8DDE09A9EAAE7 /* log.h */, - 079B88B3010CAA3BDF66EDC5B51DA6CF /* Utils.cpp */, - 591EB1308889D486345A46D358670D70 /* Utils.h */, - DB5FD753BDF04B117F98821A3370C96E /* YGConfig.cpp */, - 7E79FDD7CC2EC9F3DAECADE3628D7323 /* YGConfig.h */, - 8677E0BF848829D3E1652A025D1E4D78 /* YGEnums.cpp */, - 3B25C1D8D16448684FCFD474FA53279E /* YGEnums.h */, - B5E0DC5E1BC3BBA16837A8CD9FFD8A88 /* YGFloatOptional.h */, - 4BA6EBF5F20BB2BE9F96D3806F97F3BF /* YGLayout.cpp */, - F33813835CD12ADA8EC0E2BBDD550FB9 /* YGLayout.h */, - 856FCB255A581E3CF270291EBB650860 /* YGMacros.h */, - BEB9438D6D2AC22E718159DBDBD1F30A /* YGNode.cpp */, - D517919CB1B097F3B3B1E486B2A65314 /* YGNode.h */, - 6FB5F8CFF4168E5E659411A52894D5D0 /* YGNodePrint.cpp */, - B5748CB2AAAB927F22B385581467F17F /* YGNodePrint.h */, - 6426F1889A9791E3CE94D83466BD1B69 /* YGStyle.cpp */, - 14CE49FC9D2024159D9434BACD3A9F92 /* YGStyle.h */, - 1CA7976AE849406659F1CF6F05C8FC98 /* YGValue.cpp */, - 7CF0F48FCB7DA3B597CF530F497768ED /* YGValue.h */, - 71D27DAFA075A7DCA5AFDC142791F4A5 /* Yoga.cpp */, - E9322CD94ADEA82B250C1BEAFA2663BA /* Yoga.h */, - 1B142CD0FFB8FD55EDFA649642009291 /* Yoga-internal.h */, - F39DD6B8A37F6E037438E4FF848C67B5 /* event */, - 60F382BB533201A7B8D906DDEABB0AD0 /* internal */, - 4C81FD2D78D352CF7E248298232FA499 /* Pod */, - A192BB0FF19D051615E7C5B5DDAF5AF8 /* Support Files */, + FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */, + 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */, + 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */, + DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */, + 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */, + EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */, + 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */, + 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */, + 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */, + 4BC3606C86023E1BABAEEB367D81ECD2 /* Pod */, + 937845A46CC759D9F8C191E92F949C72 /* Support Files */, + 0175D4A2285D7A014772C16BE04FBDB8 /* Video */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - C91D676B532C074077A291D6A062E142 /* Support Files */ = { + C6B3F1CB2CE57E47EF2743BD1A56EBB4 /* Support Files */ = { isa = PBXGroup; children = ( - A110CFC654B4030D0993E2983532B012 /* ReactNativeKeyboardTrackingView-dummy.m */, - 8BC5CBBB6BA3FF4F74CA75F89AF5F937 /* ReactNativeKeyboardTrackingView-prefix.pch */, - 18AE49D5FBCC94274677B37AD41CEC1D /* ReactNativeKeyboardTrackingView.debug.xcconfig */, - 06B222188AA91F8F7EE6F66157299539 /* ReactNativeKeyboardTrackingView.release.xcconfig */, + 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */, + DC0530B18D643FC0A01CC5B69C62B0FE /* BugsnagReactNative-prefix.pch */, + B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */, + E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - C9A4A98A9683589BFF8FCA35116DBEEA /* Support Files */ = { + C6F9029A910D8BC8C0163810A27C265E /* ReactNativeART */ = { isa = PBXGroup; children = ( - 02269C01E4D43187425A44BF35FC177F /* UMCameraInterface.debug.xcconfig */, - C5D7EF7CCED8E1EAD38CD82C1BDBD802 /* UMCameraInterface.release.xcconfig */, + 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */, + 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */, + 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */, + 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */, + 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */, + E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */, + 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */, + 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */, + 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */, + 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */, + 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */, + 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */, + D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */, + 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */, + B3FBA663983BBDC4F2180010734E046B /* ARTText.m */, + 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */, + C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */, + CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */, + 18F1B47255129F664B546B7623C20B9A /* Brushes */, + CF42B896A9FFE0C0927F0E7E970B8810 /* Pod */, + C517FF34D8D7F08409C9CF27EF526395 /* Support Files */, + 546C59403695D545F9E2FA727AB8B1DE /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + C7EFCC0DF1E201722806663C2CA529FC /* Pod */ = { + isa = PBXGroup; + children = ( + C206B460F00BE3D60B15BE7D81CB3D3B /* EXLocalAuthentication.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + C86C1D1A171514AC0624798801B35FDE /* KSCrash */ = { + isa = PBXGroup; + children = ( + 1E78BD0F504D1A65FCB9DAECAE320657 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + C9023A8DF9AF325A6A182AAE34C6391F /* Support Files */ = { + isa = PBXGroup; + children = ( + 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */, + 4295B57AAE8A51F29CF4FA7D56C33278 /* EXPermissions-prefix.pch */, + 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */, + 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; C9A7E242B04B75180DD933503C90A025 /* Network */ = { @@ -17792,89 +17924,99 @@ name = Network; sourceTree = ""; }; - CA0E12971D986967F61C18448FC871BE /* Support Files */ = { + CBA0DDEA86B5331F979D7D142AA9848F /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - F70DEFBF0B97AC795FFDCE33D8A887FA /* EXKeepAwake-dummy.m */, - 7751B4CA59C5E15F1AC2B6314FA90B88 /* EXKeepAwake-prefix.pch */, - 94B1A05E1C51C61F15A58D587C78F9E4 /* EXKeepAwake.debug.xcconfig */, - D44CB57F148AA24505ACD85282692CD6 /* EXKeepAwake.release.xcconfig */, + 7E267174212E19B04A01C07145D71267 /* UMTaskConsumerInterface.h */, + 73E9AEB2E778BD948922EDDACC00E7F5 /* UMTaskInterface.h */, + 6D326D6854826E51E3B60CC4C38C3D10 /* UMTaskLaunchReason.h */, + 0D57A3B97BBF036A0F89F1C8EB0028D8 /* UMTaskManagerInterface.h */, + C9CA371FF7BCD3F21171FD25C7E984EA /* UMTaskServiceInterface.h */, + 6A6E0CB9BE2DAE8EFEA047CACFB426E7 /* Pod */, + 7E785726C5B8AF523BFB6D7C2B4BD8E2 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - CD3321590AC0F4438549E19563DB221B /* Support Files */ = { + CBFEEB473A4D4FE51210FD04BAF2E4A2 /* Support Files */ = { isa = PBXGroup; children = ( - F695819632C545F86FDF473A7C41FD05 /* UMSensorsInterface.debug.xcconfig */, - 922A29D2636D81AF4F0042A215EC5BE8 /* UMSensorsInterface.release.xcconfig */, + 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */, + 0137B39BC50F3262C2E164A39B235DD4 /* react-native-cameraroll-prefix.pch */, + 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */, + 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - CE36C474B25A833E0DD4846EEAB8E798 /* RNFBApp */ = { + CDD666C781E3AC61E01A8E1E85A729BE /* Support Files */ = { isa = PBXGroup; children = ( - B17BA3751D3B4F869EE1A11EC9ED280C /* RCTConvert+FIRApp.h */, - 626CC6EC015D37301F18521C042995CD /* RCTConvert+FIRApp.m */, - 15D921D66B907E10A8E951D0A9CEFAB7 /* RCTConvert+FIROptions.h */, - 24878E3C9339288309F57E390D19000B /* RCTConvert+FIROptions.m */, - F4D3ECB78AB39F7A0F60DE7E0C9D3D42 /* RNFBAppModule.h */, - 1632D81B9E25D2A642A6AB3039D475B5 /* RNFBAppModule.m */, - 424E6D77CFA2CCA59312A2F68111BD12 /* RNFBJSON.h */, - A0631A98F512BEC52F1420E9EBD81DE4 /* RNFBJSON.m */, - 586ACCB789EB27261770E79DEEADE202 /* RNFBMeta.h */, - B097AA51229244C6EA25EF8B57BBB1A1 /* RNFBMeta.m */, - 747262C8838A27CD99D77DFADDBF424D /* RNFBPreferences.h */, - 65A416E98CE08276C9891C6E88EFD5AE /* RNFBPreferences.m */, - 52F5D2B9D9020F8F195D9275074CA98D /* RNFBRCTEventEmitter.h */, - 751B2E0E7907B4AB7DCC2F12B3E88B52 /* RNFBRCTEventEmitter.m */, - 11EC53117147F13D4CE7394A0FEEDD14 /* RNFBSharedUtils.h */, - F5ADCE45257284099E6DEC502C5FCBFD /* RNFBSharedUtils.m */, - 2583B5136BA9F9BDB0FA0CBB20BDCC76 /* RNFBUtilsModule.h */, - 372DA27E5F1A0ED7C36F0BD979C4FD26 /* RNFBUtilsModule.m */, - A48648A2E4A8D6D50E6596F6B3A006C9 /* RNFBVersion.h */, - 5E710D1100A122DC52143D5CF9C532F6 /* RNFBVersion.m */, - BD21F87A41AFCA7CB57DBB0D6A2CA977 /* Pod */, - EF5FE441A216DBBF015E7166544F6E1E /* Support Files */, + B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */, + 21C25CB38B6A575937CCDBD087F8E3BA /* RNDateTimePicker-prefix.pch */, + FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */, + 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */, ); - name = RNFBApp; - path = "../../node_modules/@react-native-firebase/app"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + sourceTree = ""; + }; + CECEFD6E271041A8ABD3586765BFE9D6 /* RCTAnimationHeaders */ = { + isa = PBXGroup; + children = ( + DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */, + 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */, + D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */, + EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */, + 500CB55126021EE637A7B9B7D72E411D /* Drivers */, + 7EFBFCE9A24CBD2BACDEAC662C42F6DE /* Nodes */, + ); + name = RCTAnimationHeaders; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 594B28820B19CA6BFF846E4F60E2E3E9 /* Development Pods */, + 721FBB9C55DB8A2C167B27192DEC6A44 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 3400068431D3CEA258078DCD8DA8C835 /* Pods */, - 0FB0613488D02E465DF266B09D0B8BA5 /* Products */, + 9C96ADE704FBC758CF1CCA401EA0546C /* Products */, EF5C4859F5A12DBFB3EA6B1F9AB46C96 /* Targets Support Files */, ); sourceTree = ""; }; - CFE6F7D249161B009BC5C083B4B07034 /* Sentry */ = { + CF42B896A9FFE0C0927F0E7E970B8810 /* Pod */ = { isa = PBXGroup; children = ( - 7CAB054EF59ACE8573887C4C0CC0B289 /* BSG_KSCrashSentry.c */, - F6D808B31B6193F0FFAA49F97695BA4E /* BSG_KSCrashSentry.h */, - E611552A0BBA207D1576DD87B7C20A43 /* BSG_KSCrashSentry_CPPException.h */, - EEDC75D130EEE6BD296583E29CD906FE /* BSG_KSCrashSentry_CPPException.mm */, - 783F492CB119986B44C6D820A0E8A4F9 /* BSG_KSCrashSentry_MachException.c */, - C6C1371CF0CA60745FE6D0CFA7060A59 /* BSG_KSCrashSentry_MachException.h */, - 358EC2B17447DE2EA1730C090D336BFF /* BSG_KSCrashSentry_NSException.h */, - 8A891B8AC31C09D2B204B0A70FE8F490 /* BSG_KSCrashSentry_NSException.m */, - A9BC48E400E1ED2E1C0240E038929D42 /* BSG_KSCrashSentry_Private.h */, - F590FC07F8675B09023B6768A3C000B0 /* BSG_KSCrashSentry_Signal.c */, - BDD786D0B4814D5374113323BB5BC250 /* BSG_KSCrashSentry_Signal.h */, - CDA6B2F5C02AF690B51EA8545C2988C7 /* BSG_KSCrashSentry_User.c */, - 4ACB07BA438DD46A63C3C2D5D0D6F55B /* BSG_KSCrashSentry_User.h */, + 955B0ABD6B881D56D89D8467D05E1026 /* api.md */, + 0198722D68E03C4B9B279C4D4CD8A0D6 /* LICENSE */, + CDED5F5372FA6EF7326495F735851235 /* ReactNativeART.podspec */, + ED13537DBFF77DE7964F659DDCBBE171 /* README.md */, ); - name = Sentry; - path = Sentry; + name = Pod; + sourceTree = ""; + }; + D0A1B4D080DF1AF22AE4211A40CFB0D5 /* Pod */ = { + isa = PBXGroup; + children = ( + 7FDB299549A5E3A7F289B83A8CDB39D5 /* LICENSE */, + 0B54E26720C532089346FE86B3132868 /* README.md */, + D9D5FD2D636CD6383F462202B6FFDBE1 /* RNVectorIcons.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + D0BD31B68E3F35B436BCABC0638963C7 /* Pod */ = { + isa = PBXGroup; + children = ( + D474F20FA3901D402C092E2072F7FDA2 /* LICENSE */, + AE47709761629CABA2BA6E4131D3A178 /* README.md */, + F650D5A2DDB953E8551DB0E070D2CF99 /* rn-fetch-blob.podspec */, + ); + name = Pod; sourceTree = ""; }; D1B0B488533552F124F850163A3CB132 /* FlipperKit */ = { @@ -17898,16 +18040,13 @@ path = FlipperKit; sourceTree = ""; }; - D267515099B3B9BE4B2CEAFEE215897F /* Support Files */ = { + D27E58D8E790DFE35F708EF1761E8737 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 4EB1A4DA9BDF28C66925E12EDF27F78F /* EXFileSystem-dummy.m */, - 702D9073C61160F0897DEDA40D8F41C8 /* EXFileSystem-prefix.pch */, - 70DF282B72D68E188FAA47721B65A0F4 /* EXFileSystem.debug.xcconfig */, - 98BC1C34B1DC7B5C3D34F711F68A04E4 /* EXFileSystem.release.xcconfig */, + E709B7D918895085766532057B550217 /* Source */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; D2A5DFCE08059B30609B67A4B1B6C486 /* Support Files */ = { @@ -17922,70 +18061,117 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - D55D53C4B284BB9B936CE39954F57C10 /* Inspector */ = { + D2BB87ABF2D0379B8151A30B546665CD /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - CE0F0AE03C1224FEF30010A099A79261 /* RCTInspector.h */, - DB9D765F6C02C20AC24D159103D6A6E1 /* RCTInspector.mm */, - A7409C79FAAD7C1330FBAA89BF53967A /* RCTInspectorPackagerConnection.h */, - 7C41B8A88C3EDF158200E82306E5C1DE /* RCTInspectorPackagerConnection.m */, + EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */, + 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */, + 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */, + 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */, + 94B2B74240F5AECB6A1F0A2C293FF151 /* Pod */, + CBFEEB473A4D4FE51210FD04BAF2E4A2 /* Support Files */, ); - name = Inspector; - path = React/Inspector; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - D55FFB05E64D707E572E589ACBE38829 /* UMFaceDetectorInterface */ = { + D35F6BBC82BB0DF5ADA0BE825A2EEC71 /* React-RCTText */ = { isa = PBXGroup; children = ( - 10141445BE7F277BB6FD792DFFDD44D5 /* UMFaceDetectorManager.h */, - CE8C5785016B50C993F54C102DD4AED6 /* UMFaceDetectorManagerProvider.h */, - C66EF49B20F4D86C705894FB0816ACEB /* Pod */, - 7174472A16E3E69D971224697E72B636 /* Support Files */, + 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */, + 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */, + 23229A9F79137EC5C32A5FC4974614D2 /* BaseText */, + 43EE287EE35AB05B5D93E136E5EDA47F /* Pod */, + FCFBBE0E5DDCEE2654840AEF57F46DDB /* RawText */, + A25D44189272012B9CE829CE329E5F32 /* Support Files */, + 0C62C6FA83619C08BED907116743383D /* Text */, + 8F464B8A277C64EFD4C6E529DECC8330 /* TextInput */, + 408FB929E0634581F9E6D0326B224995 /* VirtualText */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - D79A7AFD2D1053540938BA046D77AD5B /* ReactNativeART */ = { + D526C46309BDFACBF5E631780994DA9A /* Pod */ = { isa = PBXGroup; children = ( - C662A9566212F94052EACC10AD44FE80 /* ARTCGFloatArray.h */, - 6692B8FD79F9BD5FF6D035B9D224E594 /* ARTContainer.h */, - 0537BDAFF12C135EA21B6F94962A9994 /* ARTGroup.h */, - B5464E016C06A4508A341FB839654EC5 /* ARTGroup.m */, - 20C9DE01AFD50894B7FA6AEC7E747D52 /* ARTNode.h */, - 3FA37F565C59CCB9CB2E16012155EF72 /* ARTNode.m */, - 6057CB753D22B49D3B6D49899E4819EF /* ARTRenderable.h */, - 5233738FC62A3A8BE45195C8268F1771 /* ARTRenderable.m */, - 470EF1B9CCE7AFA44016C5FA4E492987 /* ARTShadow.h */, - 49BC5C1725241ECECC272897FCC97DD7 /* ARTShape.h */, - EE0CC7A8BA9D885293CD3021D6468873 /* ARTShape.m */, - 1EEB9048CBFADF1DDAD9C6F46AF55816 /* ARTSurfaceView.h */, - 80B511EBD47FEBE7309AF44EF877F037 /* ARTSurfaceView.m */, - 72E4C9E864E1F4845769E5BF13AE2E44 /* ARTText.h */, - 0505B3F898B1BEA767F4FDE42E96EDF6 /* ARTText.m */, - 7916C36E951F7C1C6CABEC68000A34F3 /* ARTTextFrame.h */, - C06C463B264BF781C210F9668673FC4C /* RCTConvert+ART.h */, - 30788B55CDB4C0148D7FE3670AD9DDCB /* RCTConvert+ART.m */, - 533C6E4DB85A7BAC7CA444C357D16634 /* Brushes */, - 1DC27121611BA1E49D849F8DC889F03F /* Pod */, - B144A7DE35CB46F17F37309BA0E58371 /* Support Files */, - E434E4020369E6B0CB5F8C047B2EA232 /* ViewManagers */, + 382EFED58DCA8E7193FCFBD1BB62B4B1 /* LICENSE */, + F5F84D10EF74634D0FCB13129D4B8F22 /* README.md */, + 4C5BC8126FADA854265387D3DD55D91F /* RNFBApp.podspec */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = Pod; sourceTree = ""; }; - D7D69580DAA4B30B56DA2E2C978D292A /* Support Files */ = { + D5C29F1A49DB36147E9D23E58FF89FD2 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 9E4269D853F0E5869A7364D8ECAF81CA /* react-native-webview-dummy.m */, - 9F625D25120FECE65B6A6CEEB25AA28F /* react-native-webview-prefix.pch */, - C51E20BA37A4D8FF9A4505E0314C131A /* react-native-webview.debug.xcconfig */, - 3EC3EAC14693F848200CBE8A3D56E8BB /* react-native-webview.release.xcconfig */, + A347E733DD144D64D06020C3913C52B3 /* Compression.h */, + 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */, + 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */, + 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */, + AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */, + E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */, + 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */, + F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */, + 03152C53207508BF08513A8D8A420D20 /* Pod */, + F3222475CBE281DAD1C87C8B10BBBC48 /* QBImagePickerController */, + 154F796048428F6E3E4481B068D71EC8 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + D73BBA1C2866858577B8A74420A9B8E4 /* Support Files */ = { + isa = PBXGroup; + children = ( + AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */, + 3448D6404B855EB294BFB114FA1124DF /* KeyCommands-prefix.pch */, + 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */, + 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; + D7D299527FC6E48E0616004EC49AB790 /* Support Files */ = { + isa = PBXGroup; + children = ( + DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */, + 4AE9D6CF50E23989C0B2606E12509C7E /* RNCMaskedView-prefix.pch */, + B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */, + 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + sourceTree = ""; + }; + D811F42B94AA4B26876A1284A6554C8B /* RNConfigReader.xcworkspace */ = { + isa = PBXGroup; + children = ( + 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */, + ); + name = RNConfigReader.xcworkspace; + path = ios/RNConfigReader.xcworkspace; + sourceTree = ""; + }; + D8273CA949665AC698D1E87616D7FCB1 /* Support Files */ = { + isa = PBXGroup; + children = ( + D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */, + DA5885B5167CF1A74D09B120F0BAB820 /* RNRootView-prefix.pch */, + 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */, + FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + D867B9C36AAF93BB07B4B326E76A4BEE /* Pod */ = { + isa = PBXGroup; + children = ( + C1DE9F2CA4B226AD48DEADB4C14A2A5D /* RCTTypeSafety.podspec */, + ); + name = Pod; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -17995,121 +18181,136 @@ name = Frameworks; sourceTree = ""; }; - D9796B2B9DDAD74CC7D8BDF19572D6EF /* Support Files */ = { + D90B3B1C85E811A1E6F6E2F46ECB939E /* EXFileSystem */ = { isa = PBXGroup; children = ( - 6F9B0246F602E0AB9F6C3B2246998377 /* UMTaskManagerInterface.debug.xcconfig */, - 8FF702BD926BD5A959A4BDC01C8AA12E /* UMTaskManagerInterface.release.xcconfig */, + 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */, + D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */, + 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */, + 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */, + 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */, + 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */, + FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */, + 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */, + A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */, + 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */, + B479ACCE09BBADB7D83DB327ADAB2FFD /* EXSessionTasks */, + 9C2BB1CC9390462F2FB8D3EFF60A138F /* Pod */, + 02555636E7DC8D88C01F0B4D22AAD75E /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + DA0155A9707F7A7502C69CB1B71C31E9 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */, + F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */, + BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */, + 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */, + B02039631428F9D4DBCACFEDCAB96BF9 /* Pod */, + 7AEB97E7662E5C9DB5488345FDBEF150 /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; + DA660677291CBCD1ECE316AE4E64570F /* Support Files */ = { + isa = PBXGroup; + children = ( + 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */, + 7E0F178A220E33C2EB642977FE77EE0E /* React-cxxreact-prefix.pch */, + 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */, + 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - DA21057CBD57734E152DC931EF26B1CA /* Modules */ = { + DBFEF84851C94D8F9D9E178D5CDD5327 /* Pod */ = { isa = PBXGroup; children = ( - E8A6E70C841CA850AAD11B0F51AF671E /* RCTEventEmitter.h */, - 858251DCD9E3940CBA8A7A4311DC088F /* RCTEventEmitter.m */, - 907B70E2563C91715715DD817F1B8355 /* RCTI18nUtil.h */, - E02D368AA991FD9818C2E0B617FB8951 /* RCTI18nUtil.m */, - 1F01565393F274A95E7F165EBA9B8E11 /* RCTLayoutAnimation.h */, - 52AADD7F3AB596E615B73E00DA880A3A /* RCTLayoutAnimation.m */, - EF273B30E01A0A59E87629456C44C4D1 /* RCTLayoutAnimationGroup.h */, - 8C6D07D86FEA4DA05A4A7A59F9E587D8 /* RCTLayoutAnimationGroup.m */, - F64969505F78D6563284A8631E900736 /* RCTRedBoxExtraDataViewController.h */, - 4EC113C0EF7B82E21A0472CC6E26E39E /* RCTRedBoxExtraDataViewController.m */, - 9CFEA41A844ABF4DE1C0C6FD75558E64 /* RCTSurfacePresenterStub.h */, - CE87DCCC6ED705AB23259C25612A104F /* RCTSurfacePresenterStub.m */, - 8EFAEF5638AA5214DE537E972803CB0A /* RCTUIManager.h */, - 4DDBECF15C17BE448A73D31A46C107F7 /* RCTUIManager.m */, - 2C0B53B80D1B454491C9231D96BD06EB /* RCTUIManagerObserverCoordinator.h */, - 72433052C6A1352EEF820CF79DFCF9CC /* RCTUIManagerObserverCoordinator.mm */, - DFEF596FEB2963925123BB9BCB943EDA /* RCTUIManagerUtils.h */, - 3C0E93B13F0399C2CA63A93A6229967E /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; - DA96467F35A8B93BD8AD20E8CAAA1D2A /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - DEFACB854A253400D27888A1E5CC08DC /* RCTConvert+Text.h */, - 2524D22CB8F38C41F5E5F2A2C7DDFF26 /* RCTTextAttributes.h */, - 3788DF3FEF2BD13F973CCCC547938F87 /* RCTTextTransform.h */, - FA1159323F99D37318B751775B056A5F /* BaseText */, - 2C8336EA4FA36E016E572210C3F8BAA3 /* RawText */, - FB820858AF1CE0B8458B01555839130A /* Text */, - 3528C79B8C5D9EE26F74CFBC1EDCB463 /* TextInput */, - 2C4D91B97016CF93630D64A61F46A437 /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - DA9AADF8721688CBF2A78970AB37B3CB /* Pod */ = { - isa = PBXGroup; - children = ( - 4960427D2E93A9CA8D0F5EEFE4171793 /* RCTTypeSafety.podspec */, + E9CEF55F67E59B30ED7E9C871EF1FAEF /* LICENSE */, + B8E787BB827088FF028634E3C9C190AC /* README.md */, + DA9430DEDF6AADB876CE4B5372DD1623 /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; - DC43DB3A6E75672B4F9C4BF13E219C0E /* Pod */ = { + DCBDC2813D02CD43AAD20A4D4BBBB537 /* CxxUtils */ = { isa = PBXGroup; children = ( - 7DD42996F2FFC95E36CE2214811ABCDE /* EXImageLoader.podspec */, + F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */, + 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */, ); - name = Pod; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - DD7345609E28482D616C7C277F2DA3FC /* BugsnagReactNative */ = { + DD762FA6B790835B10AD4A5F866A4E79 /* Support Files */ = { isa = PBXGroup; children = ( - C9E2F103FBDA0F0C9FA2944FF78C20F8 /* BugsnagReactNative.h */, - 23FB808DA54DB260FD071C1113BC47E1 /* BugsnagReactNative.m */, - F7C0761213A277C236535E931D8AE61A /* Core */, - 8A6B77506B10C52E72C1397A9F67DEDA /* Pod */, - 69A6709AEE8D5C38E6C2BBAB77E2E905 /* Support Files */, - 88FA18F3FE97490F1DC84C64DEB2C30B /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - DD7B45BB1C5D0486FF55AE4272EC2F0B /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - 391F22CFFC5F12C08770D0B68EF2315D /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - DDACD178A6980BA962A455FA8FF72150 /* Support Files */ = { - isa = PBXGroup; - children = ( - 808D5AEA18F38E3F24F5F2EC4FECF644 /* RNLocalize-dummy.m */, - 52F5DF750D883B7546CF61B65C4BD98E /* RNLocalize-prefix.pch */, - B79F35BFC568B66EE5CBB1E49720ED68 /* RNLocalize.debug.xcconfig */, - 38257B73E8D20918F0D7F91495EB8CD1 /* RNLocalize.release.xcconfig */, + 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */, + 31ADD9F6D606D4723C903E071B53FF57 /* RNReanimated-prefix.pch */, + 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */, + 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - DE76730A17B67296DB937D9293F122AA /* Default */ = { + DD9331D5DFCFE97933F9B50DC25D6CC6 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 022B1FF016C2B9EB11741AC4E01FA67D /* Base */, - 12A254D74A266344434954F3E8E68AD3 /* CxxBridge */, - A481A0011D68507B3BA2CABBE01D44A8 /* CxxModule */, - 25449DD121CF2138CA560F04419056E7 /* CxxUtils */, - DA21057CBD57734E152DC931EF26B1CA /* Modules */, - 48C96F31E8C486D11FD849377BF08549 /* Profiler */, - 5BA821DB90F32D4F346397AC54969550 /* UIUtils */, - C11EAB75369558C2AE498127031F81CF /* Views */, + 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */, + C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */, + 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */, + 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */, + 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */, + 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */, + 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */, + 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */, + A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */, + 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */, + 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */, + 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */, + F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */, + 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */, + 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */, + C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */, + 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */, + 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */, + FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */, + 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */, + 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */, + 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */, + 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */, + 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */, + 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */, + C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */, + 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */, + 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */, + 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */, + 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */, + F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */, + FC63095311C14548106688A9B3279C75 /* RecoverableError.h */, + E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */, + 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */, + 3022F38DDE88CB00FB5F15B26BF244DE /* Pod */, + DA660677291CBCD1ECE316AE4E64570F /* Support Files */, ); - name = Default; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; + DE38A7557C1E27EF1209860DC5428B02 /* vendor */ = { + isa = PBXGroup; + children = ( + D27E58D8E790DFE35F708EF1761E8737 /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; DE77D077B3E9D90E037011C88B85E522 /* Frameworks */ = { @@ -18121,18 +18322,6 @@ name = Frameworks; sourceTree = ""; }; - DE78CBD4DEF8A0C23BA1A272E2604669 /* Support Files */ = { - isa = PBXGroup; - children = ( - 63980E49F92190E5FC36DABD9FB0F023 /* React-RCTText-dummy.m */, - 355ACA04FDED80EDF1C324CDD7B49481 /* React-RCTText-prefix.pch */, - 10A1D0AA2EF687A78F997618008131B8 /* React-RCTText.debug.xcconfig */, - 2F9AC0BF52F59D118EFD17E5FC6F1092 /* React-RCTText.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; DE966976040D97D55974F75579CD8524 /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( @@ -18144,30 +18333,6 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - DFC8B60CD26CDD1B827E99425DCC6FB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6A8ED40A291A6AE124B7B9D6D6C53D18 /* RNGestureHandler-dummy.m */, - 598D73B27453B8143FD429705BFA0948 /* RNGestureHandler-prefix.pch */, - 4A041B18F495C3F549F646CD9AE0E0BB /* RNGestureHandler.debug.xcconfig */, - E928DBD0757EBEF1AEA65286E458FF68 /* RNGestureHandler.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - E017DA7ADFCF707EC62D1C5A7CFE5A21 /* Support Files */ = { - isa = PBXGroup; - children = ( - 70BFB8CE2985921B4231D11015731350 /* React-jsinspector-dummy.m */, - 008F846085D0B5FC40A5D0B60F86634F /* React-jsinspector-prefix.pch */, - E1D7A606321EFE926F2FC0A39B4D0151 /* React-jsinspector.debug.xcconfig */, - 4CC219A7CA19102C8A93B83DC75B8F42 /* React-jsinspector.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; E04736081CFE4BC73F78EC30146236D2 /* GoogleDataTransport */ = { isa = PBXGroup; children = ( @@ -18218,102 +18383,61 @@ path = GoogleDataTransport; sourceTree = ""; }; - E07B6754149382F58C60BAD7A09BA2F5 /* react-native-safe-area-context */ = { + E1009CF6D720934DF51787A152623C92 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 9CEFD4F488C804AEC4D80E7A140BEAEB /* RCTView+SafeAreaCompat.h */, - B51DCF22D60FF88B6547415A2548B15D /* RCTView+SafeAreaCompat.m */, - FFC693A9F4CEED6BF32C67844621F6AC /* RNCSafeAreaProvider.h */, - 35275E01F0936419312AC295FA720ABE /* RNCSafeAreaProvider.m */, - EB13DF1C29A935A0EC898C6CF43AF75F /* RNCSafeAreaProviderManager.h */, - AC42F42E007DD4FC1C3404A4885D5F81 /* RNCSafeAreaProviderManager.m */, - B29B155D5D38D41B1A15462AAC4699B7 /* RNCSafeAreaShadowView.h */, - 150FDA9F3C99A2574AD5D92EB5202F68 /* RNCSafeAreaShadowView.m */, - DAD21D705425C0F0102E00CEE5B0FBFA /* RNCSafeAreaView.h */, - 71DC31974AE9F7DCA7FC4F88DA8CBDA9 /* RNCSafeAreaView.m */, - AA0FF811D8740D4E736612F4A20978FB /* RNCSafeAreaViewEdges.h */, - D1B8283114C77400CDCD5F8AB179FBF1 /* RNCSafeAreaViewEdges.m */, - 93576F5BC3193AD26A3965D35761AA9F /* RNCSafeAreaViewLocalData.h */, - 4C4DEAC15E360E994008B58DBE5A3371 /* RNCSafeAreaViewLocalData.m */, - 589A44D834F812143711213E0E2FBDF5 /* RNCSafeAreaViewManager.h */, - 04C7B72F0EFA54E3180F59C8D42AFBF8 /* RNCSafeAreaViewManager.m */, - 0E420CBAD1F0BC698213A3505A954389 /* RNCSafeAreaViewMode.h */, - 4DC5995E8AD9B68CB591E4AFCA27351B /* RNCSafeAreaViewMode.m */, - 8CD93845B9C5E0E10970F39310E34C0A /* Pod */, - 4D2756C7009349AF94BD0A055F629B26 /* Support Files */, + C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */, + 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */, + 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */, + 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */, + EC0D0A44D043EE321C9D5D69FD78B80C /* Pod */, + CDD666C781E3AC61E01A8E1E85A729BE /* Support Files */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - E09DD8F6ADA151A6EDD08549929970A5 /* Support Files */ = { + E1A6A5527B8AF92949B3BD0A9F957A70 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - A88925741244FB2F7D19AEE6C9B2F904 /* RNFBCrashlytics-dummy.m */, - A63170E511426653865C518DB425C63D /* RNFBCrashlytics-prefix.pch */, - 71634BE8362887E78557650C5B02C864 /* RNFBCrashlytics.debug.xcconfig */, - A7FC575ADEE4F53309D7254C630BE9F0 /* RNFBCrashlytics.release.xcconfig */, + 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */, + ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */, + BBA837FCCB47B023F6823CB6D1E7690B /* Pod */, + 9BB6234C987718DC13F14E841155ACC7 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + E3121BE0E0EA9664F75E7DCE36678653 /* jsi */ = { + isa = PBXGroup; + children = ( + 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */, + C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */, + 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */, + 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */, + 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */, + 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */, + 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */, + C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */, + E994EEBAC182321BD1566AC9E72097FE /* jsilib-posix.cpp */, + 0956FB3C42355DF5911478E276BEC1D9 /* jsilib-windows.cpp */, + DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + E53604BCCEDA8D0736C10B7BE25BCFF4 /* Support Files */ = { + isa = PBXGroup; + children = ( + E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */, + 4058209DFF0440C625A956E49C868465 /* React-jsiexecutor-prefix.pch */, + 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */, + 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; - sourceTree = ""; - }; - E272A1A3520A5A1DB9AD052B51D7F3BA /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 948B0D78654C4D4224E35DF17A8D7165 /* UMNativeModulesProxy.h */, - 1F4B6EB01D6DFD25955838BD7A81BD27 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - E2F641DBD021FD8449C55D096CC150F1 /* Pod */ = { - isa = PBXGroup; - children = ( - 1CBADB703A00AAB512A898E3A59620BC /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E322499FB77B51C930D164923A175471 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2C34BCA804FA4F0B63431AB1118300D4 /* rn-fetch-blob-dummy.m */, - 0B7655338EC6F7B536BFBDBD6E8FE422 /* rn-fetch-blob-prefix.pch */, - 011001D7E4CD4B4C9ECDCBF6C0D5EBCE /* rn-fetch-blob.debug.xcconfig */, - E9379E0C23040FFB843EFB36EA502582 /* rn-fetch-blob.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - E434E4020369E6B0CB5F8C047B2EA232 /* ViewManagers */ = { - isa = PBXGroup; - children = ( - 16ED6C24114CA661C03633A9C7058F34 /* ARTGroupManager.h */, - 53133026034A1AB4969D0C355D691458 /* ARTGroupManager.m */, - FF55FF0DE5C7727BD4B69263E69875E0 /* ARTNodeManager.h */, - 0876550D02B6C214CCCD1558AAB6CC4E /* ARTNodeManager.m */, - 7EDEA5452550CB951CF4200FD15053EE /* ARTRenderableManager.h */, - 3CF2E48F483BC6372E72A622A3F33401 /* ARTRenderableManager.m */, - ECD2C8F2EFAC94109D2732AE6BB0E2E5 /* ARTShapeManager.h */, - C3DC3601D78D546A2B55CBD7402F0DBC /* ARTShapeManager.m */, - 3845F62847242E19C0EE7C3CCBEA4BBB /* ARTSurfaceViewManager.h */, - BB4F566B9167F8B5C5D3CB768C2CBF6A /* ARTSurfaceViewManager.m */, - C64622D2FF9BCC7D1F532139C68580CB /* ARTTextManager.h */, - A4D4864EFF83C585A5F6649A04C15C12 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - E5FF40A335A71D7B2057AEB8CE28194D /* Resources */ = { - isa = PBXGroup; - children = ( - 8F48C9A2DE3AA95645BF6F10627F1F1D /* en.lproj */, - ); - name = Resources; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; E6041D8B6B8E368DC722C385B69E7164 /* Support Files */ = { @@ -18327,35 +18451,14 @@ path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = ""; }; - E62BCC32300E2937C8533C8E30631E7C /* Multiline */ = { + E67AAC0A27FEC1102B53A4CE8AF5575E /* Pod */ = { isa = PBXGroup; children = ( - 20968529B02D627571B5FF52DB9FD471 /* RCTMultilineTextInputView.h */, - 43A3789C40165148A9DFAEE2A958441C /* RCTMultilineTextInputViewManager.h */, - E1FFC802CC85DA133D6F76AC932F2850 /* RCTUITextView.h */, + 323CACA5D98061184BA9E6A93C37C476 /* LICENSE */, + A14B74BF4A78AF2FD2CB9116BDEE4A7D /* README.md */, + 899BA33EB23D74067CDDD7DE3142E609 /* RNLocalize.podspec */, ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - E64AA56808C2CB8EDEA06328AF157F85 /* EXAV */ = { - isa = PBXGroup; - children = ( - F08B5506083FF33550FED572722B2687 /* EXAudioRecordingPermissionRequester.h */, - 12DDEB7D4D4C13B9CC1CCACA8220BE86 /* EXAudioRecordingPermissionRequester.m */, - B7473579B5ECD99A173E7C4C3CC480C8 /* EXAudioSessionManager.h */, - 17EBA0EC648BD8BF27D1C89D95CE415A /* EXAudioSessionManager.m */, - 26C9FC5EDD931700847087DABAEEFAA0 /* EXAV.h */, - E443A8989FC2694504C95C531AA065A1 /* EXAV.m */, - A55251730E9B0658BF746EC7F25139FA /* EXAVObject.h */, - 980B298D5BCD8C16C3F0E8541E137A25 /* EXAVPlayerData.h */, - A15F613C808A7DF83EAB843ED238BA8B /* EXAVPlayerData.m */, - 94FCDCDEF1F05D63F8C272DF0CCB328D /* Pod */, - 7538AD418C2A3146AB86A1A40D5E3703 /* Support Files */, - 48D6A1D445030E1CDF62E148B539AE5A /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = Pod; sourceTree = ""; }; E6A074F3C67735E1AA87DFA3D2534FEF /* Support Files */ = { @@ -18372,18 +18475,61 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - E6D706898FA2C398BF1E0FF9BA3B38A9 /* Pod */ = { + E709B7D918895085766532057B550217 /* Source */ = { isa = PBXGroup; children = ( - 3089C64E161B93DD317CE563267157A4 /* React-RCTVibration.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E7091780DDAF4C84A20ABE0F67933DCE /* Source */ = { - isa = PBXGroup; - children = ( - 0CBD8C07284BFACDBDF52BDF6AFA998E /* KSCrash */, + EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */, + A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */, + 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */, + A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */, + 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */, + B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */, + E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */, + 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */, + 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */, + CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */, + CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */, + FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */, + 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */, + 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */, + 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */, + E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */, + 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */, + B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */, + 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */, + 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */, + 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */, + A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */, + 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */, + 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */, + 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */, + E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */, + 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */, + BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */, + BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */, + F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */, + A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */, + EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */, + E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */, + E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */, + F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */, + B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */, + 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */, + 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */, + 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */, + DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */, + F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */, + 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */, + E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */, + EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */, + 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */, + CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */, + ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */, + 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */, + 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */, + 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */, + 467975AFD9EDB1602266121543BE4CBF /* Private.h */, + C86C1D1A171514AC0624798801B35FDE /* KSCrash */, ); name = Source; path = Source; @@ -18400,157 +18546,118 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - E77952EC03091425B87DF149B3929486 /* Pod */ = { + E78C758DA71A1C01082204E4DD379D47 /* Support Files */ = { isa = PBXGroup; children = ( - 462203BF26F7FB5BF488F334CA061168 /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E7E6B472F7C226716CC8BDE2A3219EE2 /* ios */ = { - isa = PBXGroup; - children = ( - 57EDB6FD342F2C956D1ACBEC796930AA /* RCTTurboModule.h */, - 1C35AA5BBA044681A80F04B30B6DF2BD /* RCTTurboModule.mm */, - 91492957304F8FA228CBFB465E72DA95 /* RCTTurboModuleManager.h */, - 45F51FDA868E69F187D9FC22232C3AB2 /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - E82CE57C801C6AE054EDB1D936E24FA6 /* Pod */ = { - isa = PBXGroup; - children = ( - 5EA1D5A4634AEB461BF24C75CBC1E12B /* EXLocalAuthentication.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E84B3F3A132F731234050023D7CDE300 /* Pod */ = { - isa = PBXGroup; - children = ( - 0D9920C4B01C016DF03855BFAE1608FE /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E9CCD5F9A725A7BCFAEA76AADB3CE3EC /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 988019E4E9CF2D827C9E95B3FAF0765C /* RCTDataRequestHandler.mm */, - 1575ABCA38EBA8FDEC0B53579D4D3E10 /* RCTFileRequestHandler.mm */, - 6AAF491696AA6BD70BDBE52FF3B63503 /* RCTHTTPRequestHandler.mm */, - 912AD498C53D702FE4B8C960BDF6B80B /* RCTNetworking.mm */, - 01FEB054FF3DDD43EB20228C7DF1D813 /* RCTNetworkPlugins.mm */, - 963BA3D224ADFE11ED4377262300CE63 /* RCTNetworkTask.mm */, - 20BC769A304A1D4F610FB320E085ED57 /* Pod */, - 6843E80DEAFBCBC681354BE763959C41 /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - EA2550344C2B7056043EE4CCB0EEE1A4 /* Multiline */ = { - isa = PBXGroup; - children = ( - 512C1BF7AD4A3E8967C60FAF86AF9838 /* RCTMultilineTextInputView.m */, - 0BCBDD28E71C653FB4107BD73CA03D04 /* RCTMultilineTextInputViewManager.m */, - 458FAE22CB148A3D52B8570D6075120B /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - EA9C58C70CDE18F38789CB2CA0F0A8AF /* EXLocalAuthentication */ = { - isa = PBXGroup; - children = ( - 4CEDFB8123EB6971DBDD6FB633B151B0 /* EXLocalAuthentication.h */, - 4B3F1BE731E11F46959700EBAF6D731F /* EXLocalAuthentication.m */, - E82CE57C801C6AE054EDB1D936E24FA6 /* Pod */, - 204B73F27737EB3E368A521D357C4DEE /* Support Files */, - ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; - sourceTree = ""; - }; - EADBEED51B777F681F1E55EEB558C5BC /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - 838042ADD47A0B40530DF4B9A05FC3E5 /* CxxModule.h */, - 34E6A76E0C888C98D45C31A60EB8E29D /* CxxNativeModule.cpp */, - E3336526E7697B5B32D58EB57F0E9B0F /* CxxNativeModule.h */, - 01FF855A319CD8E49C32A606B00E197E /* Instance.cpp */, - B3ACDDFF33E86B07EC03E8F70F31070B /* Instance.h */, - 68ED9870EF85FA63A104408FEDAB3A70 /* JsArgumentHelpers.h */, - FA5BF8DDF70D08CFDF35B134EC1ADBCF /* JsArgumentHelpers-inl.h */, - 48A8DA835765CEA2F3A4A0F2BA3BB2F6 /* JSBigString.cpp */, - BA422A71980760825F9A0DC240E593FF /* JSBigString.h */, - 8F81C7172CC0ED5CE08DB1A37EE0DE43 /* JSBundleType.cpp */, - D592FB3C17F92606C164681CC14D1CE1 /* JSBundleType.h */, - FCF5EBC671EDF125EBA2C3BAB139F931 /* JSDeltaBundleClient.cpp */, - 30280E5221530CEAB4B03E7F25862BD4 /* JSDeltaBundleClient.h */, - D293B3EB2BC5F9B58CF7E8196E035B6D /* JSExecutor.cpp */, - B5D2C5934A468F8D6EDB7AE6D0EDF05B /* JSExecutor.h */, - E3B999279975BC7A7457EE27ACA7BB0C /* JSIndexedRAMBundle.cpp */, - 9A5D088B7AA2A38C1475B82511FCE848 /* JSIndexedRAMBundle.h */, - 2F26214F701F10382741E6FA2C6F1E8D /* JSModulesUnbundle.h */, - 48DD544A4A0220121B9CAA704FA49F53 /* MessageQueueThread.h */, - C4AC0EE0CD8F854C9C29F25A60449683 /* MethodCall.cpp */, - CEF69794F7BA08CCE1B6D90957CEC8C0 /* MethodCall.h */, - B2EEBD1244327E359E2B5D7901D85136 /* ModuleRegistry.cpp */, - 96EEF734B66B5541439641B8F21501EB /* ModuleRegistry.h */, - 990F70B96CC4B43314C481D8A39032F2 /* NativeModule.h */, - 6A4A29B3270D512E1CE14CC308046DFE /* NativeToJsBridge.cpp */, - 9F492DA4602599FE1AC754B16FD07503 /* NativeToJsBridge.h */, - 9789C35A20945543F451817A8ABB5903 /* RAMBundleRegistry.cpp */, - 17E5F049A821EDC2FD95AC97BFD87975 /* RAMBundleRegistry.h */, - DDD396784B06D41218C1A68D7B420A3C /* ReactMarker.cpp */, - D8D7A1DA4BDABD41055F9FDBBDF780EF /* ReactMarker.h */, - D9F5A257D2E21C3F489151D01750DA75 /* ReactNativeVersion.h */, - 473C41D93CC6D1773495862DC826218E /* RecoverableError.h */, - 33E6B448B3D85943E75ADE0EBE98D463 /* SharedProxyCxxModule.h */, - 49F03C11EF98B0586785023E492A678A /* SystraceSection.h */, - AE72C5F3E1EC632CBB36F084ADC69FB3 /* Pod */, - 5274AC0D686DDECFCCF97E55CB2D3043 /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - EC3AD85EC7E12DE35203254882AAB04F /* Support Files */ = { - isa = PBXGroup; - children = ( - FA717A3118273595FE57C8EEE56A5D82 /* RNVectorIcons-dummy.m */, - F273D351E161386FC4271EA79AEF742A /* RNVectorIcons-prefix.pch */, - 939157872D4A8B0A7EE428C2143F8A95 /* RNVectorIcons.debug.xcconfig */, - 5FCC21E33BB4030AF367ED7F1448D5FB /* RNVectorIcons.release.xcconfig */, + 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */, + 8F48120974347F228002F54F74B3C924 /* FBReactNativeSpec-prefix.pch */, + B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */, + 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - ED8F750E172FCF20CAFFD6225E4FE9D0 /* Pod */ = { + E807A22ADAF010AC5DC5DA60FB950E40 /* React */ = { isa = PBXGroup; children = ( - 88F8791845A0C218083BA10592CD6F5D /* LICENSE */, - 01765AA7BDD2F9D3DD1D02F5DDFA3B66 /* README.md */, - 371B361317AADFCA2EDE6C40D0CD0063 /* RNBootSplash.podspec */, + 6FBB216DC07131C87EEEF0DB4E44A2D7 /* Pod */, + 4EB38AF68B1A72A133A9275330D5264D /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + EA39D57D4F1CC9E749FF3E4960E8446A /* Pod */ = { + isa = PBXGroup; + children = ( + 160AEF770132CB83E79919C0160B15DC /* UMImageLoaderInterface.podspec */, ); name = Pod; sourceTree = ""; }; - EDF18497E8066D5ECCDD7B8953C5A066 /* FBLazyVector */ = { + EB375272F0B356B85856342BB99FF5D6 /* Modules */ = { isa = PBXGroup; children = ( - 19D2405E7D012ED605FDF7947B64032B /* FBLazyIterator.h */, - A77DC9EF4D5FB31CAC70FF3C0D5093E8 /* FBLazyVector.h */, - E2F641DBD021FD8449C55D096CC150F1 /* Pod */, - B7A93D03618E25CA6DE7242643A84489 /* Support Files */, + 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */, + F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */, + 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */, + 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */, + 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */, + 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */, + 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */, + FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */, + 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */, + 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */, + 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */, + D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */, + 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */, + DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */, + 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */, + 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */, + C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */, + FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + EBDD451B1EDFE6C57384BADA0A2049F7 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */, + 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */, + A545B6C991DB6190BB3E2DD38991FB69 /* Pod */, + 34661FEB231B676E2B25FB10CBD4D832 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + EC0D0A44D043EE321C9D5D69FD78B80C /* Pod */ = { + isa = PBXGroup; + children = ( + 1BC3F2740B073A772939D6504C8CE0A4 /* LICENSE.md */, + 9EA6F3D6EA1060EB6E4E2F552FCFA1B7 /* README.md */, + 511FB5C01E05C9515B9DE2BE7DBCF5E6 /* RNDateTimePicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EC6A6B6D30F3D3E2AF0FD5D232FDAED1 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + 992A0C44C44C004243A5AE0CE646E74C /* CoreModulesPlugins.mm */, + 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */, + FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */, + 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */, + 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */, + AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */, + C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */, + A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */, + DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */, + AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */, + B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */, + D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */, + 38722CCD059CF731E8EB87988132C588 /* RCTExceptionsManager.mm */, + 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */, + 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */, + 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */, + 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */, + 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */, + 47499BB309F53E2C9508CE83D0567930 /* RCTPlatform.mm */, + 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */, + 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */, + 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */, + 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */, + E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */, + 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */, + 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */, + F3CE26B4DA7426256ABC18C7A2916E0E /* Pod */, + 2A6CEFA85F23070CA70B9809FCAB1A4C /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; EEAB43369C39472465A9DF85CC8F89CB /* Support Files */ = { @@ -18564,29 +18671,6 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - EEB59551DA7A2041FD41D07C3D5B9724 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4608AEE64CA507BE240C95A8B2840B8F /* RCTRequired.debug.xcconfig */, - 309E7623AE75DB40418A48E071A38736 /* RCTRequired.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - EEC71EA63367514EAD0EE64436194CE7 /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - 4DC6477168966C2DF86B0B2BF5375B6A /* RCTDataRequestHandler.h */, - FCBCD973D8A7B54E675052C10039C255 /* RCTFileRequestHandler.h */, - B0A197C3C8AC135C935555AD09ADEFC4 /* RCTHTTPRequestHandler.h */, - 72746ECE8BB7706AD18915DE158D52F7 /* RCTNetworking.h */, - 1B52D338DAD0922CE577DBC9F439F6E9 /* RCTNetworkPlugins.h */, - 2062A0554B981B87731E4363CC860887 /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; EEFB5A178DB2A4448346FB0506750FA2 /* OpenSSL-Universal */ = { isa = PBXGroup; children = ( @@ -18597,6 +18681,18 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; + EF2EE03D2AB8243D4370E0D9DDCF4077 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */, + 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */, + 26EBD521B1AD91BCD418A4E78F8D8CE0 /* Pod */, + 6986F119D6270D7130A36CB90A7DAEEA /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; EF5C4859F5A12DBFB3EA6B1F9AB46C96 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -18607,30 +18703,6 @@ name = "Targets Support Files"; sourceTree = ""; }; - EF5FE441A216DBBF015E7166544F6E1E /* Support Files */ = { - isa = PBXGroup; - children = ( - D224304D924F694162980436C60BD96E /* RNFBApp-dummy.m */, - 9BB9524520A33B4ADEADD94FA1308CD3 /* RNFBApp-prefix.pch */, - A4420FF6267583F40CA966F815D649EC /* RNFBApp.debug.xcconfig */, - BE43FEDD2DBC657A91E7648CE5541DE8 /* RNFBApp.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBApp"; - sourceTree = ""; - }; - EF7AC632513D379419D66C34C155A5F9 /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 5E5C64C703102920ABDE4AB698FD1256 /* InspectorInterfaces.cpp */, - 303FBA33C47F840E409C2F636171D63C /* InspectorInterfaces.h */, - AB6E1B94EDA52ABED94CD16270BD0DF7 /* Pod */, - E017DA7ADFCF707EC62D1C5A7CFE5A21 /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; F017FD00E14318AB92BBCACC7D04A203 /* nanopb */ = { isa = PBXGroup; children = ( @@ -18649,6 +18721,56 @@ path = nanopb; sourceTree = ""; }; + F0A4DDB1922ACA2CEBF85FF611F351B3 /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + 902E19639B871BC67EB4FF4E4F4EA39D /* Pod */, + 980AC0D48DFE00EF6DBF78B8CAC4CC3F /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + F0A9B2C00158E823B2BAB8A75F87F2D5 /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */, + CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */, + 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */, + 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */, + 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */, + 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */, + 55D10A0B7C4CD81504231DEC178F3312 /* RCTImageLoader.mm */, + AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */, + 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */, + B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */, + 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */, + A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */, + 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */, + 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */, + B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */, + 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */, + 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */, + 1739E905798A11553D7A9F46AF339995 /* Pod */, + F2FEF391A58D16A0C085D1DFD715E3CD /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + F0BE9487BBA120FD4FC7D02B2CCD7DE4 /* React-jsi */ = { + isa = PBXGroup; + children = ( + 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */, + CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */, + E3121BE0E0EA9664F75E7DCE36678653 /* jsi */, + 236C414F2621D2152F5FD1E87C0BA023 /* Pod */, + 2F642E6BAC91026C37482E77E9E3DADF /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = ""; + }; F0D123B30573E952F9942EE2A8BAB277 /* Flipper-DoubleConversion */ = { isa = PBXGroup; children = ( @@ -18676,69 +18798,98 @@ path = "Flipper-DoubleConversion"; sourceTree = ""; }; - F1D336B1CA43B37A79C3A33757D52645 /* react-native-orientation-locker */ = { + F0FAFB50C1D05826529E858FF0FCFA86 /* Pod */ = { isa = PBXGroup; children = ( - D9945CD58191794AD8563C6FEC840837 /* Orientation.h */, - 8D18F70546F85D4E5C0B93A7A36FC86D /* Orientation.m */, - FD8375074833B710445A6290FCA07CCA /* Pod */, - 79DA4B0DC38F49FEBC203D4AF085ADA3 /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; - F23E0F8D206AF8BFEF1A15D79C55BBB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - DC14891B5FD7522C15ABA97701A22043 /* rn-extensions-share-dummy.m */, - 76260783CDD7E3E17D39337B7EF9BE96 /* rn-extensions-share-prefix.pch */, - 37C301A9041FEC2E53E2371F42E4484A /* rn-extensions-share.debug.xcconfig */, - E0F5C8160F53CF533D7095F831F94607 /* rn-extensions-share.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; - F35DFEEFDEF77C741EFB4778E57962FB /* Support Files */ = { - isa = PBXGroup; - children = ( - 0B975656D80BEDFC64E60787514B5059 /* React-RCTLinking-dummy.m */, - 273DC0B4ACCCA75F8010799AB521E296 /* React-RCTLinking-prefix.pch */, - E970928CBA116D325E7DF0D77E118FD7 /* React-RCTLinking.debug.xcconfig */, - BA23D1F44EF400B38F749AA56500F322 /* React-RCTLinking.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = ""; - }; - F39609B8DAA1D968C38FE2DB817E6D3E /* Pod */ = { - isa = PBXGroup; - children = ( - C737E2216F64E56564880DC3306DC221 /* UMCore.podspec */, + 8F2B98A5CB6CE9E676C25C5F561036F0 /* KeyCommands.podspec */, + 825C7B2B3BDD9733C1E1600EDC6C50A9 /* README.md */, ); name = Pod; sourceTree = ""; }; - F39DD6B8A37F6E037438E4FF848C67B5 /* event */ = { + F1981BD93BC026E0DAF5FF3C713A05B4 /* Inspector */ = { isa = PBXGroup; children = ( - E6FD25ACF2DD6A082A78E21B380F24DE /* event.cpp */, - 65CEB9EE157DB644008298F667A18767 /* event.h */, + 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */, + 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */, + 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */, + 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */, ); - name = event; - path = yoga/event; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - F3B251CCDCA6984194ABA8CFA75A4FDD /* Singleline */ = { + F29688D79448210C180DF95E41A2AF8A /* UMCore */ = { isa = PBXGroup; children = ( - 0CF5C295B5F0EF90ACD7DF13EAA6BE5E /* RCTSinglelineTextInputView.m */, - 136D238DB2DFE92BA70ADE80E6FACCB0 /* RCTSinglelineTextInputViewManager.m */, - 34ACC58172A5FF16DC138EB1B7DF0ADE /* RCTUITextField.m */, + 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */, + C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */, + 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */, + 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */, + 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */, + 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */, + 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */, + A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */, + 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */, + 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */, + DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */, + E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */, + 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */, + A1715B3CA2753027E5EA8197BC7F58AF /* Pod */, + 0B242BFEE975868CE6B0F55D5F0DEDA6 /* Protocols */, + 642AB45569CCE76C03F7FEF7DF743E10 /* Services */, + B6FCC62BF0988F46A067913AD1AA4551 /* Support Files */, + 98AAB1644CD3447E74BD128066C60ED2 /* UMModuleRegistry */, + 86A332B4C12AD8F3923A6894535E7C7A /* UMModuleRegistryProvider */, ); - name = Singleline; - path = Singleline; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + F2FEF391A58D16A0C085D1DFD715E3CD /* Support Files */ = { + isa = PBXGroup; + children = ( + 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */, + 1A4B5F865AFB2739B350B643C913D14E /* React-RCTImage-prefix.pch */, + 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */, + 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + F3222475CBE281DAD1C87C8B10BBBC48 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */, + B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */, + 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */, + 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */, + 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */, + 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */, + 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */, + C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */, + 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */, + 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */, + F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */, + E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */, + 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */, + D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */, + F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */, + 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */, + F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */, + 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */, + B7A42549C43C9DE254F76B890B920C43 /* Resources */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; + F3CE26B4DA7426256ABC18C7A2916E0E /* Pod */ = { + isa = PBXGroup; + children = ( + FE2C47736CA1DF17AF7E1053300C2CCD /* React-CoreModules.podspec */, + ); + name = Pod; sourceTree = ""; }; F405FCFB05714E863676FA2A365B8698 /* GoogleDataTransportCCTSupport */ = { @@ -18810,23 +18961,24 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - F4F2386C6C4FD12760F840860424BDA7 /* Pod */ = { + F4CC2FDFBA257F843DD586BA351C9444 /* Pod */ = { isa = PBXGroup; children = ( - 79BD40226FCAE98BFF25D1A9E91B6685 /* README.md */, - DADD458A20AA7902731DC5AEA4A5600E /* RNRootView.podspec */, + 44FA0CCC87E584A5543A1280B803CA4F /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - F53F758E25AFD0D01CFADE3198DAC339 /* Support Files */ = { + F5AC1BF6EBB1BC08684BA28CE1424A8A /* ios */ = { isa = PBXGroup; children = ( - AA5E7348653A3937E94DB3A2E499323F /* React-callinvoker.debug.xcconfig */, - EC689FFF612BD323BD03E7EFF1DB14C3 /* React-callinvoker.release.xcconfig */, + 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */, + 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */, + 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */, + CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + name = ios; + path = ios; sourceTree = ""; }; F63B0FF39B59092B8620D7E02D9030AA /* Support Files */ = { @@ -18840,20 +18992,12 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - F6E134E6663E80C6BE72C38356108167 /* Reporting */ = { + F64C64DDE6EC5C49768FD88986FB73A2 /* Pod */ = { isa = PBXGroup; children = ( - 97E86E16C3F688732AB1AE918E00FF19 /* Filters */, + 39BC26BC21FB366CB0D48385D4F5E46A /* UMReactNativeAdapter.podspec */, ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - F7C0761213A277C236535E931D8AE61A /* Core */ = { - isa = PBXGroup; - children = ( - ); - name = Core; + name = Pod; sourceTree = ""; }; F81EB6A0400404A65EAE704B0D9150F0 /* Support Files */ = { @@ -18885,52 +19029,14 @@ path = GoogleUtilities; sourceTree = ""; }; - F96C3E7695E9FEBFFC8F818DA9914536 /* UMPermissionsInterface */ = { + F9D236E165E1EDACD5276D08F324B36E /* Pod */ = { isa = PBXGroup; children = ( - B8D3D9992EEB30FD948A2F586CD08C0A /* UMPermissionsInterface.h */, - A03F3558A88EFBE6C41D5F4D040E4220 /* UMPermissionsMethodsDelegate.h */, - 1F6314976A28E533E06FCBA0CBA9BAD6 /* UMPermissionsMethodsDelegate.m */, - B115D8D68282724351832DB38F25C185 /* UMUserNotificationCenterProxyInterface.h */, - 63D38F0003817BCA69E562530AF9C6EB /* Pod */, - 4AC5511DB5DE91210C3628ADBCB59D8A /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - F9BB660136C6A55DB65E5355B911556A /* Pod */ = { - isa = PBXGroup; - children = ( - BC82ADC2B97692C20AAE4A173DC86213 /* LICENSE */, - BBEEE64D22A72F3D351D0FD8F4256BEA /* README.md */, - EB3B72D7581555532367FDC781B3C219 /* RNGestureHandler.podspec */, + 5689DBABB6F7C93E584F9F5AEEC5068E /* EXAppleAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - FA1159323F99D37318B751775B056A5F /* BaseText */ = { - isa = PBXGroup; - children = ( - F41013165CF5BAFFE81234B51A9D77AA /* RCTBaseTextShadowView.h */, - 51CE4860C45A1EECB6A574CBAC419AF7 /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - FA904FC1BE89E2F8482CCBC50486BAFA /* Drivers */ = { - isa = PBXGroup; - children = ( - A2B137CF8290FD43E9A9552820EA2F1F /* RCTDecayAnimation.m */, - 5437A481FE459083C85E5B56C9B64AFB /* RCTEventAnimation.m */, - 8E465634B3191DEAC1DD5194882DE193 /* RCTFrameAnimation.m */, - B3476B5067085EE84616F036513051D4 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; FB0EEA89FBCF129B1D0C38D6F0A030EA /* MMKV */ = { isa = PBXGroup; children = ( @@ -18943,38 +19049,14 @@ path = MMKV; sourceTree = ""; }; - FB527C9561C260360FDA76AD8E29DA9E /* Surface */ = { + FB4CF3D1F5E261FDB1CF2195499536FD /* Pod */ = { isa = PBXGroup; children = ( - 02F819B95D90B8BAE8669D6BFD153598 /* RCTSurface.h */, - E085E66D7887886A7DD797272EA85B07 /* RCTSurface.mm */, - 2C2E2C86F58A2C06A7A53CD7A30C6172 /* RCTSurfaceDelegate.h */, - 22120B437DE83F29307E3F517E940FD8 /* RCTSurfaceRootShadowView.h */, - 8BD9A1F50D09E2EBD8A5C437B1EC94AE /* RCTSurfaceRootShadowView.m */, - 9BDBEAC98C62EB4400B7F64634450AA4 /* RCTSurfaceRootShadowViewDelegate.h */, - 226BEBE36B4D0C89FDC323CB3EC1A847 /* RCTSurfaceRootView.h */, - 3A5758BC8356E0FABC5DE99BC0C4C1FB /* RCTSurfaceRootView.mm */, - E2F42B831282C4AE1FA5108AAFB62AE1 /* RCTSurfaceStage.h */, - 0D947731042008BDB40A8A6789835E72 /* RCTSurfaceStage.m */, - B4A30C7F4816E43DC60E9932524A564B /* RCTSurfaceView.h */, - B3AD9DD291ED51D0E0F1CC44136DE80A /* RCTSurfaceView.mm */, - DCDC81A23FEA024472B955AB40E04F3E /* RCTSurfaceView+Internal.h */, - 4F975ADC68E933B726529A5FF0D10AF3 /* SurfaceHostingView */, + 2AC79DC8FF5BFA7C2F59FAF82DA5340E /* LICENSE */, + 9AECD6EC4451B67D03D0D7D74FDE2039 /* react-native-cookies.podspec */, + 165C875049AFFD54BF2D90A27C1F409B /* README.md */, ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - FB820858AF1CE0B8458B01555839130A /* Text */ = { - isa = PBXGroup; - children = ( - E6F4BA2D62F40C6E60143B6A2B84DEBB /* NSTextStorage+FontScaling.h */, - 88C3924B860C66DB16F359BAE6CB4A58 /* RCTTextShadowView.h */, - 84E60F7E748AD1A7FE5E90EA4646DFDB /* RCTTextView.h */, - A907F87408A2A4ACBBD17AEC4364D0C3 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; + name = Pod; sourceTree = ""; }; FBC1FA639C578959158CB87E8C9C446F /* FlipperKitReactPlugin */ = { @@ -18986,40 +19068,6 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - FBFE8C894AE78BDDC3D240F6D4253718 /* Pod */ = { - isa = PBXGroup; - children = ( - EF30A457AF6EE3D352AB4B66D26DF5A9 /* EXFileSystem.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FC20519EBE97BED871479FE81F68425D /* BaseText */ = { - isa = PBXGroup; - children = ( - 54F7234D7E8D508D4611CF40AB3D7F25 /* RCTBaseTextShadowView.m */, - 7C26FA4EB37E02813691240841A25D46 /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; - sourceTree = ""; - }; - FC66F1A054D1B6AF407870439FFA77F2 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - 76210A68BD11993C84B12A15DB0087AB /* RNCWebView.h */, - 2F5CC0C18D289DFF965C99B40EA1A70A /* RNCWebView.m */, - F9E4A6A92754525376A969E4A16ACD61 /* RNCWebViewManager.h */, - 379D18EB4442E35A9EB4EFD0907E472F /* RNCWebViewManager.m */, - D644F00CE253943CA2D61E7932E7AAAE /* RNCWKProcessPoolManager.h */, - DE99A717738675CCED476268435FE835 /* RNCWKProcessPoolManager.m */, - 841119E9AB1837E3AD5BD8743D3763B6 /* Pod */, - D7D69580DAA4B30B56DA2E2C978D292A /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; FC95F69E5AB9142B1ACC3DF9F797BC63 /* Support Files */ = { isa = PBXGroup; children = ( @@ -19030,67 +19078,96 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - FD8375074833B710445A6290FCA07CCA /* Pod */ = { + FCFBBE0E5DDCEE2654840AEF57F46DDB /* RawText */ = { isa = PBXGroup; children = ( - 9478AFC6D204D5B541C8DB5111B3FEE7 /* LICENSE */, - A7857C979B94CD9DA9AF8529C28346D9 /* react-native-orientation-locker.podspec */, - 73F628A2752986DE0BC692784E5C65D0 /* README.md */, + 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */, + 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; + sourceTree = ""; + }; + FD57CBD6983388FA42FFFC36787B0E8E /* Support Files */ = { + isa = PBXGroup; + children = ( + C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */, + DA06723236037DCBF714C63760D9E71B /* RNScreens-prefix.pch */, + 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */, + 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + FD606C22EB1D129E9D6962DD94E75B86 /* Pod */ = { + isa = PBXGroup; + children = ( + EA9B90A99FD323502E3DC36A173D5E91 /* LICENSE */, + CC05F628433C495AA83FD9F1BB9E9CA7 /* react-native-safe-area-context.podspec */, + DFB6CFCC8048A6DDC465ECAD7591C5BD /* README.md */, ); name = Pod; sourceTree = ""; }; - FD9B78684BD6D7BEC5556E0675B93F3E /* Support Files */ = { + FE1FED9E7D28F792F81F1C9089FE4B22 /* react-native-notifications */ = { isa = PBXGroup; children = ( - A6D9444C71D21458FDDE2F3C027CCED8 /* react-native-cameraroll-dummy.m */, - DFD245F4609B06FAC78A66F7A759FB41 /* react-native-cameraroll-prefix.pch */, - B3C052F03275EE44BB2C9D5FE290405B /* react-native-cameraroll.debug.xcconfig */, - 527C827169FB7528B82A4F64E94F6B6A /* react-native-cameraroll.release.xcconfig */, + 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */, + 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */, + 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */, + BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */, + DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */, + 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */, + 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */, + 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */, + 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */, + 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */, + 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */, + 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */, + 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */, + D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */, + E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */, + A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */, + EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */, + 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */, + F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */, + 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */, + 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */, + D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */, + 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */, + CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */, + 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */, + F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */, + 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */, + 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */, + 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */, + D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */, + 9ED079D851167E88732EDE5AF46C7F67 /* Pod */, + B3770FCAACFEC879FF1F721AC639359D /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - FE5667F1FCDBF19AAD9C1BE5DAC84964 /* jsi */ = { + FEAD6EA6763FA9EA3A20E58B076D2F71 /* Pod */ = { isa = PBXGroup; children = ( - 7F7D6FA0B612CD4AE1D408202742E242 /* decorator.h */, - 273A9F95F24B0E55A32AF14A8C1E12CD /* instrumentation.h */, - C5E3F026260CDA3D759A383C35E6534E /* jsi.cpp */, - E615C455EE2E6D7D7167202FB9DA409B /* jsi.h */, - 2D97F5F6797C3C24100DF89C7872EFFA /* jsi-inl.h */, - 6F0236CCADA4FF86302D88CA23FEE55A /* JSIDynamic.cpp */, - 9908478D81E222F97102D66FCE95155F /* JSIDynamic.h */, - 85482E2C070557F0DAC64B563CD678BA /* jsilib.h */, - CF43ED1DCA6FF8F29E4AC95579161DF6 /* jsilib-posix.cpp */, - 8A6C1270E6344C5BF528E6A506EA59A6 /* jsilib-windows.cpp */, - 7E677A38DAC2F1BB682006C006DC2FC9 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - FEC9F343B22DC4F740B2093FC0E5AF64 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6104E11717EFC5656AED600419E5F087 /* React-RCTVibration-dummy.m */, - 984C4187BF19B9711D69558F599B9D64 /* React-RCTVibration-prefix.pch */, - A651428CB1B26E47A76DCE58B8568222 /* React-RCTVibration.debug.xcconfig */, - 8EEE4B6DD4B01B3E6247D690D3B0AF9B /* React-RCTVibration.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - FED089022FE7A38C306139EAA2423C06 /* Pod */ = { - isa = PBXGroup; - children = ( - 1C9176168365AF6AD9C0CF4F7B254F09 /* UMSensorsInterface.podspec */, + 3E49EF9E33E2321EBECA937DDBCD35C1 /* React-callinvoker.podspec */, ); name = Pod; sourceTree = ""; }; + FFD3C4E2D0044DBF128B493778671BA9 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */, + 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -19485,14 +19562,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E18298E16B541B366F00525BC2972D2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 7C477C1E132AC99C07986F497FFE0624 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 42091EC055A91B81D093A50EA560C608 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19662,6 +19731,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 61CC0E24FAEDA5D719EC27CE3B1B3375 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C30D3BC1FAB19C0ED18F445348DC68F9 /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 685372702C82DB84D381D53E1BF703FB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20174,6 +20251,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A128B08CC582D87C8D07821B5B01458B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6938ADC737C2BD7B4F258F5C7B259B73 /* RNCookieManagerIOS.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A7E0E8586D91B30169B8D45DF7B71114 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20982,6 +21067,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D6979198788D9C93012E458B6A505014 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0460C7FECB81F811BEB1818BA224D99A /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DB78877F95D333A7EC3497FF028CEB05 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -21130,14 +21223,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F2BE2F3A1413B7BB2F56DF1E7CC2E9BD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1DD2BD9DEBECE1EF526F3C7FF977420C /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F3582A72165541067896CC29E4B651E4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22793,131 +22878,132 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 6F74819B4C638FFD47597797565D76EF /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 908B90B691907295BF3ABE726FA79E1A /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 3E18298E16B541B366F00525BC2972D2 /* Headers */, - 7AE0E9846626AA475DCBF83BB7B44E3B /* Sources */, - 62174C2C0B9C72F73EAB9402B5997924 /* Frameworks */, + D6979198788D9C93012E458B6A505014 /* Headers */, + 980D0AD6C6E1C453E95FF5BACAC40E16 /* Sources */, + F54C531A7E8196B34EC14A91161008F6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 1FA6A9982792188CE9181FBA1CD8CC68 /* PBXTargetDependency */, - 5A36486ED9E9C06DEA3BA5390B10041E /* PBXTargetDependency */, - 3475F3B5135881B72DA1A8A9F084CA1D /* PBXTargetDependency */, - E3478D878643E73EB801BCC6510D660E /* PBXTargetDependency */, - C8AF676A7E6240C7223619438BF2DC4E /* PBXTargetDependency */, - 797FBABA65205910D2C51AF8FEEC93CB /* PBXTargetDependency */, - 1E6480D5E6443AA6E88637ECD8EE1022 /* PBXTargetDependency */, - AE18730D3EC3B02A969800BD7836C513 /* PBXTargetDependency */, - A40A23589074012395C76E06A1273C43 /* PBXTargetDependency */, - 082020452B9BC4BCC38F7AC9FAB3A5F3 /* PBXTargetDependency */, - 236484586B8A122D10AEF96DA6F63C6A /* PBXTargetDependency */, - 7FFBB47618D3412C9817F381C0A2B42C /* PBXTargetDependency */, - 97F301D0E667B601393DC21E6EEE805E /* PBXTargetDependency */, - 89FDCCD7E3AC71BF0B0CCCF29FB89329 /* PBXTargetDependency */, - 2BCDE68EEB66EDD5799B713F3E1DC2C6 /* PBXTargetDependency */, - B4E0DF73DDD57F5F3054B465ADC70299 /* PBXTargetDependency */, - 499134D582570C4D3342E965BC5F5059 /* PBXTargetDependency */, - B38D8E469F463B76D878AC93D238F8BC /* PBXTargetDependency */, - 17A30FAD3F7CFC8501370807224CDB46 /* PBXTargetDependency */, - FE6277A10B2D824C963FDB18D6D2FD2A /* PBXTargetDependency */, - EB19507FB9559F8AACC961C826971ECC /* PBXTargetDependency */, - 5B8709A2D73447FA899CFEFDCD7BCDE1 /* PBXTargetDependency */, - 52F62CC4F46355429A759CBBD8B86E5B /* PBXTargetDependency */, - 7B8DAD147C93EDDC26DCFE25E8C9AB9F /* PBXTargetDependency */, - 3712471A19239C0E8BD33667DD8F7D5E /* PBXTargetDependency */, - BFED82649AFFD0E517A0A0B3FAE7A73D /* PBXTargetDependency */, - 88084452BACB5902C021FC3AD307DA4F /* PBXTargetDependency */, - 6DA91774211176A4B35C36AD1211B936 /* PBXTargetDependency */, - 7122DA42FE5E1E54A681210FE55C2034 /* PBXTargetDependency */, - D52464BBE83EEA1FAFBD7F5E795F61A9 /* PBXTargetDependency */, - ADDF56529196EA42A6ECAB00862371B8 /* PBXTargetDependency */, - C6F2A36EA846058270495988E0653ABA /* PBXTargetDependency */, - 28E5FF913960B1D81912A4A93E7BAA30 /* PBXTargetDependency */, - 5F5921BD1D6E5E3545E65C93A9EFC96A /* PBXTargetDependency */, - 6030FD8BCE1647799EF3828F3EAF579A /* PBXTargetDependency */, - F36DF7175C2BA2B33C7F01BD94814194 /* PBXTargetDependency */, - C85C7F93CCB45A2C4D832716A4D362F2 /* PBXTargetDependency */, - B6B8FFD800B4C6B06389E7DB84F6CD15 /* PBXTargetDependency */, - 823E2B7E1F2F4973D13AC3F4B14217C3 /* PBXTargetDependency */, - 44DFB5AF83408AD88044C69AA0B2FF8D /* PBXTargetDependency */, - CB1D14C99C54F0F4BC9DAB00DD32F179 /* PBXTargetDependency */, - BF4867F5319E989A8E2063E4A57E87A5 /* PBXTargetDependency */, - 28FB4B9E4EC5763E60B65BE9A1B06B16 /* PBXTargetDependency */, - 6136588B90660F37BBB22232A56C005A /* PBXTargetDependency */, - 45BA5875D902A92DA2F7282046AA465B /* PBXTargetDependency */, - E329759221BCFA1954FF37FC8ABA3A65 /* PBXTargetDependency */, - 862DB0983928303D9B83EAB7D379209F /* PBXTargetDependency */, - 302DB1D993825FB2BB189971001A243F /* PBXTargetDependency */, - BA88F551D1FE7577F1810CCBEC00C4B2 /* PBXTargetDependency */, - D93A0C50579802887B0FF551ECBEDD8B /* PBXTargetDependency */, - 60C6402E38AF88C7685EEC4261D86C58 /* PBXTargetDependency */, - 41BCCFE52BA649D26BC808AEFAFCECED /* PBXTargetDependency */, - 1ED4899FB0569FDF88AE8CF902042583 /* PBXTargetDependency */, - 6815240BB0FB39F9C96E9C1029AE34CB /* PBXTargetDependency */, - AE8928058C040F1F83DA1D2199879D97 /* PBXTargetDependency */, - CCA4890CE12B1CFAEEBCF5CC4DFAA8B1 /* PBXTargetDependency */, - 55C5BB5AD5920D00749D32AAFEC664A0 /* PBXTargetDependency */, - E37F3FB1794BE92693D4BC9E16A934BF /* PBXTargetDependency */, - 84B0496C0AA5C3D3780DA0CE1602B892 /* PBXTargetDependency */, - 20988B3CE7673BCC5876C6C19D4EC003 /* PBXTargetDependency */, - 566249D1AAA5C4EBCEA0FAA4381F886F /* PBXTargetDependency */, - DD42B72B92C80F74FA452D33847D1769 /* PBXTargetDependency */, - 20E1B9F7BA821C40E9EB4A274B14012E /* PBXTargetDependency */, - F304224A2F0CBF4FA496682A012344B0 /* PBXTargetDependency */, - 0F04A303B5219313365F56CE70965675 /* PBXTargetDependency */, - 8972ED5A69FCC4F8DE8A878CEE47F571 /* PBXTargetDependency */, - EC27074E6C593318E8884F05D5855640 /* PBXTargetDependency */, - B1A6FB4AAC42395F399CBA047F942F7B /* PBXTargetDependency */, - 9AE03A723493DEFC6624452B2F82B603 /* PBXTargetDependency */, - 19761360BB0F62EBC4B9C969E2CB0EFD /* PBXTargetDependency */, - D3D416B5502E332E3D8F0B6212EDE079 /* PBXTargetDependency */, - 47014CFB9B057513FC3C1B458A1420CE /* PBXTargetDependency */, - 9A4C567A23063E5578DF0C00F50522DA /* PBXTargetDependency */, - C06DD5FFA1C481AC5BCA4EE636E94B6F /* PBXTargetDependency */, - 2A0CF31C873D7C429EB498AE19F2BF98 /* PBXTargetDependency */, - D2122FE317D56D46FC662EF91F8052AD /* PBXTargetDependency */, - 36974C8F75F420E3329EB0958EC9185C /* PBXTargetDependency */, - 285DB63EE964DDD0F40EEAAE13F79906 /* PBXTargetDependency */, - E610831C8A024076BA2B080960078217 /* PBXTargetDependency */, - 54BB51A30305984DDEF17D85AE3685C6 /* PBXTargetDependency */, - 18430B8EC3A4BC2E07EAB7E98B017714 /* PBXTargetDependency */, - 3B67C7F38BE18E6DC7E00CC5F6DC8443 /* PBXTargetDependency */, - F48CBEB27E874A71287CA82A3450E344 /* PBXTargetDependency */, - 96178396135F247B6F0BD48130AED392 /* PBXTargetDependency */, - 776DCD1E2B137650A769E31F4C099BE0 /* PBXTargetDependency */, - 74C087CD8A6ACCB00CAF022716B907C9 /* PBXTargetDependency */, - FE5256BBB6445FD33BAD740FE640680E /* PBXTargetDependency */, - CAD5CB0918BBA97EFDF2928B80979DD5 /* PBXTargetDependency */, - 6843B7155C11C0D7EE50106C653050C8 /* PBXTargetDependency */, - ABC22A26750B3281627BF262F92102A0 /* PBXTargetDependency */, - 4FD4453348C4B25EBBB01C99CB9FCB90 /* PBXTargetDependency */, - B0688298BB2F75301D69A9F14C8FEFDF /* PBXTargetDependency */, - 153C260892F45A676E3DF45DFD093ADC /* PBXTargetDependency */, - F85677E2F14C8493B1D73A7998478435 /* PBXTargetDependency */, - 3D9E019A439AEB77E6A4B4F4751D162F /* PBXTargetDependency */, - 4766A0F0C5F409BBA90A4637C9558917 /* PBXTargetDependency */, - 6092382CA1F942CE88234B3CA91BE5D2 /* PBXTargetDependency */, - EEC2655B729C25811CCF18F647E26B25 /* PBXTargetDependency */, - 7FEF199D1D4FCE973823B45B48CF5AB1 /* PBXTargetDependency */, - D3BBCC2311E09D416CCB01459B25D972 /* PBXTargetDependency */, - 4248A8D8BAE34DF49BC46B2875E04FD4 /* PBXTargetDependency */, - E39607AC32FCBDF85E0E3FCD4B22B6AC /* PBXTargetDependency */, - 09019B29F3E019A1215485316F1B51EC /* PBXTargetDependency */, - 65EF803A6DB74C097F8FE603FFCEEA15 /* PBXTargetDependency */, - A0A790FC773A76F341FF011BF3EA97E7 /* PBXTargetDependency */, - 297F184E34E1A7B9591688DB0C056A69 /* PBXTargetDependency */, - CD38B59D9118B300C76922045EAAD4F5 /* PBXTargetDependency */, - C58A08057D7D8D3CDE23814F3073C2DD /* PBXTargetDependency */, - 96A1472C92DC23FBCECF9D63F05C7456 /* PBXTargetDependency */, - 401247DB06298A0D01832074A73137F3 /* PBXTargetDependency */, - C44F686F8FD74F7E2C4B8B05BFB144F3 /* PBXTargetDependency */, - CA63B22FA34FAAD96A43A510D727DFC2 /* PBXTargetDependency */, - 0DCDD0B3CA521B7850816A5D935152E0 /* PBXTargetDependency */, - 6C274535C6DA857558A9A5BF5BD1AF38 /* PBXTargetDependency */, - 00ED9AF8BCF920A1F75B6005B989F2DA /* PBXTargetDependency */, - 2A780E51403BB5BA0732F219FC74F2F3 /* PBXTargetDependency */, + D253A96E6B0CF1E8D871D257ACC210E1 /* PBXTargetDependency */, + 8DB83FBBE52D983FBC18B9EF0DE23113 /* PBXTargetDependency */, + CAD024419B50495C9419F54735E54894 /* PBXTargetDependency */, + 0E0252A97BFF8FB2A138FE05B2797C80 /* PBXTargetDependency */, + 44B783531E4C08A01EAA3B33A82B649E /* PBXTargetDependency */, + 9B663A2A75D9E21B7C96396B2BA2B678 /* PBXTargetDependency */, + A774C0A9CA3A13C07141014321F66E14 /* PBXTargetDependency */, + 3C766E190E3ED6E6CC879DA634B5482F /* PBXTargetDependency */, + 58B8B2FBFF2665AF431E31256A1877E1 /* PBXTargetDependency */, + 0AA9BD5B46025CF6F559325661D7AFAF /* PBXTargetDependency */, + FBAED5786B7626E957BCFF0AB0087295 /* PBXTargetDependency */, + 49644F2979CEA2E1540B008B8F2F6D04 /* PBXTargetDependency */, + 5601D049FDC20AE07C2DB4A6E7C7A436 /* PBXTargetDependency */, + C47E91833F953C81484CA5939A116D46 /* PBXTargetDependency */, + CE1F3B5380174467A4FDB82BAE5F94F2 /* PBXTargetDependency */, + 999EA8BEF8CAEF8A21125717120879E1 /* PBXTargetDependency */, + 308D03476E409BAB951D9F9200DEE728 /* PBXTargetDependency */, + C7933C15040997A63E08D9E73D90B5F1 /* PBXTargetDependency */, + E139C84E86CCE14A4937645D437137F6 /* PBXTargetDependency */, + 7D2925AEC983016F577EFA774403D770 /* PBXTargetDependency */, + 3C7D4C1A048571470CF90C4E5E596CD8 /* PBXTargetDependency */, + ADC0060F2C0BBEBD8C9EA35069A1115B /* PBXTargetDependency */, + 77B3A5CE2F74A44F2F7CDDDEB4B95F61 /* PBXTargetDependency */, + A9C0A1BF6A3C83B5E964173343DA79FA /* PBXTargetDependency */, + 7461DD0363F8F5220704C21BA9F3FE7E /* PBXTargetDependency */, + 8C443A3E2F419ED1D22612237AB2C555 /* PBXTargetDependency */, + 354D0E73417E97A5EC346FF5DAE8187D /* PBXTargetDependency */, + 6451C9E6CA7820FDE1EBAC13E5874615 /* PBXTargetDependency */, + 89088862EB4CB9E6F4C8D7289EAB2E6C /* PBXTargetDependency */, + B41AB91179C21B9BF2A7605F38502816 /* PBXTargetDependency */, + 643707AE3B5377FA13A292600619CF92 /* PBXTargetDependency */, + 143D27C1FC3FC8ED20AF39DC5C8E4209 /* PBXTargetDependency */, + AA521E3901BB34A794064D0CCEF13D99 /* PBXTargetDependency */, + 4901FEB8F56429CC198027869BD91B97 /* PBXTargetDependency */, + 0C12AC479E5A372F78493659A9F6EF15 /* PBXTargetDependency */, + 2B0B0257074F08BCE13E70A45B82F39A /* PBXTargetDependency */, + 9DCEE99DA9B0BE6178A8B6D3D5D81945 /* PBXTargetDependency */, + FDD789A6FE9205A4C9B58026716608D1 /* PBXTargetDependency */, + 8A6BF46942EA2FA060E6BA49BDBB0B9B /* PBXTargetDependency */, + D2221A1761DE58FCB64A747DD26BCDFC /* PBXTargetDependency */, + EF7DB579FAB0CFE7BF9C2E9F5A0FA8E5 /* PBXTargetDependency */, + 574731599DF5D986135DD05C910C2071 /* PBXTargetDependency */, + 9A7E406D738AA7D593F3CB83E5CA14D8 /* PBXTargetDependency */, + 2E786793EB4B28C74BFACABC488BDF4C /* PBXTargetDependency */, + 9432457523D5B76C0A2DA678B1E75D59 /* PBXTargetDependency */, + 0D4019F7AF1220A2C793EF0C64263FD8 /* PBXTargetDependency */, + 9B76D279CF96228DDD85808F0CD17C13 /* PBXTargetDependency */, + 92076B603161DE38DDE9FDE9820B9CAF /* PBXTargetDependency */, + ADC48BB308644518E00F4F2E7DCE6F46 /* PBXTargetDependency */, + 096737461465504503503E826D0D6385 /* PBXTargetDependency */, + 570EC5A2754F37636B66EA4E76155746 /* PBXTargetDependency */, + DB91C5B8FA4E48F817349BE83F35D2ED /* PBXTargetDependency */, + C618E9AA6DA0B051EF26EC35EE035C01 /* PBXTargetDependency */, + 613886CD7EBB70BFDB398A88A8500556 /* PBXTargetDependency */, + 09F19312C479AA3F73374675BFA2D2C1 /* PBXTargetDependency */, + A8F14AF75A631E080B34BF1B48667DDC /* PBXTargetDependency */, + 37E1D2588FE995A65FB1D22395139E6E /* PBXTargetDependency */, + D5413890DDD4A3C37BC579E70D304779 /* PBXTargetDependency */, + B4F6684EA6A3C92D0CD50A7C68D66501 /* PBXTargetDependency */, + 2551343F9073B2AE2360B9A920298719 /* PBXTargetDependency */, + 25963F58CC5401492527FAA30B588020 /* PBXTargetDependency */, + 0FF8153E99B4D689AA392E8E2F547D74 /* PBXTargetDependency */, + 68DE9E0D2A6B1E6B84F6086FB65D8609 /* PBXTargetDependency */, + 9CB25993E0DE4A687C546BB105805613 /* PBXTargetDependency */, + E5B201E797ED4635B0E528F4D4F791A8 /* PBXTargetDependency */, + 5A0C39175ACF949659660263E363DA39 /* PBXTargetDependency */, + 93C0CA7E66B4C295A25ADAEFA88FA60F /* PBXTargetDependency */, + 61FAF14317491DACEC802EEC7831D93D /* PBXTargetDependency */, + CBC6D33FF68ED45DA279CDF13D2F6E86 /* PBXTargetDependency */, + C3F2CA6497322BDA01A130619461941E /* PBXTargetDependency */, + 186C24CB52A2AC3AD1106597BB53FB80 /* PBXTargetDependency */, + 325E02D6E23C05AE97A2287319CBFB0E /* PBXTargetDependency */, + 7B25C363825B78F548C58A30E313B2DA /* PBXTargetDependency */, + 2FE72A32DF183A53FF3E249136214D0E /* PBXTargetDependency */, + 6376FDD0B17A95025B8F31EAC8A58795 /* PBXTargetDependency */, + 35A320F28708C5CB2978DBB70B3F6A61 /* PBXTargetDependency */, + 24855BCA3EFE5DE677FFA7A279FCC89A /* PBXTargetDependency */, + 33552E419FDFDB4854A7BE3930F686AC /* PBXTargetDependency */, + 6A72CF7DF35E2A5DCA25882A564EC911 /* PBXTargetDependency */, + 7E61A6A52610287BA1AC419E6105B5F8 /* PBXTargetDependency */, + E3DD98BCFA06EDE0845462DE507AC5A4 /* PBXTargetDependency */, + E7194B5D81FF9052632912599626F87C /* PBXTargetDependency */, + 5F25BD9DAE0128E47231C43E9C2DC34F /* PBXTargetDependency */, + 6CBD444D6EFF03AB667AD55FA993099D /* PBXTargetDependency */, + 36202FBC81CD1FBA682E47D19BA3DF3B /* PBXTargetDependency */, + 1BF4EDD1E438737D27EBC84218DEF689 /* PBXTargetDependency */, + FD5ADEDBDDA770D71315E8F59A34EB35 /* PBXTargetDependency */, + C4DB3652EEDB7CB2E66103EA34B636A4 /* PBXTargetDependency */, + 35B7FF3E55C1005FDBECD104470C82D5 /* PBXTargetDependency */, + A34C25F97AB01E2E61B6F7B771AE2490 /* PBXTargetDependency */, + B96E7DBA82D25001AB650D750AAB6B7C /* PBXTargetDependency */, + F98D53E84673952739169D82B178708B /* PBXTargetDependency */, + 640CE6D4E9BDBF9259446546770C7C61 /* PBXTargetDependency */, + 0A3DCE5C15A144C47E107566CB2B85C5 /* PBXTargetDependency */, + 8C218336AAA5C8C363CBF6D59EA8A924 /* PBXTargetDependency */, + 54589953D03DD99F1FC1430E8FB77331 /* PBXTargetDependency */, + 8BD3D4ABFA1A0B019082936D31BDBF0C /* PBXTargetDependency */, + 404057CBE673ABE2DE954AEA9B296458 /* PBXTargetDependency */, + F73E7D618F04812B4226DCF25884D15F /* PBXTargetDependency */, + 0F676A73B7632EA7A9D0AF12AC0359E0 /* PBXTargetDependency */, + 65BCDCCF7FF0998145528A6C95CA8C6D /* PBXTargetDependency */, + 20B77649C9D8B4F34CA52C7F21E5B488 /* PBXTargetDependency */, + A614BE3642C55FF1A98DB87BF5B2BB32 /* PBXTargetDependency */, + 122CE582673F2007971C51F10CD38656 /* PBXTargetDependency */, + FB7BA34E4677479F4775F298820A6BE6 /* PBXTargetDependency */, + BD5FCA7D72FB28022163A0BED431AD8A /* PBXTargetDependency */, + E9010F118B26E5E7827D0B0EA5AC1C11 /* PBXTargetDependency */, + AE338229B914B6906B4B18133C98B7BE /* PBXTargetDependency */, + 538A21DB7067A011D0AE9E313B3901D1 /* PBXTargetDependency */, + 7EBC07ABDBB08BE5E11E29C379D02B2E /* PBXTargetDependency */, + 50729A0FD9037F4036868B85823DFCEC /* PBXTargetDependency */, + D9B5D7FD43FB3BEED713817988F39395 /* PBXTargetDependency */, + 9662B86C35F43AFE88F3CF763A5694F2 /* PBXTargetDependency */, + 79FE6D9E0E801EA5DAA68A89C2A391FF /* PBXTargetDependency */, + 1AA6DE4FB3E065FB7B30A5B6A64F7386 /* PBXTargetDependency */, + B8C36443B1F6FB4AE640FB548F14F2E1 /* PBXTargetDependency */, + 81D5D0BFCC0FB03316CF4A435D4567D6 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -23015,133 +23101,152 @@ productReference = E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */; productType = "com.apple.product-type.library.static"; }; - B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { + ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */ = { isa = PBXNativeTarget; - buildConfigurationList = 492DCF472215BEFE87566E17AFAF5F61 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 22E624A1216A7EFC43A15AD77ED1FE5D /* Build configuration list for PBXNativeTarget "react-native-cookies" */; buildPhases = ( - F2BE2F3A1413B7BB2F56DF1E7CC2E9BD /* Headers */, - BE73EE2345B3137FCA11D9F0095299F1 /* Sources */, - E865041724BB2A32A144D78544394985 /* Frameworks */, + A128B08CC582D87C8D07821B5B01458B /* Headers */, + D652689993700B97C6338E995798346D /* Sources */, + 6F70D7B04DE066BE9629D2BED3959DA6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - DE707EC15663AAC603FF6DA126557525 /* PBXTargetDependency */, - CCCA898F165233C3A4D51C51AB47D09A /* PBXTargetDependency */, - 396FB24D8308ABB76B8F65A818B42ABB /* PBXTargetDependency */, - AF2E03C2EFDFD0A83EC84983896A7671 /* PBXTargetDependency */, - EAEC2320BA63E3772CACB41334788A45 /* PBXTargetDependency */, - 49612EEBA07F4171B01D8E5C096AAA24 /* PBXTargetDependency */, - 40CEC15FA6D2C2E01B9FC1129613E1DC /* PBXTargetDependency */, - E0E57DE0A2BF4BD1F6497E9883A4FEFC /* PBXTargetDependency */, - 372D9D50B82F46C05E9C7BC182B8D418 /* PBXTargetDependency */, - 509596E42C6E16EC89D559258AF49387 /* PBXTargetDependency */, - F920C403AE00094F71BBB41009674C30 /* PBXTargetDependency */, - A71020058BB4CA840790954CCF8BCEB2 /* PBXTargetDependency */, - 1256EB4DCF2D62986EF266346992527D /* PBXTargetDependency */, - B8F98D7B27DE2F8C67D0784AEC4E182D /* PBXTargetDependency */, - 9EA103831975899CAE015B39C783F2DD /* PBXTargetDependency */, - BDF13E06FCCEDE3B62C82DA1AB2AA5DD /* PBXTargetDependency */, - 690FE24A1889E898BBD5E1BAE5268DB0 /* PBXTargetDependency */, - 78FED2C28D48EA7647115E7E26FAE34C /* PBXTargetDependency */, - 6FE5D7C3A807103ECF9D64CB8DA97E08 /* PBXTargetDependency */, - 82B15CF60BA1F24E1D50392F13491381 /* PBXTargetDependency */, - CEBC8F8446DDE18B4F6F438000E2F1AA /* PBXTargetDependency */, - 78AE1705807BFADBE1788FB71CCEC473 /* PBXTargetDependency */, - D478CB578A3D87A507844FE1CA5AE8F5 /* PBXTargetDependency */, - BE297077D07819FE19C0E354028D138C /* PBXTargetDependency */, - 0B240BC7DD406B54180101B4F749432A /* PBXTargetDependency */, - DE44BF35CC6AF1AC7BD1DFDBA3132749 /* PBXTargetDependency */, - A714BAA7AB92762918488ACB774E6323 /* PBXTargetDependency */, - 01F68BF438349CE31007005B449D5877 /* PBXTargetDependency */, - C791F95470698EDA6D210C354E5684D5 /* PBXTargetDependency */, - BFB42C0F59070B9D71FB062586FFBEF2 /* PBXTargetDependency */, - FF77443BF13FBEF1A44F112F9510579E /* PBXTargetDependency */, - 180B770465674675313D3A1F0ED1B7FF /* PBXTargetDependency */, - 29E67876518EE8EA2A4FB03828BD9505 /* PBXTargetDependency */, - 0FA31615F24E65E75621F4860F4F564D /* PBXTargetDependency */, - 492C99963DD30193D7B2A70651D26E9A /* PBXTargetDependency */, - 2884C8B74044962EB44DF56AD617D236 /* PBXTargetDependency */, - 204B44B742A9AD8F9EA90D7DA99AA51D /* PBXTargetDependency */, - 9D2F4AF03538B92B4AEBFA891E55C6A7 /* PBXTargetDependency */, - 58B6246766677F6C603D8B10123DCDB5 /* PBXTargetDependency */, - 29446C1ED82801CD23253043CC774415 /* PBXTargetDependency */, - D0284195CA870BB9FBE64968B3F333FE /* PBXTargetDependency */, - 002B848A5E27FF8C8C630F6B04915B4B /* PBXTargetDependency */, - F154F6A9406BD55E284846083B2E1969 /* PBXTargetDependency */, - D6916DC3B5540FC2471061AAAAA1C9D2 /* PBXTargetDependency */, - 79BFB6E4BAB139930A9D43CE469CC2B4 /* PBXTargetDependency */, - EB24CB510928AC598C0F8961220BFDF9 /* PBXTargetDependency */, - 532BE0A32B4518B5529B6C7A340879DE /* PBXTargetDependency */, - DB25469084FCFFB2424907B269DF8AFA /* PBXTargetDependency */, - 4D9F633A3AAAAFC9080B7ECC6CEDB8E4 /* PBXTargetDependency */, - BDBB56CCEBCC2F47D74F540A1EA93EFC /* PBXTargetDependency */, - 5855F0157A3E6BB7253575EBE7A2495D /* PBXTargetDependency */, - E52695F114AC68E374D1C92EDFA8BB87 /* PBXTargetDependency */, - 827DB56DC78FF81B7F00D3CD9271E3A0 /* PBXTargetDependency */, - 7E2896D89ACC165DD52427C2BE6C5485 /* PBXTargetDependency */, - 5068CE1856EA2DAA8223A704FC0737D4 /* PBXTargetDependency */, - BEC14FED104918272F6DCC9E625C7357 /* PBXTargetDependency */, - 933C408479544F1B5017CB678610EB26 /* PBXTargetDependency */, - 7ACF79205F90C00F912C99916D174713 /* PBXTargetDependency */, - B45CF9FA2D9479CCC8C7477D35CBC936 /* PBXTargetDependency */, - DD15B39E8E8ADCB1DC315A7489EAE0B9 /* PBXTargetDependency */, - 1D9E967E7C4EED09D7479E2ACDDD714D /* PBXTargetDependency */, - FBE8EB537C32E37AEC0B3616641C3F06 /* PBXTargetDependency */, - C3666BB76CECCAB56F535FE16FAF2726 /* PBXTargetDependency */, - 94420E474A78DF0B30B962ED923CC947 /* PBXTargetDependency */, - 2AAB6FF4D4FA051079196F8818B09ADA /* PBXTargetDependency */, - 9FCD5DF89049D175CD6B4DA75EC707C6 /* PBXTargetDependency */, - 34B26A42CEFF493353808C179AABA35C /* PBXTargetDependency */, - 936AB5FA7B853B252800D83715968C37 /* PBXTargetDependency */, - 720ACD9E2412362B357E4BC5813500CC /* PBXTargetDependency */, - D57B58145FACA72D71EA3DCBE39C2C0A /* PBXTargetDependency */, - EDFA5EE36F69ED569FEF40A0C38BC1B6 /* PBXTargetDependency */, - 31228D5A99489341C5C20572CF9287E8 /* PBXTargetDependency */, - AAE2513AC4128DF8BE8B0787B704CE22 /* PBXTargetDependency */, - 56029CE7944F2CF143E4B6F2E5E77BF3 /* PBXTargetDependency */, - 61CBBEE809ED8E09D7D0C2D2DD1F4280 /* PBXTargetDependency */, - F529BE1C196C1AFE9B0C16D21DCC5F34 /* PBXTargetDependency */, - 5899991395B1F3417BCBA6B019D6BF13 /* PBXTargetDependency */, - 5D0FAAF136D81CD2C5C9DA9767F26E40 /* PBXTargetDependency */, - 48898A89FFB805D75FE4D59DA842A4ED /* PBXTargetDependency */, - 3C428B42ED834209056F5C79626DDE2E /* PBXTargetDependency */, - 5B365E090FB3189839E0EC4A4BD21CE8 /* PBXTargetDependency */, - EA0E44692815487597E682B423425229 /* PBXTargetDependency */, - 4A586319A2DF28CEB924977CE7FF72C3 /* PBXTargetDependency */, - 5FC91458D70F7EA8A964F4B8B8940670 /* PBXTargetDependency */, - 5518DF6A628938BB7529FD10ADA0941C /* PBXTargetDependency */, - 604EC1386C89D94208E62EC7AEBC98AA /* PBXTargetDependency */, - 5A46884425BD735DAFFE978F873E170D /* PBXTargetDependency */, - 16DC1C9C0D44B59533F8F80C183DFC6A /* PBXTargetDependency */, - 846EC0EFE4E5D8B213CEC0245810B16F /* PBXTargetDependency */, - A2F8FB5AA36896D8038C5D501F9841C1 /* PBXTargetDependency */, - 6A8CEE1AB3733FDEA9BDEA18DF151D2F /* PBXTargetDependency */, - 01434CFE501BDD3B7BEF70FB936230EE /* PBXTargetDependency */, - 02FFDAAA1B444A44CED83698E285D945 /* PBXTargetDependency */, - 3A0EAA6655674B4070F11328368515AE /* PBXTargetDependency */, - CC4D369BBFEBA05993B02E9BC43AE910 /* PBXTargetDependency */, - 13CA56FD6EAC73C37D6554C8E80F1134 /* PBXTargetDependency */, - 5B639C8D1264415E1E22299BC9610FB5 /* PBXTargetDependency */, - E03B7EB915B2E130FF092E8288FF58AD /* PBXTargetDependency */, - 0287996C651294C0C38F3596269EE631 /* PBXTargetDependency */, - 6E4835793630D6486828373F3DC21C82 /* PBXTargetDependency */, - D64C498503E623699E1BCFCDC2FA2BE9 /* PBXTargetDependency */, - 17D36ECBB80503E58E41038D87C8A66E /* PBXTargetDependency */, - 07DE73559392A269FB9A837260D79901 /* PBXTargetDependency */, - C18BEBA4FE2F2C9200B8D4FBBC2BF625 /* PBXTargetDependency */, - D2D57C34487708F2005B5A8273B6D171 /* PBXTargetDependency */, - AB9E093249282C6491FB607FA5168EAE /* PBXTargetDependency */, - 8159EFBEA4B5188B54492EA6B4132852 /* PBXTargetDependency */, - E2487767C8348A843380E5124CA6FF62 /* PBXTargetDependency */, - 23BDDC9E7EF289A319FABF1761140312 /* PBXTargetDependency */, - B52A4EC7B62C90A817D5FB9D15F15693 /* PBXTargetDependency */, - 093D1CFC26C7DED5E41C3369DB67F0F5 /* PBXTargetDependency */, - 73F722161FF80EC9F38CEF1F21B8AE69 /* PBXTargetDependency */, - 699A659C613A91BC19F43FD467AB6C4B /* PBXTargetDependency */, - 2761ED61C87E06ECEC30910240A89469 /* PBXTargetDependency */, - F34380C2F1214D5EE62B2049DD0DEC17 /* PBXTargetDependency */, - 0F0A43014F36A8306CF888142CB97B37 /* PBXTargetDependency */, + FC514DFA49F6184C47ADC7904B6AD14B /* PBXTargetDependency */, + ); + name = "react-native-cookies"; + productName = "react-native-cookies"; + productReference = 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */; + productType = "com.apple.product-type.library.static"; + }; + B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = 542B99B928ECE567A203D2898802CB48 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildPhases = ( + 61CC0E24FAEDA5D719EC27CE3B1B3375 /* Headers */, + B8225C36827825360196616D106627AF /* Sources */, + 8BBC7F99D4A9431BEE71174923CA3257 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A122CF2DED148E897060B7E56982CB8E /* PBXTargetDependency */, + F874BA643B8F8CA9391AF3C4DA14B4BB /* PBXTargetDependency */, + A6B38B93EB4ECBC9390D3E5CCD2B089D /* PBXTargetDependency */, + 3000060183C31353FB97843F69375001 /* PBXTargetDependency */, + D07E310F392F4952F184EC5497E91B21 /* PBXTargetDependency */, + CB5286E5D45335CDA43F9E163854A63C /* PBXTargetDependency */, + BF657CA9700EAFE6B0AAF1EC61FEE90C /* PBXTargetDependency */, + 04DE9F37C9315132F4DD90EC72082F72 /* PBXTargetDependency */, + E5C22A908598D746A17A001C3471E8F6 /* PBXTargetDependency */, + 6683754252A0192CA2DFB36FCA013936 /* PBXTargetDependency */, + E625B1D8784FAD7512204396BD7A9487 /* PBXTargetDependency */, + 62B0221FC91A6BB6716081D2FD161421 /* PBXTargetDependency */, + BA07CF2D61DAF427DC0CA2B4C0884C94 /* PBXTargetDependency */, + FA8F132CE582D5BD004ADA9B206A4D09 /* PBXTargetDependency */, + 530494A4FB2C6A8E55BC52C966C6DC46 /* PBXTargetDependency */, + 1B5FD8FC7B7320DA3677AB7EF70D5F9F /* PBXTargetDependency */, + DC3BB4C55695578A9006E45B7C2C5157 /* PBXTargetDependency */, + 1C71FF20F8C49FF8FDD297482F689D87 /* PBXTargetDependency */, + D60836460D5593FA19A61C0F5FF6275D /* PBXTargetDependency */, + D6339EA9F1D48390CBE2288F162AF418 /* PBXTargetDependency */, + 1797E36CBB9336F54B43D00FCB09AC2B /* PBXTargetDependency */, + 9E881EBDD0A8E94942E6CB4073292433 /* PBXTargetDependency */, + 9C968A79F9EAEEE8A6CE501F49D7CDBC /* PBXTargetDependency */, + C292B9C57FF2EB7AECBA5803C32756A3 /* PBXTargetDependency */, + 73721FC1C14034A5AF3F0C0A1CC3903E /* PBXTargetDependency */, + DF6CDE38B394A7446AA43CAE1EFF7C5D /* PBXTargetDependency */, + 1357207E8323C169D1E0C98A1CBFFC2A /* PBXTargetDependency */, + D5A130B8E26B370AE406BB535BBBD4D5 /* PBXTargetDependency */, + 9ED82B637CC477BCEE67B2C89452ED58 /* PBXTargetDependency */, + 76F63007CF9D2F11857C4C428D1B8395 /* PBXTargetDependency */, + 10504B2D0FAF5B70161832E5AC595519 /* PBXTargetDependency */, + 89924C53EB11CB39FA3DA44FA9BD4F80 /* PBXTargetDependency */, + CC26777679C8245679FB1967790CE3EB /* PBXTargetDependency */, + 7F424239BBC9870DAA6E021383BBCACA /* PBXTargetDependency */, + BB87EE46471B00FA11E991CF900BB530 /* PBXTargetDependency */, + 39813ACBE9BB183CF1B44C5723B3E3B3 /* PBXTargetDependency */, + 897B3C8820164B38192C22DF624B6981 /* PBXTargetDependency */, + CECB89DE87D17084981839B2869A515B /* PBXTargetDependency */, + 7FB53382378CE4705D88EABCE6B8CCED /* PBXTargetDependency */, + 50828A6395FB1CFB9F530A448770E1DA /* PBXTargetDependency */, + F4A5BF2101266EFAE47F823C96F188B8 /* PBXTargetDependency */, + E22B799ABABE83B494DE96A19BDC5C6B /* PBXTargetDependency */, + F9F71D7F0BB699D15444F1B9E7BFC89A /* PBXTargetDependency */, + 13AA384326578171422CE0C682744865 /* PBXTargetDependency */, + EFD20EDF9CDBD0204866BD5FD9D71C2A /* PBXTargetDependency */, + A311AEEBE469BDCECD43CC02A861D729 /* PBXTargetDependency */, + 6484E6720ADF66AF9560B30EB7A390A1 /* PBXTargetDependency */, + E8546562AA10716B3E7D57E7976FBDB3 /* PBXTargetDependency */, + F246A85595464675FB93656D21E98076 /* PBXTargetDependency */, + EB8A2E1ED4CEBB1C177FB18F0D3EFCD0 /* PBXTargetDependency */, + 46C42744DDD2F571E2B9958ED504CA6F /* PBXTargetDependency */, + 422A450798FB334D709101F34A7C2204 /* PBXTargetDependency */, + C1CFCBB30E8A4E37E4AAFB1A76FCFE45 /* PBXTargetDependency */, + A6FFF7C8BEF67B9713E06F8907E7769A /* PBXTargetDependency */, + 68D25E506AB692AC990986B5A30C5224 /* PBXTargetDependency */, + 5D1CB8E0CDBF6C6D74589D41485CA44F /* PBXTargetDependency */, + 1339D4DE00F5E65D8BF7A4F1D21FA80A /* PBXTargetDependency */, + DBD921F0312A84A8BA2E999F2B2B19F7 /* PBXTargetDependency */, + D5D01D82D65B6B978E70E653D7E9FFF2 /* PBXTargetDependency */, + 3B8F3F2C18AFE3F56E982C2D39C85C92 /* PBXTargetDependency */, + 939DA11931E4068E9CC5AC407934A0F5 /* PBXTargetDependency */, + 2623CD381FAE0925C5EFA8D194ADDAAE /* PBXTargetDependency */, + BDE247C57595CA941707D94FF59FA327 /* PBXTargetDependency */, + B8835D4180628CAF7E91400B3B3177A3 /* PBXTargetDependency */, + C208B208EB29573900AB8752CCDB50E9 /* PBXTargetDependency */, + 4EC3091EE929C19E8896D7A2EA563F23 /* PBXTargetDependency */, + E2E4BEFBDF6918DCD567CBF983902CBF /* PBXTargetDependency */, + B2CA6BC06C42512EEF0B7E959B3BD068 /* PBXTargetDependency */, + 5C950266C235720247E759737AB73DD2 /* PBXTargetDependency */, + 80658BFF3F49B8FA65473361C32E56D6 /* PBXTargetDependency */, + B812278517C497FFB238F5F7F32E27F4 /* PBXTargetDependency */, + EF9AFBBB3ECED635B417D66519BAB18A /* PBXTargetDependency */, + 39BACBE858537096FABB278ED59ACB30 /* PBXTargetDependency */, + 75E307DEDF03DF4A1E93A3E3E256BE5F /* PBXTargetDependency */, + 5E5B236A96845D4AC716DBC8875BB190 /* PBXTargetDependency */, + F21C947178010BAC1CD60961618B63E1 /* PBXTargetDependency */, + ECA1E0C5AB7449FC7A91F8879141716B /* PBXTargetDependency */, + 81D89D91F5E3E024C47F62FD83338490 /* PBXTargetDependency */, + DD79E04E840C1971F5ADA3F1CBE8A565 /* PBXTargetDependency */, + 1F337FB8E31611FB97EB7CAEE45590ED /* PBXTargetDependency */, + 2ABB98B16410D5DC27D004AA81AA614A /* PBXTargetDependency */, + 51A04BA77142973897736FC18BD1C371 /* PBXTargetDependency */, + 9A604A7CB403A3C3A619D452BFCFF99B /* PBXTargetDependency */, + A9A970237946B4BD90461F61EA843A01 /* PBXTargetDependency */, + 4FB12381357EBA046DC7CC20A413725E /* PBXTargetDependency */, + E8758EFDABFBE5EFA687A428A8A17EA0 /* PBXTargetDependency */, + A5688DEA779C3EA3F815135751E5DB4D /* PBXTargetDependency */, + E682F77671D7A8E7DB9ED58DD61AA39A /* PBXTargetDependency */, + 7E28B8744807C9EBB77134B6A01588ED /* PBXTargetDependency */, + E03DA067FBD031AFE61AFFB2643ABC2A /* PBXTargetDependency */, + F9D06C3B19322338DEEB56415CD664B4 /* PBXTargetDependency */, + D1F4B2387063A574E9A2DA0387A82470 /* PBXTargetDependency */, + 966C1AB8E418F0F862F3B0590A5CCA60 /* PBXTargetDependency */, + 50B9A884D00C3400F4A5F07D6211CB94 /* PBXTargetDependency */, + 5D9EEB9868D21A18D4FAD14995489FB8 /* PBXTargetDependency */, + 3E516659092C3C58F3EB6F5ACAA79D3D /* PBXTargetDependency */, + B81D6CB4EC3C904E5659212CCD035A2B /* PBXTargetDependency */, + C05B03CB2F2FBA708BC53CB177409D3F /* PBXTargetDependency */, + 2EA25BBF8CDAAD327AEBE61B1D24C2AA /* PBXTargetDependency */, + CF708999D0E2708C3F16EB6E67EECA79 /* PBXTargetDependency */, + 60E2183033A9C3CA218AD216BFBB35DA /* PBXTargetDependency */, + C10AE8980BFE285C582A6BB9BF5B2A21 /* PBXTargetDependency */, + DF06D725A2AB4B2E78D6299ADF0AD37C /* PBXTargetDependency */, + 49B880CAD8604E80F8C7C9447E055311 /* PBXTargetDependency */, + B10B0615DAEAA4E8D36FDC7AB41528EF /* PBXTargetDependency */, + 2EEA6A2701EA6C4C6C6CA4AE79878F48 /* PBXTargetDependency */, + 9747CEDB474CD74D3BC35BCD06D39971 /* PBXTargetDependency */, + 1ED96569A167625F663C08AB04F685B5 /* PBXTargetDependency */, + 4654C9E56298F175D95AC145CC734CB5 /* PBXTargetDependency */, + 4C503DD05787CF7FD842C81076C7121B /* PBXTargetDependency */, + AC69351F2BA3A61430AF7EB28FA07EBB /* PBXTargetDependency */, + 7A109E2464B67447DA639668A7EC7B80 /* PBXTargetDependency */, + ED609D7EAA5E850B8BEE478BB9821A41 /* PBXTargetDependency */, + 7DFEA3E3DBBA1DCD408EBC1342CB44EC /* PBXTargetDependency */, + 9E1C055822086B5D178AD243D38C6DCC /* PBXTargetDependency */, + 5BD29DFF171891D370533484AACB7D65 /* PBXTargetDependency */, + 61BEE753502F0746952AAEC285E8C634 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -23775,7 +23880,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 0FB0613488D02E465DF266B09D0B8BA5 /* Products */; + productRefGroup = 9C96ADE704FBC758CF1CCA401EA0546C /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -23842,6 +23947,7 @@ 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */, 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */, BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */, + ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */, D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */, D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */, 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */, @@ -24998,14 +25104,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7AE0E9846626AA475DCBF83BB7B44E3B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 744043FDA72121C624BBD536EDF67D53 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7B35C4554B5CD27161A55CD983693900 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25285,6 +25383,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 980D0AD6C6E1C453E95FF5BACAC40E16 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 80D80B24E94043C19C5416A8C59E415B /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9D0BD5BD1B668BC5C02C221A7571DB3F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25364,6 +25470,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B8225C36827825360196616D106627AF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AF5F8D034F15CC42768898B7C84B20C3 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B9AD2ADD770372573198C0B3D4747FE3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25529,14 +25643,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BE73EE2345B3137FCA11D9F0095299F1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EBA41AF8942F59A9A44C399270576FD8 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BF32F5B36F822CD1ABC3A2B1314EEC6B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25859,6 +25965,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D652689993700B97C6338E995798346D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2360A033327B7652C6D9880203BD6B92 /* react-native-cookies-dummy.m in Sources */, + DA23FD140809F92486DC6C3AB6F20075 /* RNCookieManagerIOS.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DE8508D365FD7F3461F7CDCDF3E2C0E5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -26086,60 +26201,30 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = D5CA4506EB72978BF9DA2DDCDB29D54A /* PBXContainerItemProxy */; }; - 002B848A5E27FF8C8C630F6B04915B4B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2AA71A546C6E7C804FE6C6CE61FDB354 /* PBXContainerItemProxy */; - }; 00BD32E2F437972466D5FEAB55C61EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2E1E454B327932AE914124C66C371526 /* PBXContainerItemProxy */; }; - 00ED9AF8BCF920A1F75B6005B989F2DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = E55E916302094801ED1A9577F4720708 /* PBXContainerItemProxy */; - }; 00F9DCF6F1222F2E19BE37265A4C0152 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; targetProxy = 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */; }; - 01434CFE501BDD3B7BEF70FB936230EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 3B7B29906DCFD48D938138F7F73C6BF1 /* PBXContainerItemProxy */; - }; - 01F68BF438349CE31007005B449D5877 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 0356CD11D1FBA062592666031E95413B /* PBXContainerItemProxy */; - }; - 0287996C651294C0C38F3596269EE631 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 9112E2930387E0051356AAF64C7FE2C0 /* PBXContainerItemProxy */; - }; - 02FFDAAA1B444A44CED83698E285D945 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 3E5A973537AA8BCE41B3503462670985 /* PBXContainerItemProxy */; - }; 034C008DF9FAC1C68FE0AE6803003B06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKVCore; target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 18124B833F1C5B50A22FEF874AA062F3 /* PBXContainerItemProxy */; }; + 04DE9F37C9315132F4DD90EC72082F72 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 88605ED7CD4DD4F4F3FA159EDD76A738 /* PBXContainerItemProxy */; + }; 057DBA0ECB399D66BB01D657296FECC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; @@ -26158,35 +26243,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 25D53C490A206BE5B5E6B5EB62789294 /* PBXContainerItemProxy */; }; - 07DE73559392A269FB9A837260D79901 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 27B46F465CBBCF28D4B0C9AB187A66DD /* PBXContainerItemProxy */; - }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 082020452B9BC4BCC38F7AC9FAB3A5F3 /* PBXTargetDependency */ = { + 096737461465504503503E826D0D6385 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = A14388E1E92502B798D3CEB8E9A3D48E /* PBXContainerItemProxy */; - }; - 09019B29F3E019A1215485316F1B51EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = C1022727791640377AC40CBC4D4971E8 /* PBXContainerItemProxy */; - }; - 093D1CFC26C7DED5E41C3369DB67F0F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = E1C5B1EFCCCF6FE79D0B44548854AE23 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 31488C1D3FD4169FDE8F28F03FA6818D /* PBXContainerItemProxy */; }; 0967E9CC9266AD3C7EF88208095AFE89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26194,11 +26261,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */; }; - 0B240BC7DD406B54180101B4F749432A /* PBXTargetDependency */ = { + 09F19312C479AA3F73374675BFA2D2C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 20891DFD058097B0328F07D78435B0AD /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = E43F8D6863C8E89DE96E163B8698D22B /* PBXContainerItemProxy */; + }; + 0A3DCE5C15A144C47E107566CB2B85C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = CCBE0668DBBFB2AB470FA9F7ACD1B2EA /* PBXContainerItemProxy */; + }; + 0AA9BD5B46025CF6F559325661D7AFAF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 4A4AEC90E6CDD106016CCBC957FBAD3C /* PBXContainerItemProxy */; + }; + 0C12AC479E5A372F78493659A9F6EF15 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 470138E7CEAB20BAB087ACA9705EA57D /* PBXContainerItemProxy */; }; 0D032123F4EBCE74D9FED646A18CAE69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26206,11 +26291,17 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */; }; - 0DCDD0B3CA521B7850816A5D935152E0 /* PBXTargetDependency */ = { + 0D4019F7AF1220A2C793EF0C64263FD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = C4B4B356D37ADE653DE1567F93FA5923 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = C696719409EB5F8B1A80CA88B35DB432 /* PBXContainerItemProxy */; + }; + 0E0252A97BFF8FB2A138FE05B2797C80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 526B41979D8AB3CC9D844673F11FBF33 /* PBXContainerItemProxy */; }; 0E24937F77C37DEE56AA270AB9FBB911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26218,23 +26309,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */; }; - 0F04A303B5219313365F56CE70965675 /* PBXTargetDependency */ = { + 0F676A73B7632EA7A9D0AF12AC0359E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 773AD3CF3C0FCAA73BFF93A3C878AA72 /* PBXContainerItemProxy */; - }; - 0F0A43014F36A8306CF888142CB97B37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 95C35D62D177F9F35FF9EE4C6365A9C8 /* PBXContainerItemProxy */; - }; - 0FA31615F24E65E75621F4860F4F564D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 4350CA531EC9B9D5CA8C8CD1E900D676 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 3B50AC7C5DDC6E409BB383170BC07882 /* PBXContainerItemProxy */; }; 0FDB14D9412426C06AB2B68179373C1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26242,6 +26321,18 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 535AC5015896B54EAC072143514C8D8A /* PBXContainerItemProxy */; }; + 0FF8153E99B4D689AA392E8E2F547D74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 3A56C2B666E4B90E21BCAC38C655944F /* PBXContainerItemProxy */; + }; + 10504B2D0FAF5B70161832E5AC595519 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 9076C72B616E94B208DDB891D8268FD8 /* PBXContainerItemProxy */; + }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; @@ -26266,17 +26357,35 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = DFFBFD630CC61B0FB41AF5DEFC377BDE /* PBXContainerItemProxy */; }; - 1256EB4DCF2D62986EF266346992527D /* PBXTargetDependency */ = { + 122CE582673F2007971C51F10CD38656 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = C1F5BA747AFD2211F033D4F78B6586A5 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = C9D2FF05C5151639C62AD471334EF076 /* PBXContainerItemProxy */; }; - 13CA56FD6EAC73C37D6554C8E80F1134 /* PBXTargetDependency */ = { + 1339D4DE00F5E65D8BF7A4F1D21FA80A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 61609FBA118DA2A5C05872AF4630A30F /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = B58A73DC85AD293D40714358511EE624 /* PBXContainerItemProxy */; + }; + 1357207E8323C169D1E0C98A1CBFFC2A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 9034F508583D9F6FF9B2A7D5E2F4DF27 /* PBXContainerItemProxy */; + }; + 13AA384326578171422CE0C682744865 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 81C79203E7941C605365961EA5D2CE71 /* PBXContainerItemProxy */; + }; + 143D27C1FC3FC8ED20AF39DC5C8E4209 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 870DD11CB797048CDE4F277C95873C94 /* PBXContainerItemProxy */; }; 145777FF9590FE9C12FECB43C5ACC961 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26290,24 +26399,12 @@ target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; targetProxy = 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */; }; - 153C260892F45A676E3DF45DFD093ADC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 6EF8DDABE1E1043543CFE32ED9605D0D /* PBXContainerItemProxy */; - }; 1553668D0B865BB071164BBF33E09CB4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = C6B0262EE0DC1586E56807A2383ABFED /* PBXContainerItemProxy */; }; - 16DC1C9C0D44B59533F8F80C183DFC6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 5E104501585BB6CAABD9C8CD71D42665 /* PBXContainerItemProxy */; - }; 17353D120557AABA6FEBE9B272C4B803 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -26320,11 +26417,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */; }; - 17A30FAD3F7CFC8501370807224CDB46 /* PBXTargetDependency */ = { + 1797E36CBB9336F54B43D00FCB09AC2B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 29C53433D2D07C519D849A22EB0687E4 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 403D87285AAE71BF635F9E1850AD7C4D /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26332,23 +26429,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 17D36ECBB80503E58E41038D87C8A66E /* PBXTargetDependency */ = { + 186C24CB52A2AC3AD1106597BB53FB80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = EA70E7E9BDC8FD944C6DA0AE7E1D5564 /* PBXContainerItemProxy */; - }; - 180B770465674675313D3A1F0ED1B7FF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = B94FE5EFDC3030A8ABF430FB5C851045 /* PBXContainerItemProxy */; - }; - 18430B8EC3A4BC2E07EAB7E98B017714 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 4DEC9D7FE13B483195FCF62546B4532F /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = EC9FE53500BCB1756D40269A0C34FF4A /* PBXContainerItemProxy */; }; 1896C4715B2149A5EBA2504B5379110C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26368,77 +26453,71 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; - 19761360BB0F62EBC4B9C969E2CB0EFD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 13B6B87DD4E28148F03BEC5EF7342F84 /* PBXContainerItemProxy */; - }; 1A1BD4F3924CCBF334A38735C6CAD9D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */; }; + 1AA6DE4FB3E065FB7B30A5B6A64F7386 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = FA13AA3252B429D6363752C78343B710 /* PBXContainerItemProxy */; + }; + 1B5FD8FC7B7320DA3677AB7EF70D5F9F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 01F5F7C6F02F04A143C849817B1EAEC0 /* PBXContainerItemProxy */; + }; + 1BF4EDD1E438737D27EBC84218DEF689 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = D72E79F61E7E9BDBBFAE7BC0BCAF0527 /* PBXContainerItemProxy */; + }; + 1C71FF20F8C49FF8FDD297482F689D87 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = ECA965FF42B4C8F6981E031A7A71A37A /* PBXContainerItemProxy */; + }; 1CB90B8DB64F55B6FACD3A4C886691C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = CA56CB8B099AFAC4ECCA73096D476AA4 /* PBXContainerItemProxy */; }; - 1D9E967E7C4EED09D7479E2ACDDD714D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = C510691B31D0518433B00C8987648EDE /* PBXContainerItemProxy */; - }; 1DF8472826EA8CB4E129A9BAD49CD435 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */; }; - 1E6480D5E6443AA6E88637ECD8EE1022 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = B4534172E3C3C5775C439E10076C12C3 /* PBXContainerItemProxy */; - }; 1E86F846CC0FF76E323FC68CD12C6316 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1ED4899FB0569FDF88AE8CF902042583 /* PBXTargetDependency */ = { + 1ED96569A167625F663C08AB04F685B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 98F30AF890B9AF28BEA44F60CEB8860F /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 67B89DFA59221A394F419AADE64895BE /* PBXContainerItemProxy */; }; - 1FA6A9982792188CE9181FBA1CD8CC68 /* PBXTargetDependency */ = { + 1F337FB8E31611FB97EB7CAEE45590ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 1EFEABC351FB8129C000CE254A4AA4A9 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 15120471ADC187E59B8EA4D14A82D2D4 /* PBXContainerItemProxy */; }; - 204B44B742A9AD8F9EA90D7DA99AA51D /* PBXTargetDependency */ = { + 20B77649C9D8B4F34CA52C7F21E5B488 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = FF9F0FD13378414B487F93C0AD0FA582 /* PBXContainerItemProxy */; - }; - 20988B3CE7673BCC5876C6C19D4EC003 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 9E675CD17829628723F03F9B1112C06C /* PBXContainerItemProxy */; - }; - 20E1B9F7BA821C40E9EB4A274B14012E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 7F4B0F56D3B5277E8F7C4CB1C0DB7F85 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = AF6F38B3643EAF8422CCA8952166A344 /* PBXContainerItemProxy */; }; 234992BBB126A394443E99BEBD18A1F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26446,119 +26525,71 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */; }; - 236484586B8A122D10AEF96DA6F63C6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = CC1AA9790DC453ADD003E2C37F4C7A27 /* PBXContainerItemProxy */; - }; - 23BDDC9E7EF289A319FABF1761140312 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 41D2449E304AF55351192742BC230D73 /* PBXContainerItemProxy */; - }; 244B50F0AF3E46D55924620969A2CB74 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */; }; + 24855BCA3EFE5DE677FFA7A279FCC89A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 9373EF73D46B96FF24F7CD66AA175577 /* PBXContainerItemProxy */; + }; 24E814046525044258B7154439929999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */; }; + 2551343F9073B2AE2360B9A920298719 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 0D4D30F628010BCD0383210B1E0DC928 /* PBXContainerItemProxy */; + }; + 25963F58CC5401492527FAA30B588020 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = AD7529713B9FB7B24ABDD07CEAD1A00D /* PBXContainerItemProxy */; + }; + 2623CD381FAE0925C5EFA8D194ADDAAE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 7FAEC34078D0014FFAB5CFBAFC5DC47C /* PBXContainerItemProxy */; + }; 273AB73143566EEFFCA27BDF03FF3713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 36831ECA54BDE0210098C683E1128ADE /* PBXContainerItemProxy */; }; - 2761ED61C87E06ECEC30910240A89469 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 850B063960407310B0E53DECA0660BF7 /* PBXContainerItemProxy */; - }; - 285DB63EE964DDD0F40EEAAE13F79906 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = B3DCEA994FD6FFC3FA497180D56AFCF8 /* PBXContainerItemProxy */; - }; 28824AF26C22A77C23B814C2FE067468 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 89EB9AE9BC2B35DEF18D56F66D4482BC /* PBXContainerItemProxy */; }; - 2884C8B74044962EB44DF56AD617D236 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = F85C1A37B9528F24FB79F8E95C3D8F1C /* PBXContainerItemProxy */; - }; - 28E5FF913960B1D81912A4A93E7BAA30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = DCCA9E8D3AC4244758148C6757ED052B /* PBXContainerItemProxy */; - }; - 28FB4B9E4EC5763E60B65BE9A1B06B16 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = DB67D09819FEB7EE489E9C5E1DC8617E /* PBXContainerItemProxy */; - }; - 29446C1ED82801CD23253043CC774415 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 4797E1E62C48C98CE3351E6A559D6D21 /* PBXContainerItemProxy */; - }; - 297F184E34E1A7B9591688DB0C056A69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 734DB1EBFAFE82B1FCAD8EE93C98879F /* PBXContainerItemProxy */; - }; - 29E67876518EE8EA2A4FB03828BD9505 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = C8CA66E2567F9C46F8EECD1D198CCD18 /* PBXContainerItemProxy */; - }; 29E91BECFF30EB34B1B5037266B22EBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F492237E8E3448E5615C106672F7C914 /* PBXContainerItemProxy */; }; - 2A0CF31C873D7C429EB498AE19F2BF98 /* PBXTargetDependency */ = { + 2ABB98B16410D5DC27D004AA81AA614A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = A4CBE11F8AAD0397D776042E150DDADE /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 0F287469A23991276050BA94E399AE38 /* PBXContainerItemProxy */; }; - 2A780E51403BB5BA0732F219FC74F2F3 /* PBXTargetDependency */ = { + 2B0B0257074F08BCE13E70A45B82F39A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 598CAB8D9889D90E9999732B0759635E /* PBXContainerItemProxy */; - }; - 2AAB6FF4D4FA051079196F8818B09ADA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = DBD55CA88D8A73C52581B9D4CABFE7D9 /* PBXContainerItemProxy */; - }; - 2BCDE68EEB66EDD5799B713F3E1DC2C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 22AC4DCFBC7981389AF3E6CBC30F883A /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = A2F373E9BE916CCDC4F81B2A701B7DA0 /* PBXContainerItemProxy */; }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26578,17 +26609,41 @@ target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; + 2E786793EB4B28C74BFACABC488BDF4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 65ED8DA6C4DDA777F5189F5214DB08C6 /* PBXContainerItemProxy */; + }; + 2EA25BBF8CDAAD327AEBE61B1D24C2AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = F2717BB7528C97650678B11CC251CD1F /* PBXContainerItemProxy */; + }; + 2EEA6A2701EA6C4C6C6CA4AE79878F48 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = E1C8F98CB2FD5EB8B53868CFD292CAAA /* PBXContainerItemProxy */; + }; 2FB76CCFA4349F0DC6D356B0A6C5656B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */; }; - 302DB1D993825FB2BB189971001A243F /* PBXTargetDependency */ = { + 2FE72A32DF183A53FF3E249136214D0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 7B7096611D237F01BAFA8696E73B04C8 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 6F6B2F1207D9806CAF405EA0BBFF4FAC /* PBXContainerItemProxy */; + }; + 3000060183C31353FB97843F69375001 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 0952F224D73C10AD091CCE30556CB93B /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26602,41 +26657,47 @@ target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; targetProxy = 343C5B3B96C0727BF01188E5154FBE61 /* PBXContainerItemProxy */; }; + 308D03476E409BAB951D9F9200DEE728 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = B9AE5CF754F371EA8ED61D8E3A8DB330 /* PBXContainerItemProxy */; + }; 30AC941FEF6A9D5EF337F6191CD5D669 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = F191A483929B03CE30B1D31702CAF54A /* PBXContainerItemProxy */; }; - 31228D5A99489341C5C20572CF9287E8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = B025A2287C2E67AE204896DE7513876C /* PBXContainerItemProxy */; - }; 3152722E87FC29CE2F09059093E805D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-RSocket"; target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; + 325E02D6E23C05AE97A2287319CBFB0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 08A82DD4762F44182AF578189EB14138 /* PBXContainerItemProxy */; + }; + 33552E419FDFDB4854A7BE3930F686AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F6C2459C9B6C3F3D211CD139CFF446E1 /* PBXContainerItemProxy */; + }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 3475F3B5135881B72DA1A8A9F084CA1D /* PBXTargetDependency */ = { + 354D0E73417E97A5EC346FF5DAE8187D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 1198D25762D5B4C0588FE991C1809018 /* PBXContainerItemProxy */; - }; - 34B26A42CEFF493353808C179AABA35C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 18B6F265FECC8BAC86ED364C18704BCE /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 08F25805D8C5B150DD4A0C68F961AA89 /* PBXContainerItemProxy */; }; 35614ADF4A7B665694A0F889FE3FB55E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26644,6 +26705,24 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */; }; + 35A320F28708C5CB2978DBB70B3F6A61 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 3CDE6EBF741ECD6F8BD338F3D59C2860 /* PBXContainerItemProxy */; + }; + 35B7FF3E55C1005FDBECD104470C82D5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = F8154B0D0F0F17E1E3CFC639897DD146 /* PBXContainerItemProxy */; + }; + 36202FBC81CD1FBA682E47D19BA3DF3B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 1DAAA56D32867009B163D8F4D90B9AF4 /* PBXContainerItemProxy */; + }; 36597FCB98CC1D64622E4991713E4EBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -26662,47 +26741,35 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 12BB121C6C62E9D130D1F1C4061597FC /* PBXContainerItemProxy */; }; - 36974C8F75F420E3329EB0958EC9185C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 379197C3A7AE8E8D3F2EE759541D38F4 /* PBXContainerItemProxy */; - }; 36DE053642858BDF23DDF8F4AA2F8E1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */; }; - 3712471A19239C0E8BD33667DD8F7D5E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 554D6BAD7C187C87F244E06A99E375FF /* PBXContainerItemProxy */; - }; 37260BC806FE412F14EBFBD9BFE86645 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */; }; - 372D9D50B82F46C05E9C7BC182B8D418 /* PBXTargetDependency */ = { + 37E1D2588FE995A65FB1D22395139E6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 7BADA42FBF999C861B06C1D310658CC6 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 5AA10308010480DDC169D81C3F01B9BB /* PBXContainerItemProxy */; }; - 396FB24D8308ABB76B8F65A818B42ABB /* PBXTargetDependency */ = { + 39813ACBE9BB183CF1B44C5723B3E3B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 36263AEE038C8737867D65E34899F852 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 0C0E5D11EF771190FDC74DC37EE99089 /* PBXContainerItemProxy */; }; - 3A0EAA6655674B4070F11328368515AE /* PBXTargetDependency */ = { + 39BACBE858537096FABB278ED59ACB30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 9124EE22E27E20C71BB9F3893A70680C /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 57DEEBFBCD0C5C94A7F17AD8BDA303E4 /* PBXContainerItemProxy */; }; 3A0F3DC9CB1C41D5880D752ADD811CAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26710,23 +26777,23 @@ target = FABFFA119E956A84968EE0F6E5D7EB10 /* MMKVAppExtension */; targetProxy = 407E86C85F781DAACF0C39B7C1F77209 /* PBXContainerItemProxy */; }; - 3B67C7F38BE18E6DC7E00CC5F6DC8443 /* PBXTargetDependency */ = { + 3B8F3F2C18AFE3F56E982C2D39C85C92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 5D8F8111DCFB09136329B6DED79420CD /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 7556712C98F7DD098FFF0427831DB435 /* PBXContainerItemProxy */; }; - 3C428B42ED834209056F5C79626DDE2E /* PBXTargetDependency */ = { + 3C766E190E3ED6E6CC879DA634B5482F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = A4FCB3D24BB2DF2D352EBE3103D5ABA5 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 8B636AF29046A1F2D78E4D3EE7989511 /* PBXContainerItemProxy */; }; - 3D9E019A439AEB77E6A4B4F4751D162F /* PBXTargetDependency */ = { + 3C7D4C1A048571470CF90C4E5E596CD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = F45096B8FD555A06EA1C07A1B9384315 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = D21329A3FB37B67FE4A6299B450E2730 /* PBXContainerItemProxy */; }; 3DC4BA9D7F984F02E2BD3AD2EF39F504 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26734,23 +26801,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */; }; + 3E516659092C3C58F3EB6F5ACAA79D3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 8197E0D8D5DD8D284DA5E9647EBA2389 /* PBXContainerItemProxy */; + }; 3EC7B7DE30BB33E3632E1C2142B98A9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */; }; - 401247DB06298A0D01832074A73137F3 /* PBXTargetDependency */ = { + 404057CBE673ABE2DE954AEA9B296458 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 8638D7153ED7221665993BCC8F0BA01E /* PBXContainerItemProxy */; - }; - 40CEC15FA6D2C2E01B9FC1129613E1DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 34839291A52DFD6AC17E742FDBF23C45 /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 49B7635A50C65BB18A0954221A1EF8EE /* PBXContainerItemProxy */; }; 40CF33F53D7B76AB1A7D1B47986EA231 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26770,23 +26837,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */; }; - 41BCCFE52BA649D26BC808AEFAFCECED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 05E0827F186C5BD158911C697C679D34 /* PBXContainerItemProxy */; - }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 4248A8D8BAE34DF49BC46B2875E04FD4 /* PBXTargetDependency */ = { + 422A450798FB334D709101F34A7C2204 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = DE6B215D0C9EB7E866EA574EECF90FB4 /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 34547D0A56C9383C89332A1674D38CEB /* PBXContainerItemProxy */; }; 446CF701720C6ADEDADD5362CDBF6A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26794,23 +26855,23 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */; }; - 44DFB5AF83408AD88044C69AA0B2FF8D /* PBXTargetDependency */ = { + 44B783531E4C08A01EAA3B33A82B649E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = D4A3D14AA317BA4D8D8DAC57F9A23CCB /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = E0DF18865EE7C7CE2840B33D3039ADB9 /* PBXContainerItemProxy */; }; - 45BA5875D902A92DA2F7282046AA465B /* PBXTargetDependency */ = { + 4654C9E56298F175D95AC145CC734CB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 1A17D29CB990271AE1E0C74A55C66806 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 15260BC1B6E26DA77110C9DF4777C21A /* PBXContainerItemProxy */; }; - 47014CFB9B057513FC3C1B458A1420CE /* PBXTargetDependency */ = { + 46C42744DDD2F571E2B9958ED504CA6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 4FCFE9411C7C6C4BF5E78143F364F74A /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 399797907E32469038FB616E6C02FFE2 /* PBXContainerItemProxy */; }; 4740A9CECBAC206E21B5C739F4B25FED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26818,35 +26879,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */; }; - 4766A0F0C5F409BBA90A4637C9558917 /* PBXTargetDependency */ = { + 4901FEB8F56429CC198027869BD91B97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 33162C2F8BF9D39A9E7B09D8ABE1B32C /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = F8BCA8351356969B0EF95D36D2ABCBD9 /* PBXContainerItemProxy */; }; - 48898A89FFB805D75FE4D59DA842A4ED /* PBXTargetDependency */ = { + 49644F2979CEA2E1540B008B8F2F6D04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = AABB6F302EBF3BD73C103E83AFC5F4CA /* PBXContainerItemProxy */; - }; - 492C99963DD30193D7B2A70651D26E9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = D8EF7F2BF975C7478336081390B65143 /* PBXContainerItemProxy */; - }; - 49612EEBA07F4171B01D8E5C096AAA24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 7F00A7328CDFB22C8A1C1357DD5AA3BA /* PBXContainerItemProxy */; - }; - 499134D582570C4D3342E965BC5F5059 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 090BED27009382176FE64280460AA1B8 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 9568D82C9A65E0A7EB4E486EB9A61359 /* PBXContainerItemProxy */; }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26860,11 +26903,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; - 4A586319A2DF28CEB924977CE7FF72C3 /* PBXTargetDependency */ = { + 49B880CAD8604E80F8C7C9447E055311 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 7F7C0EA8206F183CEB02756312052C84 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = A4E93EEF24D1C58BDB57A84D06EF6728 /* PBXContainerItemProxy */; }; 4AE7F0903CAB3EEC559660BF180EDA72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26872,6 +26915,12 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = E82ACE99C02A32E8354DEFDEE354DAB2 /* PBXContainerItemProxy */; }; + 4C503DD05787CF7FD842C81076C7121B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 0F0A09BA8B6C05637754A9E77DD061A6 /* PBXContainerItemProxy */; + }; 4CA0E425446EC88158C4A8B0D077B5FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -26890,12 +26939,6 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = C6E20B6175C652A3F0FF783D968D0C22 /* PBXContainerItemProxy */; }; - 4D9F633A3AAAAFC9080B7ECC6CEDB8E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 194CED2F19EF31862D8E377040084F71 /* PBXContainerItemProxy */; - }; 4DE0A2CE3BCB7D906C27DBEFE27BF74F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -26908,11 +26951,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */; }; - 4FD4453348C4B25EBBB01C99CB9FCB90 /* PBXTargetDependency */ = { + 4EC3091EE929C19E8896D7A2EA563F23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 7A4FC7B84ACC2EA5C4F74A83F887FD9E /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 93BB0CA2AF6AEC194DFF674DAF5CA31D /* PBXContainerItemProxy */; + }; + 4FB12381357EBA046DC7CC20A413725E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 2B3176C374F5C2F9A1DA8C817FF32AF2 /* PBXContainerItemProxy */; }; 505B4B56752648ED437C22E53D0AFE0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26920,17 +26969,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */; }; - 5068CE1856EA2DAA8223A704FC0737D4 /* PBXTargetDependency */ = { + 50729A0FD9037F4036868B85823DFCEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = F8A08762BB599C3B0CEE24E0C138DE07 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 7C075DE06CAF5414973463DCBA08A9F9 /* PBXContainerItemProxy */; }; - 509596E42C6E16EC89D559258AF49387 /* PBXTargetDependency */ = { + 50828A6395FB1CFB9F530A448770E1DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 72EA4756F14D86C830158197A12685A1 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 8A95A9BC4AF69857178041F5461671D8 /* PBXContainerItemProxy */; + }; + 50B9A884D00C3400F4A5F07D6211CB94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = F4BF459131F18B2AC247C24158AE88A4 /* PBXContainerItemProxy */; }; 51426FE9C0540AEE85464E6161AD8A3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26938,17 +26993,23 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */; }; - 52F62CC4F46355429A759CBBD8B86E5B /* PBXTargetDependency */ = { + 51A04BA77142973897736FC18BD1C371 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 80D4B878FFB6F6899E554DFFCD720B08 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 7800F09BF976D735911B0AB40947A5B4 /* PBXContainerItemProxy */; }; - 532BE0A32B4518B5529B6C7A340879DE /* PBXTargetDependency */ = { + 530494A4FB2C6A8E55BC52C966C6DC46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 4D749F6FB5ACE4712B3051C3229318CA /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 20A5E64EBB816538F63A6EF241E993FA /* PBXContainerItemProxy */; + }; + 538A21DB7067A011D0AE9E313B3901D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 62639906936EF38BCDC9EF967235DFE0 /* PBXContainerItemProxy */; }; 539216AA2FCFC2CA2772CF3C2CA1A180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26956,11 +27017,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 5475A7D10F548823793DA8859F6773CE /* PBXContainerItemProxy */; }; - 54BB51A30305984DDEF17D85AE3685C6 /* PBXTargetDependency */ = { + 54589953D03DD99F1FC1430E8FB77331 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = DEFEE79490319F05A991BADACBE2E153 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 60B30FD9301A97122C6B9F9F1AF2DC4E /* PBXContainerItemProxy */; }; 54C14464C7947693AA0C225FE456BE54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26968,35 +27029,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = DE604F7BA4EB8EE44B59E4E857CA4D7C /* PBXContainerItemProxy */; }; - 5518DF6A628938BB7529FD10ADA0941C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 6415BA1DD0A15745206AA97E2001FD0A /* PBXContainerItemProxy */; - }; 554B6B4FE94DF8917E3AFCBC6B596BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = BF2A9ED197DF746C24A0C6CB8CF649D6 /* PBXContainerItemProxy */; }; - 55C5BB5AD5920D00749D32AAFEC664A0 /* PBXTargetDependency */ = { + 5601D049FDC20AE07C2DB4A6E7C7A436 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 5463106705B871B438CC09F89259A0E8 /* PBXContainerItemProxy */; - }; - 56029CE7944F2CF143E4B6F2E5E77BF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 8296F6330DE7124ECBEB191C5C1FCC01 /* PBXContainerItemProxy */; - }; - 566249D1AAA5C4EBCEA0FAA4381F886F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 4982244A8C25CDA20FA8C231F99657E4 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 47C54555D2F5B34078D26D3DF0107418 /* PBXContainerItemProxy */; }; 56B47897F97C79438D6512C76671C277 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27004,29 +27047,29 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4117C1D772FF72CEB7856965D78C23AD /* PBXContainerItemProxy */; }; + 570EC5A2754F37636B66EA4E76155746 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 5A2CFA42B4693CF6FE9200F6951B50BB /* PBXContainerItemProxy */; + }; + 574731599DF5D986135DD05C910C2071 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 2E4F96E81B0FC3D6A54B9B7EC388705E /* PBXContainerItemProxy */; + }; 57D76DD84C0E257A7AC31F2CBE1F3A00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 0737629FABAD4284C6231D677429F1A7 /* PBXContainerItemProxy */; }; - 5855F0157A3E6BB7253575EBE7A2495D /* PBXTargetDependency */ = { + 58B8B2FBFF2665AF431E31256A1877E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 63DD4364D821D305C0A82B1738A1A7AE /* PBXContainerItemProxy */; - }; - 5899991395B1F3417BCBA6B019D6BF13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = CAAB5EB076A114ED01994EE12AED27A3 /* PBXContainerItemProxy */; - }; - 58B6246766677F6C603D8B10123DCDB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 6613481526702C01F9AB80307D18C84F /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 8077927E31C01EF89F7ABB62547873FF /* PBXContainerItemProxy */; }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27040,35 +27083,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5A36486ED9E9C06DEA3BA5390B10041E /* PBXTargetDependency */ = { + 5A0C39175ACF949659660263E363DA39 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = AD5A98970A7F6E1628D5BB73054181EE /* PBXContainerItemProxy */; - }; - 5A46884425BD735DAFFE978F873E170D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = B2D50A36DE2955D1A62F533C4CCF5511 /* PBXContainerItemProxy */; - }; - 5B365E090FB3189839E0EC4A4BD21CE8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 4C423D9F1E89739071382BB85ECD11D0 /* PBXContainerItemProxy */; - }; - 5B639C8D1264415E1E22299BC9610FB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 3C8CD83DC70E83B0A80D388AEB0C2A5F /* PBXContainerItemProxy */; - }; - 5B8709A2D73447FA899CFEFDCD7BCDE1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 93CCF664D378373C70A6C516391327C1 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 7723DD25534A61313C280084D2519194 /* PBXContainerItemProxy */; }; 5B8E682CA4C0FF7278103001BA32A52F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27076,11 +27095,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = C6B9A2DF20D9C7D3844C5462F790CD21 /* PBXContainerItemProxy */; }; - 5D0FAAF136D81CD2C5C9DA9767F26E40 /* PBXTargetDependency */ = { + 5BD29DFF171891D370533484AACB7D65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 50C38D85648D05CE6A15E38C2D4C91EE /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = E69C296627F5F80625C985DD92E566FE /* PBXContainerItemProxy */; + }; + 5C950266C235720247E759737AB73DD2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 864244C5E2B6B5B570A8C84066F8BC14 /* PBXContainerItemProxy */; + }; + 5D1CB8E0CDBF6C6D74589D41485CA44F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 1F554564FFE8094747DBBD929F8168E9 /* PBXContainerItemProxy */; + }; + 5D9EEB9868D21A18D4FAD14995489FB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 9319D41494CA189C63F106011C84CF6C /* PBXContainerItemProxy */; }; 5DE5DFEFFA172A9FB5F603C604B7708D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27088,17 +27125,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */; }; - 5F5921BD1D6E5E3545E65C93A9EFC96A /* PBXTargetDependency */ = { + 5E5B236A96845D4AC716DBC8875BB190 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 275058C144F77802916E924E4F585121 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 3023F3DB7EB2EC0FB03E424D23834964 /* PBXContainerItemProxy */; }; - 5FC91458D70F7EA8A964F4B8B8940670 /* PBXTargetDependency */ = { + 5F25BD9DAE0128E47231C43E9C2DC34F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 4CCC1E1418FED816CB8EBFF86D9E8080 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = A40B48DCA7DDBD4BF84F5AA14043F823 /* PBXContainerItemProxy */; }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27112,41 +27149,29 @@ target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; targetProxy = 88D72330C8DCE3BF856F9C1ED31ACD43 /* PBXContainerItemProxy */; }; - 6030FD8BCE1647799EF3828F3EAF579A /* PBXTargetDependency */ = { + 60E2183033A9C3CA218AD216BFBB35DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = FFE99D84287ABA11C8B8654A114206F0 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = D2F805B8B051FE86210844FF0C2603C3 /* PBXContainerItemProxy */; }; - 604EC1386C89D94208E62EC7AEBC98AA /* PBXTargetDependency */ = { + 613886CD7EBB70BFDB398A88A8500556 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 43DA95945DCBFD46F6CDAD2F73D3441D /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = DCAD8B7C1DB94EAD7456F090A0F1519C /* PBXContainerItemProxy */; }; - 6092382CA1F942CE88234B3CA91BE5D2 /* PBXTargetDependency */ = { + 61BEE753502F0746952AAEC285E8C634 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 51FBABBEB4DB9414DC04B2EF694E5D5F /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = E9499D3C727B97B3F5A75BE0EBDB981A /* PBXContainerItemProxy */; }; - 60C6402E38AF88C7685EEC4261D86C58 /* PBXTargetDependency */ = { + 61FAF14317491DACEC802EEC7831D93D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 40E6857BC24BDD6AF64A1771CAD31263 /* PBXContainerItemProxy */; - }; - 6136588B90660F37BBB22232A56C005A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 608548EC2DD04980CCFEFCE64C0B165F /* PBXContainerItemProxy */; - }; - 61CBBEE809ED8E09D7D0C2D2DD1F4280 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 61F67A74DBC97C37575E0629E83EB0AF /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = CEDABBEB37F44C5DA4A262C2AF98CB64 /* PBXContainerItemProxy */; }; 6298DCDD90053BAFC6CEAE719941BCD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27154,18 +27179,54 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 51BB17051B552032F9321C6BC8CFAD27 /* PBXContainerItemProxy */; }; + 62B0221FC91A6BB6716081D2FD161421 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 8D4B6BB47D5DD009C0A3260967DB4EDE /* PBXContainerItemProxy */; + }; + 6376FDD0B17A95025B8F31EAC8A58795 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 9AEC03F5DF4B88581F22BC49DE03F7B9 /* PBXContainerItemProxy */; + }; 63D7F15F3F84CE1D7897DA20F6CE6F43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = DA27884C3FBE229B7E04DBFA9F4A58F9 /* PBXContainerItemProxy */; }; + 640CE6D4E9BDBF9259446546770C7C61 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = BB9BEAC6B1FA07781BAA7BEAA32322C0 /* PBXContainerItemProxy */; + }; + 643707AE3B5377FA13A292600619CF92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 21A9A3D7E7AE8C468D07BCB1E7B24CC5 /* PBXContainerItemProxy */; + }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; + 6451C9E6CA7820FDE1EBAC13E5874615 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 22349DE3618B5AE204E71B8D0AC0DE1C /* PBXContainerItemProxy */; + }; + 6484E6720ADF66AF9560B30EB7A390A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = DD96CCC95C2B7340BD82E7ADFA0FC4F8 /* PBXContainerItemProxy */; + }; 64A874D42FE0579EBB177F7A34B67270 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -27178,11 +27239,11 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; - 65EF803A6DB74C097F8FE603FFCEEA15 /* PBXTargetDependency */ = { + 65BCDCCF7FF0998145528A6C95CA8C6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = B3F2551948AD75234FF43F2085DD8D2D /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 128EEB4453BAEC2733570788B4AF21C9 /* PBXContainerItemProxy */; }; 65F9F3E04EE3016D1347EC50F730C953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27196,30 +27257,36 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */; }; + 6683754252A0192CA2DFB36FCA013936 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 74A4C7B9761C9EA22AFA61504187AE88 /* PBXContainerItemProxy */; + }; 676B6FEE2373CB5B7A4F4AADE445A472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 9C9D41F92515D7D2C0205D966777748B /* PBXContainerItemProxy */; }; - 6815240BB0FB39F9C96E9C1029AE34CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 5DC91205E8DEC3C573AC5E060AC9C927 /* PBXContainerItemProxy */; - }; - 6843B7155C11C0D7EE50106C653050C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 6C4F6ECBAC62B98F8CC7335528485D49 /* PBXContainerItemProxy */; - }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; + 68D25E506AB692AC990986B5A30C5224 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 0AE44B11678348277B6D82B5666F431B /* PBXContainerItemProxy */; + }; + 68DE9E0D2A6B1E6B84F6086FB65D8609 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 099969C9E93FA925F2EEA8736E1F28C3 /* PBXContainerItemProxy */; + }; 68F3EB5F95FAC1BD87C5FC1DE066D8DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -27232,18 +27299,6 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 690FE24A1889E898BBD5E1BAE5268DB0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 6990158C97AC35908DE8A80094268838 /* PBXContainerItemProxy */; - }; - 699A659C613A91BC19F43FD467AB6C4B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 9CDC12AF06FB74EC90FD1276F0766688 /* PBXContainerItemProxy */; - }; 69E2628D4D95C8E998B2228D394BBE1A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; @@ -27262,11 +27317,11 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5CCEC9141DF983E90BD5AE3E05C21A7B /* PBXContainerItemProxy */; }; - 6A8CEE1AB3733FDEA9BDEA18DF151D2F /* PBXTargetDependency */ = { + 6A72CF7DF35E2A5DCA25882A564EC911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 989D4F212658F247768496A466092FB9 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 6BD86AA5AB57BF84E754C50CE5E8964C /* PBXContainerItemProxy */; }; 6ABD1C96CFAB9999A3CB6EBB60E7009A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27274,23 +27329,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B427832E8B2D091A989E92604487DCF /* PBXContainerItemProxy */; }; - 6C274535C6DA857558A9A5BF5BD1AF38 /* PBXTargetDependency */ = { + 6CBD444D6EFF03AB667AD55FA993099D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = FAE682AD3F18BA5E2C2470F98FFA4C00 /* PBXContainerItemProxy */; - }; - 6DA91774211176A4B35C36AD1211B936 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 7CC3ED5ED6AD4D27C901B56FD133FE4D /* PBXContainerItemProxy */; - }; - 6E4835793630D6486828373F3DC21C82 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 40B8389C781C1B2E78339B432C49936A /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = EC0B7672EEE8620DF47F2E21D5EBE10F /* PBXContainerItemProxy */; }; 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27304,36 +27347,18 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 4995181EAD88B0A6D8B25B4EBD7059C0 /* PBXContainerItemProxy */; }; - 6FE5D7C3A807103ECF9D64CB8DA97E08 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 0DC3B6321D11F1F09D86D4AC1718F408 /* PBXContainerItemProxy */; - }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */; }; - 7122DA42FE5E1E54A681210FE55C2034 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = BCD36193060B4C22CE07B27BEC94AB90 /* PBXContainerItemProxy */; - }; 719E3CB07862230515EC8439F291EBD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTAnimation"; target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */; }; - 720ACD9E2412362B357E4BC5813500CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = B20609EE12B17AD79039124D3CB72542 /* PBXContainerItemProxy */; - }; 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27352,23 +27377,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4CE3F4431AF21200231C83FD68EE5344 /* PBXContainerItemProxy */; }; + 73721FC1C14034A5AF3F0C0A1CC3903E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 9194AF57E6537EB866800A58DC2D1CC5 /* PBXContainerItemProxy */; + }; 73AFA9C3EE158345C0AC8853E23D4C99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */; }; - 73F722161FF80EC9F38CEF1F21B8AE69 /* PBXTargetDependency */ = { + 7461DD0363F8F5220704C21BA9F3FE7E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 6E12F19075ACF8A11F64C763B19F918C /* PBXContainerItemProxy */; - }; - 74C087CD8A6ACCB00CAF022716B907C9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 9506FD3CFB076115B3FAC9051C98B5A0 /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 689A10223BAA9BD30C6CE5AE9E05F406 /* PBXContainerItemProxy */; }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27376,6 +27401,12 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; + 75E307DEDF03DF4A1E93A3E3E256BE5F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 7A9FE54492E830C23AC41F90A8890A98 /* PBXContainerItemProxy */; + }; 763950692B96D0F454EC298D94E2D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -27388,53 +27419,41 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */; }; + 76F63007CF9D2F11857C4C428D1B8395 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 300ADC8C9753BFA8AE1F776005FC80FF /* PBXContainerItemProxy */; + }; 775E00DE8A8597FE01362B4644F5392C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = C33E9472C09D771A868C935EADD927BB /* PBXContainerItemProxy */; }; - 776DCD1E2B137650A769E31F4C099BE0 /* PBXTargetDependency */ = { + 77B3A5CE2F74A44F2F7CDDDEB4B95F61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = A971E17B613450724628B874B9117ADA /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 49CFEE179D55C7E33574ADF87BF5875B /* PBXContainerItemProxy */; }; - 78AE1705807BFADBE1788FB71CCEC473 /* PBXTargetDependency */ = { + 79FE6D9E0E801EA5DAA68A89C2A391FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = E23E8EB0E3B24CA91DED77D80A886DFF /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 20DA3D40EBE3814E7F078F7986BBBC48 /* PBXContainerItemProxy */; }; - 78FED2C28D48EA7647115E7E26FAE34C /* PBXTargetDependency */ = { + 7A109E2464B67447DA639668A7EC7B80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 93A70C58E3DA9E185EEB01D58DA7DCA6 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 74F5410359CE4416E203EB2B23BE5E4F /* PBXContainerItemProxy */; }; - 797FBABA65205910D2C51AF8FEEC93CB /* PBXTargetDependency */ = { + 7B25C363825B78F548C58A30E313B2DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 60E421BBB8965133FDA4EAF8F299C7BE /* PBXContainerItemProxy */; - }; - 79BFB6E4BAB139930A9D43CE469CC2B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = DC01BE528A04242EADD5F962AE478F56 /* PBXContainerItemProxy */; - }; - 7ACF79205F90C00F912C99916D174713 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = E24198D30892A72062CA0C31AD440435 /* PBXContainerItemProxy */; - }; - 7B8DAD147C93EDDC26DCFE25E8C9AB9F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = DD6B8713B18BA9F2EBD8F79E6D30360E /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = FC2E9CCCA8551E569F3C65F9D2845793 /* PBXContainerItemProxy */; }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27442,29 +27461,53 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; + 7D2925AEC983016F577EFA774403D770 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 790B29BB6CAA36C2A22440FA382F7267 /* PBXContainerItemProxy */; + }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7E2896D89ACC165DD52427C2BE6C5485 /* PBXTargetDependency */ = { + 7DFEA3E3DBBA1DCD408EBC1342CB44EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = DD612753FA58FADEA88039EF1648F1F0 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = D9C9A931B83779CBA7DCF6838A60126D /* PBXContainerItemProxy */; }; - 7FEF199D1D4FCE973823B45B48CF5AB1 /* PBXTargetDependency */ = { + 7E28B8744807C9EBB77134B6A01588ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = C70B867899187FCDB6FEFD36CDB7D8D3 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 1780DC19A6FDAECCB7C4F3E5B8C8A9AE /* PBXContainerItemProxy */; }; - 7FFBB47618D3412C9817F381C0A2B42C /* PBXTargetDependency */ = { + 7E61A6A52610287BA1AC419E6105B5F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 402C8FD154686E6908784A86B893D95B /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 053CBA4A033207F937660B9FAA1F787B /* PBXContainerItemProxy */; + }; + 7EBC07ABDBB08BE5E11E29C379D02B2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 15123C46531DEBAFECCCD37A68518535 /* PBXContainerItemProxy */; + }; + 7F424239BBC9870DAA6E021383BBCACA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 66BC8BDD65D904B0C8F402B91E10D846 /* PBXContainerItemProxy */; + }; + 7FB53382378CE4705D88EABCE6B8CCED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 6864D85F409B8AF9B3CC17A57AAE3E27 /* PBXContainerItemProxy */; }; 80236FEF3AC6840FE5ABC8D1FF8D3235 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27472,11 +27515,11 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C9548D5EC1772128ADFB40684079BE57 /* PBXContainerItemProxy */; }; - 8159EFBEA4B5188B54492EA6B4132852 /* PBXTargetDependency */ = { + 80658BFF3F49B8FA65473361C32E56D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 47ACD63019A2F8B48B2A34A3658F69DF /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = F8ACE3707A35ECE1DDDA6A49FFF5095F /* PBXContainerItemProxy */; }; 819BAF10584B377A2216A0F89DF68CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27484,11 +27527,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 823E2B7E1F2F4973D13AC3F4B14217C3 /* PBXTargetDependency */ = { + 81D5D0BFCC0FB03316CF4A435D4567D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = C49903AD27E58127ABE637EA1788F737 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 014631622F227A6D87B0D598C9D2C7BE /* PBXContainerItemProxy */; + }; + 81D89D91F5E3E024C47F62FD83338490 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 64CCC0537E5A09CF5ACD9529A77E40A5 /* PBXContainerItemProxy */; }; 8247388091D0881AAFB46349846F8C4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27496,36 +27545,12 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = D3A2BE59053796870DA91971C0D7C401 /* PBXContainerItemProxy */; }; - 827DB56DC78FF81B7F00D3CD9271E3A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 75CC04B009622B0D3D3D1E0953FF3404 /* PBXContainerItemProxy */; - }; - 82B15CF60BA1F24E1D50392F13491381 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = BA375CBD7D31D11819F48DE6FB05BFB1 /* PBXContainerItemProxy */; - }; 82EE3F897B21987955AE2A7BEF426B99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */; }; - 846EC0EFE4E5D8B213CEC0245810B16F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 781687AFD5A98186D838319D36B44ADF /* PBXContainerItemProxy */; - }; - 84B0496C0AA5C3D3780DA0CE1602B892 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = C8D1A4AD5BC0D1B6037AC3D9ACC6021D /* PBXContainerItemProxy */; - }; 84B6DD062155BC96E06C6C8078DD0789 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; @@ -27544,35 +27569,29 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */; }; - 862DB0983928303D9B83EAB7D379209F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 8DF1EB5250BEA98BF6723B09A1F6FCA5 /* PBXContainerItemProxy */; - }; - 88084452BACB5902C021FC3AD307DA4F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 46A3771A49949F2C7FE12FE4AB9A686F /* PBXContainerItemProxy */; - }; 8828AB8AB11A43640DCCBA23B0DB865D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */; }; - 8972ED5A69FCC4F8DE8A878CEE47F571 /* PBXTargetDependency */ = { + 89088862EB4CB9E6F4C8D7289EAB2E6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = D21ABF6C896186FA6183844459B1C802 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = A3DD6C33315A46471FBE713775EC18E3 /* PBXContainerItemProxy */; }; - 89FDCCD7E3AC71BF0B0CCCF29FB89329 /* PBXTargetDependency */ = { + 897B3C8820164B38192C22DF624B6981 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = B00645BE301347810E675D53164166C3 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = A43995CBC5D30B8CB870E8210E2E6015 /* PBXContainerItemProxy */; + }; + 89924C53EB11CB39FA3DA44FA9BD4F80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 0ED929DBE6F405943A8D2040EC34600C /* PBXContainerItemProxy */; }; 8A6A487A4B1F40EA6984510C2CECC877 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27580,6 +27599,12 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = E5559543E1D84272633B986661EE620B /* PBXContainerItemProxy */; }; + 8A6BF46942EA2FA060E6BA49BDBB0B9B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 25E4DAD6C0D27028A06A4BE93C513BD2 /* PBXContainerItemProxy */; + }; 8B4D9312BC7FC674B6DE7FD3EF238C9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; @@ -27592,18 +27617,42 @@ target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; targetProxy = 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */; }; + 8BD3D4ABFA1A0B019082936D31BDBF0C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 79F05FADCEAB382BCD7E3897BFEE8654 /* PBXContainerItemProxy */; + }; + 8C218336AAA5C8C363CBF6D59EA8A924 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 450DA2BBB66038E196229F60D5B353B8 /* PBXContainerItemProxy */; + }; 8C2C39B447D9E5A37E4BB148B376BD4C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = DB5002EE87028969B0D9E669730AF039 /* PBXContainerItemProxy */; }; + 8C443A3E2F419ED1D22612237AB2C555 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 1750AB13A34CA42DC71D1092115E57AE /* PBXContainerItemProxy */; + }; 8CAFD8FA063C017FD3A24FF383AAA470 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B325F9553222FA53980F926E839937E2 /* PBXContainerItemProxy */; }; + 8DB83FBBE52D983FBC18B9EF0DE23113 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = F8A0D282E39D390F981958223346C018 /* PBXContainerItemProxy */; + }; 8ECF751306D004497D4359F4521C4D47 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKV; @@ -27622,35 +27671,41 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */; }; - 933C408479544F1B5017CB678610EB26 /* PBXTargetDependency */ = { + 92076B603161DE38DDE9FDE9820B9CAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = F0BC8E3644AFAAC567919B7B4FC00514 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 8FC5FD35FB57F455A4EDB1E39A19295C /* PBXContainerItemProxy */; }; - 936AB5FA7B853B252800D83715968C37 /* PBXTargetDependency */ = { + 939DA11931E4068E9CC5AC407934A0F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = D5A22979E355C7BE6C5E156C19C4DBDB /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 86B7120016BA7DCE1A0D63EEF7F3F26C /* PBXContainerItemProxy */; }; - 94420E474A78DF0B30B962ED923CC947 /* PBXTargetDependency */ = { + 93C0CA7E66B4C295A25ADAEFA88FA60F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 4AD84E5A499AC0499FD561460F7D0001 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = C8AE47212130A7DD948D9AF9BF9060A8 /* PBXContainerItemProxy */; }; - 96178396135F247B6F0BD48130AED392 /* PBXTargetDependency */ = { + 9432457523D5B76C0A2DA678B1E75D59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 90256776C5C5815D6E612BBBCCE3DF8D /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = F6A5DB87AF0C01932A85897A5411EB7E /* PBXContainerItemProxy */; }; - 96A1472C92DC23FBCECF9D63F05C7456 /* PBXTargetDependency */ = { + 9662B86C35F43AFE88F3CF763A5694F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = A230EA90EF5C843FC476CE57D03AA7CC /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = BFA0BD96FBDA31D6B7CFCD20069D69D1 /* PBXContainerItemProxy */; + }; + 966C1AB8E418F0F862F3B0590A5CCA60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = D7C7A7AC44FDBC34E0FB68067263CA53 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27658,11 +27713,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 97F301D0E667B601393DC21E6EEE805E /* PBXTargetDependency */ = { + 9747CEDB474CD74D3BC35BCD06D39971 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = DAC05435D1CEF99056A02072AB801F60 /* PBXContainerItemProxy */; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 9EDF538C1A2C0382470B3FA10D982282 /* PBXContainerItemProxy */; }; 98CAF57D4AE1A05752E57EC99DA909D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27688,6 +27743,12 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */; }; + 999EA8BEF8CAEF8A21125717120879E1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = C32340CAC5F1C51EA0C1471082555F25 /* PBXContainerItemProxy */; + }; 99AB96AF26C01CEB248731CCEE7D6F46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -27700,17 +27761,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 0053ED9B78FA78A3C6C3F5BE362C5CF1 /* PBXContainerItemProxy */; }; - 9A4C567A23063E5578DF0C00F50522DA /* PBXTargetDependency */ = { + 9A604A7CB403A3C3A619D452BFCFF99B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 8E98CDBAAE1FEF39A7E9904734CDA82E /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = E3BE5F2E3C5CBA4D36DC2AF9928A47FD /* PBXContainerItemProxy */; }; - 9AE03A723493DEFC6624452B2F82B603 /* PBXTargetDependency */ = { + 9A7E406D738AA7D593F3CB83E5CA14D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = ECA83EA75E0AEAD3AEA983F73B065326 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 0B64855C0AEA66A554B7ACEAB1DA5C73 /* PBXContainerItemProxy */; }; 9B2EEDE8DA879BBAB20E4B071536A162 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27718,6 +27779,18 @@ target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; targetProxy = DAC5FE4A6E4A3B1C724D63970BAC4338 /* PBXContainerItemProxy */; }; + 9B663A2A75D9E21B7C96396B2BA2B678 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 779020CAA93B9C0531EB528333D7FFA6 /* PBXContainerItemProxy */; + }; + 9B76D279CF96228DDD85808F0CD17C13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 10B79FB38CF1670237CDF99655006C94 /* PBXContainerItemProxy */; + }; 9BE77C0CE5C822FC5DB8B01450B58D87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; @@ -27730,11 +27803,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */; }; - 9D2F4AF03538B92B4AEBFA891E55C6A7 /* PBXTargetDependency */ = { + 9C968A79F9EAEEE8A6CE501F49D7CDBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = C39204F4E2D128711B02F14987FE8FCD /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 91E18086BF5B384550F843BD29FC2DF8 /* PBXContainerItemProxy */; + }; + 9CB25993E0DE4A687C546BB105805613 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = BBD5B0330948F442A1998768A05CF21E /* PBXContainerItemProxy */; }; 9D952223892B210445690CF8063E5819 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27742,23 +27821,41 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = F58E9777EB3ADF88D9527C53980828B5 /* PBXContainerItemProxy */; }; + 9DCEE99DA9B0BE6178A8B6D3D5D81945 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 9CB3D12FFDA9B263E917D55AC11473AA /* PBXContainerItemProxy */; + }; 9DD60125DC20F42302B0B2D0CB316AC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */; }; + 9E1C055822086B5D178AD243D38C6DCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 34692FF1FA28E04DCB7AFD252F474664 /* PBXContainerItemProxy */; + }; 9E26FA23DA2D5C313CE6338C3FA0D6AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 033CF4371871DC207A7FB8B2A6D3AFFA /* PBXContainerItemProxy */; }; - 9EA103831975899CAE015B39C783F2DD /* PBXTargetDependency */ = { + 9E881EBDD0A8E94942E6CB4073292433 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = A9DC79AF44769CCF9D06E292B1718580 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = DC2BBD8C4BC119437D8206F916B81D3C /* PBXContainerItemProxy */; + }; + 9ED82B637CC477BCEE67B2C89452ED58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 59765C4E326AB45E49AD9EE9A3AAFF9E /* PBXContainerItemProxy */; }; 9F02C26CC4D5A8E85DBF7463BC53A8A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27772,29 +27869,29 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */; }; - 9FCD5DF89049D175CD6B4DA75EC707C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = F28A4997BBD4EA437CFE0957EEF2E377 /* PBXContainerItemProxy */; - }; A01D5BF6DB015DF0EC8522DEE1B04EF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 36C09803F5639679F48876B79C1E1CFE /* PBXContainerItemProxy */; }; - A0A790FC773A76F341FF011BF3EA97E7 /* PBXTargetDependency */ = { + A122CF2DED148E897060B7E56982CB8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 6F90FB38A5A57CD40FE6998783BE01DB /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 49A63A6EC45BD3F7683990F6BE9FD789 /* PBXContainerItemProxy */; }; - A2F8FB5AA36896D8038C5D501F9841C1 /* PBXTargetDependency */ = { + A311AEEBE469BDCECD43CC02A861D729 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = C895E3DD10CA4287995C612A7F015A4E /* PBXContainerItemProxy */; + }; + A34C25F97AB01E2E61B6F7B771AE2490 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFaceDetectorInterface; target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 06C09B543E0F1815CDCABB3D3454C887 /* PBXContainerItemProxy */; + targetProxy = D93524B4354C70E4EF0CE0427845AF95 /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27802,35 +27899,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A40A23589074012395C76E06A1273C43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 0DF457FDE45100134B3DDC84C47E5296 /* PBXContainerItemProxy */; - }; A4F0171858F48CD50806A85D302C6E08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = ECDF72BAFEE1568BCF8EFBBF82F17C77 /* PBXContainerItemProxy */; }; + A5688DEA779C3EA3F815135751E5DB4D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = E48C9A9EEB0A0DEA62C0917C00C419E5 /* PBXContainerItemProxy */; + }; + A614BE3642C55FF1A98DB87BF5B2BB32 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 16A88BF0190C20E14C0C438C39B8C40F /* PBXContainerItemProxy */; + }; A6B1DDAFCA31978F80326B93C5C07C68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */; }; - A71020058BB4CA840790954CCF8BCEB2 /* PBXTargetDependency */ = { + A6B38B93EB4ECBC9390D3E5CCD2B089D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 1277418D299BB3A482A5B64665F1191E /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 7BEE664881F985CDE0CA3CEDC0D9C96D /* PBXContainerItemProxy */; }; - A714BAA7AB92762918488ACB774E6323 /* PBXTargetDependency */ = { + A6FFF7C8BEF67B9713E06F8907E7769A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 687706402DC56CA0EB5AC1BFB9601DA8 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = A5EAB879BC1635C6D9A383131EC00A9B /* PBXContainerItemProxy */; }; A7508E3F53BF61BFA85D004AC3B86866 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27838,6 +27941,12 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 8195006B3B2AB45ACA54D6CFB2BC09A4 /* PBXContainerItemProxy */; }; + A774C0A9CA3A13C07141014321F66E14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 56C68608CA588E8B57869127EAEAD446 /* PBXContainerItemProxy */; + }; A7D97A2BA1A9E380ADD61762394F3AED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -27850,71 +27959,71 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */; }; + A8F14AF75A631E080B34BF1B48667DDC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = EA6BF5FDBD62B9C15B4BF979A1C85E05 /* PBXContainerItemProxy */; + }; A9378C0255BF78AB2A2850B72E2A434B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */; }; + A9A970237946B4BD90461F61EA843A01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = D327C0743CB82C753FCDBBE7A28DC40A /* PBXContainerItemProxy */; + }; + A9C0A1BF6A3C83B5E964173343DA79FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = A1C06E7FD761C9EDB256A1E38B6A13C7 /* PBXContainerItemProxy */; + }; AA23F94379B75A5BB56765F48625ED0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 754A10E91DFCDC79FEAD4753861638F2 /* PBXContainerItemProxy */; }; + AA521E3901BB34A794064D0CCEF13D99 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = AE56E6F6F9CA42BF6E509A6242477C0D /* PBXContainerItemProxy */; + }; AACFA3F54D41DD980F02203B57C8F7A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; - AAE2513AC4128DF8BE8B0787B704CE22 /* PBXTargetDependency */ = { + AC69351F2BA3A61430AF7EB28FA07EBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = C1A7E68B6BAAFD9EB272440C1283E7D7 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 7F7C9A1EB46E2E592A9098108DF7B5F6 /* PBXContainerItemProxy */; }; - AB9E093249282C6491FB607FA5168EAE /* PBXTargetDependency */ = { + ADC0060F2C0BBEBD8C9EA35069A1115B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 8D1EEEAC3A68945E700DE0CDA80DAD97 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 94E19DDA2E997B7F31609C1F4018369E /* PBXContainerItemProxy */; }; - ABC22A26750B3281627BF262F92102A0 /* PBXTargetDependency */ = { + ADC48BB308644518E00F4F2E7DCE6F46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 098840C98BD548B9314F9A0F086D6F42 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 49287802C8948376837016255295EFEA /* PBXContainerItemProxy */; }; - ADDF56529196EA42A6ECAB00862371B8 /* PBXTargetDependency */ = { + AE338229B914B6906B4B18133C98B7BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 96043977BD04CF085988E465527D8425 /* PBXContainerItemProxy */; - }; - AE18730D3EC3B02A969800BD7836C513 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 2CA8B78B8453C676B0FE06EBB6D29825 /* PBXContainerItemProxy */; - }; - AE8928058C040F1F83DA1D2199879D97 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 069958B8A07AB02475B98FC651E3DE3E /* PBXContainerItemProxy */; - }; - AF2E03C2EFDFD0A83EC84983896A7671 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 0F25FE8DA2E19C90D6705512113A5A34 /* PBXContainerItemProxy */; - }; - B0688298BB2F75301D69A9F14C8FEFDF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = C14D0B4421FDB26BDC69CDF7BFF36136 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 564F51F1E802FEA11B38D12A8A2B1FE3 /* PBXContainerItemProxy */; }; B06F178A82F3A420933C23345689BFDE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27922,11 +28031,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */; }; - B1A6FB4AAC42395F399CBA047F942F7B /* PBXTargetDependency */ = { + B10B0615DAEAA4E8D36FDC7AB41528EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 824F632FFFB3682E348BE079E56AD070 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = AD9460844A2F1FC4E101FFEA9C9E574E /* PBXContainerItemProxy */; }; B237B8606B38C5CFB633C18DE09C72F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27946,29 +28055,23 @@ target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 181AEEEEC6D5C83CC4CE4771E3F98C5B /* PBXContainerItemProxy */; }; - B38D8E469F463B76D878AC93D238F8BC /* PBXTargetDependency */ = { + B2CA6BC06C42512EEF0B7E959B3BD068 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = C8F863D2F7EEEA6FA7630E39DD06B336 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 1C978A3749CB2A3C50A7FC845800FE06 /* PBXContainerItemProxy */; }; - B45CF9FA2D9479CCC8C7477D35CBC936 /* PBXTargetDependency */ = { + B41AB91179C21B9BF2A7605F38502816 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = C3FA10AB18D8BAEC05212296139E968F /* PBXContainerItemProxy */; + }; + B4F6684EA6A3C92D0CD50A7C68D66501 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNScreens; target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 896695D2CE40D31C0523BE77CAB2CC6E /* PBXContainerItemProxy */; - }; - B4E0DF73DDD57F5F3054B465ADC70299 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = A50D120154F195E74BD0909540B06599 /* PBXContainerItemProxy */; - }; - B52A4EC7B62C90A817D5FB9D15F15693 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 56AFCE1A95F2F677A2F5CBFECDFB27DC /* PBXContainerItemProxy */; + targetProxy = E6B36208046973F45B58DCACD4550C6D /* PBXContainerItemProxy */; }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27988,11 +28091,23 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */; }; - B6B8FFD800B4C6B06389E7DB84F6CD15 /* PBXTargetDependency */ = { + B812278517C497FFB238F5F7F32E27F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = FE8D7F2067FEA7E30C4ADC16B7473C07 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 62937B4F48D1B3DF569AF42C5F9088D7 /* PBXContainerItemProxy */; + }; + B81D6CB4EC3C904E5659212CCD035A2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = D997B5A0462BDB05FB628E0599477C72 /* PBXContainerItemProxy */; + }; + B8835D4180628CAF7E91400B3B3177A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = B61396F36AAADF0F250891B0A1EA083F /* PBXContainerItemProxy */; }; B8B73617617104E7103760F1AB0FDDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28000,11 +28115,11 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; - B8F98D7B27DE2F8C67D0784AEC4E182D /* PBXTargetDependency */ = { + B8C36443B1F6FB4AE640FB548F14F2E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = EC69DB45F398E0512EC6EF1AA4DA3AA6 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 6BCE5AF2977E77BA7F45F1518615194F /* PBXContainerItemProxy */; }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28012,23 +28127,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; + B96E7DBA82D25001AB650D750AAB6B7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = E2D829E31904FEAF8BA25D5A90BC2BDE /* PBXContainerItemProxy */; + }; B9C77F85E28CBAF37D7B16CD342E7477 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */; }; + BA07CF2D61DAF427DC0CA2B4C0884C94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 54C7A68A1655F93CF300983E589D38D0 /* PBXContainerItemProxy */; + }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BA88F551D1FE7577F1810CCBEC00C4B2 /* PBXTargetDependency */ = { + BB87EE46471B00FA11E991CF900BB530 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 07071E8D96A37112E412B707D75D65EB /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 1B7966D0BE90311D585C88DBD10AC968 /* PBXContainerItemProxy */; + }; + BD5FCA7D72FB28022163A0BED431AD8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 30C067FEB06401C556BCDE677CB4D59A /* PBXContainerItemProxy */; }; BD7B65C53246D71F9CAAFFEB4F1C1AEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28036,23 +28169,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */; }; - BDBB56CCEBCC2F47D74F540A1EA93EFC /* PBXTargetDependency */ = { + BDE247C57595CA941707D94FF59FA327 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 9E365BDCE4EEAE83B64DE57F1B6C60A5 /* PBXContainerItemProxy */; - }; - BDF13E06FCCEDE3B62C82DA1AB2AA5DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 259B03D9C81832747D4DFE56CEE2B38D /* PBXContainerItemProxy */; - }; - BE297077D07819FE19C0E354028D138C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = D06051A8308BE81DAC618E20E2ED9840 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = B8972ADAF3FD274BD38594CD56DD4C2F /* PBXContainerItemProxy */; }; BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28060,29 +28181,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; }; - BEC14FED104918272F6DCC9E625C7357 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 85EFEA6BDBE9E5DC46B9F93D7F252893 /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; - BF4867F5319E989A8E2063E4A57E87A5 /* PBXTargetDependency */ = { + BF657CA9700EAFE6B0AAF1EC61FEE90C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = EDB05FB5B607C45DFC483C6A699D6E4A /* PBXContainerItemProxy */; - }; - BFB42C0F59070B9D71FB062586FFBEF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 1320639FE6442E55C8119DF0278C05CF /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 6291088887E5F4CBCBF87414DB0B736D /* PBXContainerItemProxy */; }; BFCB948DC93AB4A428623B1CB29FE8D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28090,11 +28199,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAC5E63A0DB508761FB7D52FA119FB6F /* PBXContainerItemProxy */; }; - BFED82649AFFD0E517A0A0B3FAE7A73D /* PBXTargetDependency */ = { + C05B03CB2F2FBA708BC53CB177409D3F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = F64B29AAECD252EEE1A70957C254F6D9 /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = C7CB89C35D31A04737539DC2444F3BC8 /* PBXContainerItemProxy */; }; C06D1C4D3C363277A4373B36E075A947 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28102,17 +28211,29 @@ target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 895226C74DA67953140446D58789AB87 /* PBXContainerItemProxy */; }; - C06DD5FFA1C481AC5BCA4EE636E94B6F /* PBXTargetDependency */ = { + C10AE8980BFE285C582A6BB9BF5B2A21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 0D461CB135543E823EC956D8C17470EE /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 6470C478622A642820D917DE237D13E9 /* PBXContainerItemProxy */; }; - C18BEBA4FE2F2C9200B8D4FBBC2BF625 /* PBXTargetDependency */ = { + C1CFCBB30E8A4E37E4AAFB1A76FCFE45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = F57FE15999984F7A5EBB76513AF49D2D /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 9E9419B4B356101BC66673255E89AAEE /* PBXContainerItemProxy */; + }; + C208B208EB29573900AB8752CCDB50E9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 9E696E0618AA76B6D6AE836E8D3EED0C /* PBXContainerItemProxy */; + }; + C292B9C57FF2EB7AECBA5803C32756A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 60D2FB323C69C021CEDC07C8AB73C97A /* PBXContainerItemProxy */; }; C2AC30595C831D2B12F9E0732A34E6A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28126,23 +28247,23 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = F6FBF19908B8BD5F401871F2E3C3DD7A /* PBXContainerItemProxy */; }; - C3666BB76CECCAB56F535FE16FAF2726 /* PBXTargetDependency */ = { + C3F2CA6497322BDA01A130619461941E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 1E8BE5C0EE13343E554C98A9DE2B77BB /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 2C9BD51072B3256C7990CF6A8B8B9A07 /* PBXContainerItemProxy */; }; - C44F686F8FD74F7E2C4B8B05BFB144F3 /* PBXTargetDependency */ = { + C47E91833F953C81484CA5939A116D46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = F94290AF1B89907E17CFA284BD59DC01 /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 7A7C3CCADB41B0B5AE44B4BD0662A2B5 /* PBXContainerItemProxy */; }; - C58A08057D7D8D3CDE23814F3073C2DD /* PBXTargetDependency */ = { + C4DB3652EEDB7CB2E66103EA34B636A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 480C3E2B8E325FB7CF38647B934ABCCA /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = D539F68A72984D3A7D46CF619E7D2483 /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28150,11 +28271,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C6F2A36EA846058270495988E0653ABA /* PBXTargetDependency */ = { + C618E9AA6DA0B051EF26EC35EE035C01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = EF58878C5F4C3DD97233056F9EFEF36F /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 460BBB26393D24C1BE8194398CB97299 /* PBXContainerItemProxy */; }; C703CF0D0E02E9A86C01260A8FD221D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28162,11 +28283,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 68768374A1E75E492CE01513CA6C20AF /* PBXContainerItemProxy */; }; - C791F95470698EDA6D210C354E5684D5 /* PBXTargetDependency */ = { + C7933C15040997A63E08D9E73D90B5F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 9529497E5982C436E2477E49D34A4627 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 82D6B1F06E05F5B9A8EAE729D1D5F1DC /* PBXContainerItemProxy */; }; C7D76D218015D375E16E46FB5BC47558 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28180,35 +28301,17 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - C85C7F93CCB45A2C4D832716A4D362F2 /* PBXTargetDependency */ = { + CAD024419B50495C9419F54735E54894 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 456D53F1BE63C08BA38F417846A594AA /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 5A6BA097196337DBD7E5078F01804D6E /* PBXContainerItemProxy */; }; - C8AF676A7E6240C7223619438BF2DC4E /* PBXTargetDependency */ = { + CB5286E5D45335CDA43F9E163854A63C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 7DFABC879B2A1E5ACD5DDE2B3FC69AEE /* PBXContainerItemProxy */; - }; - CA63B22FA34FAAD96A43A510D727DFC2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 9EB4AACA45ECF10B6356D9081A6EF65A /* PBXContainerItemProxy */; - }; - CAD5CB0918BBA97EFDF2928B80979DD5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = C1594AA4E2782BB7B1D2C7CEAFC35B35 /* PBXContainerItemProxy */; - }; - CB1D14C99C54F0F4BC9DAB00DD32F179 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 08D7FF5643463BA67762CF3A3067AF84 /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 0D8E6B479003FA5233845F90101E52CD /* PBXContainerItemProxy */; }; CB97061AE5C24A9D7F6D01F21E27B66B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28216,29 +28319,23 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */; }; - CC4D369BBFEBA05993B02E9BC43AE910 /* PBXTargetDependency */ = { + CBC6D33FF68ED45DA279CDF13D2F6E86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 331CE2755FC4288E213CD7D2D41F0169 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 800932E87B7C36881C3AD4B4D212639E /* PBXContainerItemProxy */; }; - CCA4890CE12B1CFAEEBCF5CC4DFAA8B1 /* PBXTargetDependency */ = { + CC26777679C8245679FB1967790CE3EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 142BDC3F5CCB85399094BA956366CA9B /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 665EBDBCB745605BA5D2BFA2B5DCA5C1 /* PBXContainerItemProxy */; }; - CCCA898F165233C3A4D51C51AB47D09A /* PBXTargetDependency */ = { + CE1F3B5380174467A4FDB82BAE5F94F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 44D6D6620D9C6C0CBD645A8165C389ED /* PBXContainerItemProxy */; - }; - CD38B59D9118B300C76922045EAAD4F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 4A548C505130731FAA5C1059600E717A /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 2AA593C97AE98C33FF81D0F83CF47DFD /* PBXContainerItemProxy */; }; CE811BA8598231C29656D85CC4033048 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28252,17 +28349,17 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = DA6E367832BBDB743B832C859EFC4513 /* PBXContainerItemProxy */; }; - CEBC8F8446DDE18B4F6F438000E2F1AA /* PBXTargetDependency */ = { + CECB89DE87D17084981839B2869A515B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = AC21A8DF510D464BD37F5969BD045F84 /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = E3AB06117E18103D2672CC63EEA08C5A /* PBXContainerItemProxy */; }; - D0284195CA870BB9FBE64968B3F333FE /* PBXTargetDependency */ = { + CF708999D0E2708C3F16EB6E67EECA79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = C4FBB9343E558AE25FA66B29350C88E8 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 5F937F4A75E914913CC5896822B01E28 /* PBXContainerItemProxy */; }; D05604972B2B426A3FED1BAC2ABE3BF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28270,11 +28367,23 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */; }; - D2122FE317D56D46FC662EF91F8052AD /* PBXTargetDependency */ = { + D07E310F392F4952F184EC5497E91B21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 4A9356944146CE0ABC945CF168E183BC /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 004FA2E654FEBF63CCD05540DA336B45 /* PBXContainerItemProxy */; + }; + D1F4B2387063A574E9A2DA0387A82470 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 1876CF7039FCB2B7162F5AB5EF5FF651 /* PBXContainerItemProxy */; + }; + D2221A1761DE58FCB64A747DD26BCDFC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = B2E9D38A62719B6E1DC2297923A2AE42 /* PBXContainerItemProxy */; }; D2285B5805A417D68129D0A7C6A51AE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28282,71 +28391,59 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = A71AF0599E370DE67697EB341A4717CC /* PBXContainerItemProxy */; }; + D253A96E6B0CF1E8D871D257ACC210E1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = D4DFDCBC1CF6917D194B9925D365B65E /* PBXContainerItemProxy */; + }; D2A6BF2C4F4729E37CC9EA2B2206DECC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */; }; - D2D57C34487708F2005B5A8273B6D171 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 0850B22DAB2A7F19A652A1DA99CF03A3 /* PBXContainerItemProxy */; - }; D363B6CB8ECD71EA16419BCB97ACD6E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */; }; - D3BBCC2311E09D416CCB01459B25D972 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 8F6A54ED607977229559BA0D826E4545 /* PBXContainerItemProxy */; - }; D3CBDCCCE938AD4EA6E0BDB5900BE17C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3B6D37192A39FD2BDCD1EC2D0E739FED /* PBXContainerItemProxy */; }; - D3D416B5502E332E3D8F0B6212EDE079 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = D1EEAA956342C8A1DAA5CF0BC96545A0 /* PBXContainerItemProxy */; - }; - D478CB578A3D87A507844FE1CA5AE8F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 0DC6FE7823BC65AAAE5B92BBDE732F78 /* PBXContainerItemProxy */; - }; D499516EE5DA748087C7EF2C94543BA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */; }; - D52464BBE83EEA1FAFBD7F5E795F61A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = A7C355209DFEA937BBF575E9FC1AAAD3 /* PBXContainerItemProxy */; - }; D534792836CC031487EB62253344EA5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */; }; - D57B58145FACA72D71EA3DCBE39C2C0A /* PBXTargetDependency */ = { + D5413890DDD4A3C37BC579E70D304779 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 6B3CF0604B44A216AA4A6C4342DB4C58 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 3065BB7EC5AA13F1901EE05531BCFA2C /* PBXContainerItemProxy */; + }; + D5A130B8E26B370AE406BB535BBBD4D5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = EB59584C82AA84B7D794E2BE4D515203 /* PBXContainerItemProxy */; + }; + D5D01D82D65B6B978E70E653D7E9FFF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 2AAEECB156AACBE3F463997666BCF578 /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28354,17 +28451,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D64C498503E623699E1BCFCDC2FA2BE9 /* PBXTargetDependency */ = { + D60836460D5593FA19A61C0F5FF6275D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 53E0080002307CD8FE79C05C09F25387 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = F977DF79B6E5ECB23AEF8F7C9A1F0E74 /* PBXContainerItemProxy */; }; - D6916DC3B5540FC2471061AAAAA1C9D2 /* PBXTargetDependency */ = { + D6339EA9F1D48390CBE2288F162AF418 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 2E789B26A413C95D97C4FFC6A2818EE5 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 78EF6A877B32D8DD5EFF9DD471F68F77 /* PBXContainerItemProxy */; }; D6B7B8C07DEE0669AA70FB17B58D483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28390,17 +28487,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */; }; - D93A0C50579802887B0FF551ECBEDD8B /* PBXTargetDependency */ = { + D9B5D7FD43FB3BEED713817988F39395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 18411CAB258C5FA1EE54867B9424FF5C /* PBXContainerItemProxy */; - }; - DB25469084FCFFB2424907B269DF8AFA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = C3480390911A548D1FCC36C91F586D7D /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = B824D77829D3143A291C7A8B0FF4AD97 /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28414,12 +28505,30 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */; }; + DB91C5B8FA4E48F817349BE83F35D2ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 910EA2213B18CCB6F2700A1F9FFA83B5 /* PBXContainerItemProxy */; + }; + DBD921F0312A84A8BA2E999F2B2B19F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = C2E15D1D4A770A1600799D971A2F80B2 /* PBXContainerItemProxy */; + }; DBEE2316CA1918C8CF1B007AAF73F7D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5D7263A8C3B911982BA2A84F9C447C16 /* PBXContainerItemProxy */; }; + DC3BB4C55695578A9006E45B7C2C5157 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 6C1B51F74344439554EE8AA63BD0ACA0 /* PBXContainerItemProxy */; + }; DC611EE2F8BCC18405A57ED3637CC880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; @@ -28438,23 +28547,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */; }; - DD15B39E8E8ADCB1DC315A7489EAE0B9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 3D36055502A5DFB1E2592126783C361C /* PBXContainerItemProxy */; - }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; - DD42B72B92C80F74FA452D33847D1769 /* PBXTargetDependency */ = { + DD79E04E840C1971F5ADA3F1CBE8A565 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 73318908490A2FA3B4610FD2AE23E6E1 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = CDDDEA47CED9C55D5F7FBA3AC4F4D309 /* PBXContainerItemProxy */; }; DDAE5DE7E02A6212BDC43A3CA35A61F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28462,41 +28565,35 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 105C14933DE14E3D661907FB45821DCA /* PBXContainerItemProxy */; }; - DE44BF35CC6AF1AC7BD1DFDBA3132749 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = C3A8A8296B52B82692EA1AFD77DC3F40 /* PBXContainerItemProxy */; - }; - DE707EC15663AAC603FF6DA126557525 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 91516BC6A5D693578AED6B9A584767F7 /* PBXContainerItemProxy */; - }; DE7D32A14CF77975D6D807C453648136 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */; }; + DF06D725A2AB4B2E78D6299ADF0AD37C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = BCD59447AA44DF60D40010358189EF8C /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - E03B7EB915B2E130FF092E8288FF58AD /* PBXTargetDependency */ = { + DF6CDE38B394A7446AA43CAE1EFF7C5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 0F0B84B50F04B5D01BA2429CD32EDC64 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 8C595B2D95DDAAF440F896B3A0D33727 /* PBXContainerItemProxy */; }; - E0E57DE0A2BF4BD1F6497E9883A4FEFC /* PBXTargetDependency */ = { + E03DA067FBD031AFE61AFFB2643ABC2A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 7974D6EA19AA92AB8C1C17375629D3B7 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 950F5960DF8B777DB1E2ADDF1B28C197 /* PBXContainerItemProxy */; }; E0EE46A92FA4B2520F4C0979EC9369DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28504,29 +28601,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */; }; + E139C84E86CCE14A4937645D437137F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 808FC4055BB5086D79DD31542375C1BF /* PBXContainerItemProxy */; + }; + E22B799ABABE83B494DE96A19BDC5C6B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 21D092A006540CC828B9B4E97A92C229 /* PBXContainerItemProxy */; + }; E23CCC73B951B35C0FB4CA8FF050583A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = BD5F7970056AEC9A9A48216153498EF7 /* PBXContainerItemProxy */; }; - E2487767C8348A843380E5124CA6FF62 /* PBXTargetDependency */ = { + E2E4BEFBDF6918DCD567CBF983902CBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = AE5C76D59AFBE23571CFB6160950A829 /* PBXContainerItemProxy */; - }; - E329759221BCFA1954FF37FC8ABA3A65 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 6DC776D059E274C8559F16C018CD34AF /* PBXContainerItemProxy */; - }; - E3478D878643E73EB801BCC6510D660E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 00405F449BBC8C48FE8EE7C24993A0BA /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 96C40D085BFA33F463C7F1D894077319 /* PBXContainerItemProxy */; }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28534,17 +28631,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */; }; - E37F3FB1794BE92693D4BC9E16A934BF /* PBXTargetDependency */ = { + E3DD98BCFA06EDE0845462DE507AC5A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = C33C30A58FEC53F2C9537F4E9051C133 /* PBXContainerItemProxy */; - }; - E39607AC32FCBDF85E0E3FCD4B22B6AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 5AC1ECB3F280E54BD46CADE3D59B28A6 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 5D759D2F645416D7485E00355A920316 /* PBXContainerItemProxy */; }; E463467A75682C4E7C346610654E375B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28552,17 +28643,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; }; - E52695F114AC68E374D1C92EDFA8BB87 /* PBXTargetDependency */ = { + E5B201E797ED4635B0E528F4D4F791A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = AD6E96BC7DE04F17C49B414CE83CD755 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 3740443C37EFA7763F991A0FA35AADC2 /* PBXContainerItemProxy */; }; - E610831C8A024076BA2B080960078217 /* PBXTargetDependency */ = { + E5C22A908598D746A17A001C3471E8F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 7A046525617C6F1B3055DE9860A8E565 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = B047DC9DF8C887CE40051981E9BB0C73 /* PBXContainerItemProxy */; + }; + E625B1D8784FAD7512204396BD7A9487 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 3D4B00CC40A207DFDC2ED957C782D927 /* PBXContainerItemProxy */; + }; + E682F77671D7A8E7DB9ED58DD61AA39A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 45F2D7DD647A233F76F6438AF8AF9EC5 /* PBXContainerItemProxy */; + }; + E7194B5D81FF9052632912599626F87C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = C0F2926A4D41DFE23BBE2BEEB453D07A /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28570,35 +28679,35 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */; }; + E8546562AA10716B3E7D57E7976FBDB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 38D4B2857E04B56A8B7E45E22D2F7DFA /* PBXContainerItemProxy */; + }; E8740A2B879F18CF356E4FD2B9498953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TOCropViewController-TOCropViewControllerBundle"; target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; targetProxy = 004E28481B999EBB8713F583C49F4661 /* PBXContainerItemProxy */; }; - EA0E44692815487597E682B423425229 /* PBXTargetDependency */ = { + E8758EFDABFBE5EFA687A428A8A17EA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 0790C0032552380DA563AB255F710E8C /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = A5CCA68CC16FD07FA28BF00B5FE92E47 /* PBXContainerItemProxy */; }; - EAEC2320BA63E3772CACB41334788A45 /* PBXTargetDependency */ = { + E9010F118B26E5E7827D0B0EA5AC1C11 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 5E96EEEF0BF6ADF601DC084D0F863719 /* PBXContainerItemProxy */; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 108DC8621AD9F628AAD847B4A59603BB /* PBXContainerItemProxy */; }; - EB19507FB9559F8AACC961C826971ECC /* PBXTargetDependency */ = { + EB8A2E1ED4CEBB1C177FB18F0D3EFCD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 2886F46045045F4E6897AF88194CD86E /* PBXContainerItemProxy */; - }; - EB24CB510928AC598C0F8961220BFDF9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = CB4D6B1EA583F1636AE756E69EDB85A6 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 65FE65EBD75575AB45FFFD5E444F15E3 /* PBXContainerItemProxy */; }; EB9FA6F585C535B87FED8F313CC4B3DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28606,18 +28715,18 @@ target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; - EC27074E6C593318E8884F05D5855640 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = FCE1B5A90A8DCA89982035AC7F7A956D /* PBXContainerItemProxy */; - }; EC6304241511E3A3FDE95C7A5D38EDBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 218BD48A74E10DEDDDAF4D13C755DC86 /* PBXContainerItemProxy */; }; + ECA1E0C5AB7449FC7A91F8879141716B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 5B37EA4226FE52627F04050F38E6A0EC /* PBXContainerItemProxy */; + }; ECAA20D6DC41535E1D8F088C62E67F99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; @@ -28630,29 +28739,41 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */; }; + ED609D7EAA5E850B8BEE478BB9821A41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 13E95A94E455EFCC0490394B4FD99849 /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; - EDFA5EE36F69ED569FEF40A0C38BC1B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 6215835BFF978FA75F6804D7F7397E94 /* PBXContainerItemProxy */; - }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EEC2655B729C25811CCF18F647E26B25 /* PBXTargetDependency */ = { + EF7DB579FAB0CFE7BF9C2E9F5A0FA8E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = DF3C5959B844422417F1F3A2786758B4 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 5BE9BC41E57D92505C2594E1632E9A33 /* PBXContainerItemProxy */; + }; + EF9AFBBB3ECED635B417D66519BAB18A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 54A2E4D4849D25BB6D0130EE0BE4871C /* PBXContainerItemProxy */; + }; + EFD20EDF9CDBD0204866BD5FD9D71C2A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = A2E2629CBCFEC2C2C29C237120574870 /* PBXContainerItemProxy */; }; F00EFFD8AB7F4034C272369D638B0070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28666,35 +28787,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */; }; - F154F6A9406BD55E284846083B2E1969 /* PBXTargetDependency */ = { + F21C947178010BAC1CD60961618B63E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 76FC5C565E9111B36897198EF3886C95 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 35CAD206EAF7D407F7096C027CFC8C19 /* PBXContainerItemProxy */; }; - F304224A2F0CBF4FA496682A012344B0 /* PBXTargetDependency */ = { + F246A85595464675FB93656D21E98076 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 64BA655A78074818D28DF621C5E394D0 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 9D62B5E989A1ED0CB0D8B6148516A694 /* PBXContainerItemProxy */; }; - F34380C2F1214D5EE62B2049DD0DEC17 /* PBXTargetDependency */ = { + F4A5BF2101266EFAE47F823C96F188B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 22FECE33C67B90F072F0CAF239C0FE58 /* PBXContainerItemProxy */; - }; - F36DF7175C2BA2B33C7F01BD94814194 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = F9F2682DA460F86138702EC4E5A98058 /* PBXContainerItemProxy */; - }; - F48CBEB27E874A71287CA82A3450E344 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 1C3CC280A6FE8DDD35A1D0292F880BBA /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 1F18FB0E0D0D91B591AD6CC00A9DA5C1 /* PBXContainerItemProxy */; }; F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28702,12 +28811,6 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */; }; - F529BE1C196C1AFE9B0C16D21DCC5F34 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = FCB876AC17459A868B7D3B19BF786B4A /* PBXContainerItemProxy */; - }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -28720,6 +28823,12 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 5C468A63879B83D44F982682FB98470B /* PBXContainerItemProxy */; }; + F73E7D618F04812B4226DCF25884D15F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 765D3CD938C8DB04A622CDBE3D3088EA /* PBXContainerItemProxy */; + }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -28738,11 +28847,11 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 8A87B1215AE1D57577083FFA7A10794D /* PBXContainerItemProxy */; }; - F85677E2F14C8493B1D73A7998478435 /* PBXTargetDependency */ = { + F874BA643B8F8CA9391AF3C4DA14B4BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = CD933C2141D8FA8EF07248ADAC512AE8 /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = A0E5C722A4A4DA8D4C98FEA0F8BEBD38 /* PBXContainerItemProxy */; }; F8C1CD1626D72CA6B6AA13427FA2AD1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28750,11 +28859,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */; }; - F920C403AE00094F71BBB41009674C30 /* PBXTargetDependency */ = { + F98D53E84673952739169D82B178708B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 1AB3A4D499B1DC7CFB66431A3F0F44D8 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 8AD8A612931AB5375BCA927B1355BAE6 /* PBXContainerItemProxy */; }; F9BED6237125E21323372F82EBB8C492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28762,29 +28871,59 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 6AE2918D3E48649BDFDD0650FD43651D /* PBXContainerItemProxy */; }; + F9D06C3B19322338DEEB56415CD664B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 1B388C4137AB2141375A8FD417E09E5C /* PBXContainerItemProxy */; + }; + F9F71D7F0BB699D15444F1B9E7BFC89A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 4C3C6FCDA2BC474E37DAF02BA320ECE6 /* PBXContainerItemProxy */; + }; F9FA46C0233788390C83BA97F8A3C218 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B385A03A23F4B1BBC725B05DDC7A641F /* PBXContainerItemProxy */; }; - FBE8EB537C32E37AEC0B3616641C3F06 /* PBXTargetDependency */ = { + FA8F132CE582D5BD004ADA9B206A4D09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 22127EDE6C8FE04320A4469451FDED7E /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = B7F0780E57F9BDE184ECB53C994E0404 /* PBXContainerItemProxy */; }; - FE5256BBB6445FD33BAD740FE640680E /* PBXTargetDependency */ = { + FB7BA34E4677479F4775F298820A6BE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = FB266484A3ABACAE4B155B5AF66113FD /* PBXContainerItemProxy */; + }; + FBAED5786B7626E957BCFF0AB0087295 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = AB6DAB6359E4ACD364B27F682A933853 /* PBXContainerItemProxy */; + }; + FC514DFA49F6184C47ADC7904B6AD14B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 9315906521BCE1C6FECB50C7B64C8F5F /* PBXContainerItemProxy */; + }; + FD5ADEDBDDA770D71315E8F59A34EB35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCameraInterface; target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = F93EA75E586E7F5B41BA9DDF25E90F8D /* PBXContainerItemProxy */; + targetProxy = 23FBC0E71514F0468E02B715CD71A813 /* PBXContainerItemProxy */; }; - FE6277A10B2D824C963FDB18D6D2FD2A /* PBXTargetDependency */ = { + FDD789A6FE9205A4C9B58026716608D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 18B2A765FD35151852AAA30D15C02C8A /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = B6639071EF86B47807EC3AF44867D4B8 /* PBXContainerItemProxy */; }; FF13C50DDCC10521862C497DD83A27F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28792,12 +28931,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 4D17D91F96868CAEDDB41E1118E2D9FF /* PBXContainerItemProxy */; }; - FF77443BF13FBEF1A44F112F9510579E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 4545B116C13F1156277EE2BCA2199900 /* PBXContainerItemProxy */; - }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -28829,7 +28962,7 @@ }; 003F3938252205C778AEAE6B3CA5EF19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1775EE285AE3CEFA26E36EB384C87B73 /* EXLocalAuthentication.release.xcconfig */; + baseConfigurationReference = 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28857,7 +28990,7 @@ }; 006AFBC6FCCB17BEFAB9433D173BAF0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EB4CB7EDF1759CA3B2F2D09DE8993A9 /* RCTTypeSafety.debug.xcconfig */; + baseConfigurationReference = A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28912,7 +29045,7 @@ }; 020DCEB2FA2C29179A3E14493A6603A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4CC219A7CA19102C8A93B83DC75B8F42 /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28940,7 +29073,7 @@ }; 02E2C7353DFFBC0058944D4918E49DB2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 815C3B6343CAD30CF200A1E5E6492B88 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -28958,7 +29091,7 @@ }; 02EFD6A33F09391B5FC2D1AE34F42439 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02269C01E4D43187425A44BF35FC177F /* UMCameraInterface.debug.xcconfig */; + baseConfigurationReference = 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28992,7 +29125,7 @@ }; 0666FD7E2F8158F6150585C0E2801B63 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F87400FE876A41F56C7ADD39BDB8D71 /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29019,7 +29152,7 @@ }; 069E4904583D4141FD62AB20BAB275DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9379E0C23040FFB843EFB36EA502582 /* rn-fetch-blob.release.xcconfig */; + baseConfigurationReference = FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29046,7 +29179,7 @@ }; 09A25B46F5EF831F12D8DC150A71DB64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA23D1F44EF400B38F749AA56500F322 /* React-RCTLinking.release.xcconfig */; + baseConfigurationReference = 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29072,35 +29205,9 @@ }; name = Release; }; - 0AD642E012D542B268FC67103853A565 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 0B61F83B3253E9F9CBE5716EB3040EFD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD6B817761B8E2E9EC23F01C5FD81DAA /* React-Core.release.xcconfig */; + baseConfigurationReference = CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29128,7 +29235,7 @@ }; 0C1F80D095D5EFAD22FA9D27FE38755E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF6CC1DFEB9DD42B901216B25DDD83D9 /* UMImageLoaderInterface.release.xcconfig */; + baseConfigurationReference = D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29145,7 +29252,7 @@ }; 0CF60BA930A13ED11DE8C9A3B6457EB3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D522027EEE96D9475D2CCC2688716D55 /* RNDateTimePicker.release.xcconfig */; + baseConfigurationReference = 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29198,7 +29305,7 @@ }; 0E0967984E9EEDAE2DB825D775411C33 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D577CDD5534647F89DCFAC24F55F227C /* RNDeviceInfo.release.xcconfig */; + baseConfigurationReference = A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29225,7 +29332,7 @@ }; 0FA67B408F5397D6614E29D5F6158B97 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AB7A1809EF13D7C53A95038897BF263E /* RNConfigReader.release.xcconfig */; + baseConfigurationReference = CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29252,7 +29359,7 @@ }; 11F71D8FD0DAF9E2C3E225E965C91F2A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7B1B26952C9E6BFC7F36231BE4628E5 /* react-native-document-picker.debug.xcconfig */; + baseConfigurationReference = 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29278,7 +29385,7 @@ }; 1338CC95376DE111E183F0E21553E556 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E774F6D5DAABF201ADB039A38F88A174 /* react-native-notifications.debug.xcconfig */; + baseConfigurationReference = 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29304,7 +29411,7 @@ }; 135F3D49C974222F544098332333370B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 10A1D0AA2EF687A78F997618008131B8 /* React-RCTText.debug.xcconfig */; + baseConfigurationReference = 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29359,7 +29466,7 @@ }; 1684FEB26BF37EF9DC4A3DD1B469A4FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8B24A35CFC63AED4D4D4A62223E308EB /* React-jsi.release.xcconfig */; + baseConfigurationReference = C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29428,7 +29535,7 @@ }; 17C4C81C4E7EF12C651709C9B246C240 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07746EB1C27E0A1CC7890FD9A143614B /* RNFastImage.release.xcconfig */; + baseConfigurationReference = 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29455,7 +29562,7 @@ }; 1A944E73ACCD8D4CFC2AEC2CCD644B41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1D7A606321EFE926F2FC0A39B4D0151 /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29482,7 +29589,7 @@ }; 1AF7199724635CFC2C0BC414F1AAF724 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5D7EF7CCED8E1EAD38CD82C1BDBD802 /* UMCameraInterface.release.xcconfig */; + baseConfigurationReference = 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29499,7 +29606,7 @@ }; 1CE86106E25A058EB5B61FA7D0E72060 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 352990121E0A66CD03B104026B87B37E /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29551,7 +29658,7 @@ }; 1E85F0B070B37F62925BC426E2A1909F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA6DC6C6B2271D5FDABD7E86FD18C638 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29577,7 +29684,7 @@ }; 1FD68DC9973983FD86FE073176C336A1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD6B817761B8E2E9EC23F01C5FD81DAA /* React-Core.release.xcconfig */; + baseConfigurationReference = CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -29595,7 +29702,7 @@ }; 1FD78FCF0C533D343B37BC826AFC6B8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C51E20BA37A4D8FF9A4505E0314C131A /* react-native-webview.debug.xcconfig */; + baseConfigurationReference = 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29647,7 +29754,7 @@ }; 20F88E1CDBA94ACB3EA68F2B9253C877 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DADF14C41C76F14DE805078FDF398CA6 /* UMConstantsInterface.release.xcconfig */; + baseConfigurationReference = D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29689,7 +29796,7 @@ }; 21AA9A352B92EA57A557A37FFCA60D75 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 37C301A9041FEC2E53E2371F42E4484A /* rn-extensions-share.debug.xcconfig */; + baseConfigurationReference = 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29715,7 +29822,7 @@ }; 21D2953E38C8DD2001B80461521AABE6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 847A8608F349EE5ECE1951620E181DF4 /* React-jsiexecutor.release.xcconfig */; + baseConfigurationReference = 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29743,7 +29850,7 @@ }; 2236A0EBC7F306402E0BB7A440642910 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90D0B942150CB45CD1A912B5904B7447 /* UMImageLoaderInterface.debug.xcconfig */; + baseConfigurationReference = DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29759,7 +29866,7 @@ }; 23026F0D93110B28E689E6BB7695F956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 922A29D2636D81AF4F0042A215EC5BE8 /* UMSensorsInterface.release.xcconfig */; + baseConfigurationReference = 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29776,7 +29883,7 @@ }; 233E91B6584859484A37FEFD8886DF4E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB29BA4093B458B195FAD1207C49D3AB /* ReactNativeART.release.xcconfig */; + baseConfigurationReference = BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29803,7 +29910,7 @@ }; 23712E9BDBE1344689237B616B99AEA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F2DB7F8457A7488E3B2F102D842E99D /* RNBootSplash.debug.xcconfig */; + baseConfigurationReference = 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29855,7 +29962,7 @@ }; 241391C4F4418DE3669DAC6DB3894E2B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71C789B7D4E90A945EA950B6CBFDFF80 /* UMConstantsInterface.debug.xcconfig */; + baseConfigurationReference = 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29871,7 +29978,7 @@ }; 246D2F57373941B41420A899E6697244 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F695819632C545F86FDF473A7C41FD05 /* UMSensorsInterface.debug.xcconfig */; + baseConfigurationReference = 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29887,7 +29994,7 @@ }; 24CE60708CE99D4EC1DE102DBB703225 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5748AC6F062D48CD3496F6655A162ABE /* EXConstants.release.xcconfig */; + baseConfigurationReference = 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30002,7 +30109,7 @@ }; 26703BF1804D33DA9A7CF9F81697AA4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 921FC6106D14A1CD680A9EB1105DEFCA /* react-native-orientation-locker.debug.xcconfig */; + baseConfigurationReference = 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30028,7 +30135,7 @@ }; 2673EC1B271FA46D7BFDE37D9A3B80D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E928DBD0757EBEF1AEA65286E458FF68 /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30110,7 +30217,7 @@ }; 27741A099B2410EAEA6C6F7E1559B4E9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D8F9D427DF74F5E3078ED50BD51C4406 /* UMFileSystemInterface.debug.xcconfig */; + baseConfigurationReference = 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30209,7 +30316,7 @@ }; 2C97BC281FD4710359FCA2624B946742 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 527C827169FB7528B82A4F64E94F6B6A /* react-native-cameraroll.release.xcconfig */; + baseConfigurationReference = 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30236,7 +30343,7 @@ }; 2D2F62753E5B1FC985ECFA9AB7834DDA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9BD6647C5614301E99E5512C1AABBCA7 /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30263,7 +30370,7 @@ }; 2F3665146914035B90902D1C625161FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 101A72E6061B8CD4083858C19A009CA8 /* UMFileSystemInterface.release.xcconfig */; + baseConfigurationReference = 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30280,7 +30387,7 @@ }; 2F931C003026BA8635FC030BC632F564 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7FC575ADEE4F53309D7254C630BE9F0 /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30307,7 +30414,7 @@ }; 3006B3D3A843978B5AF5ED354859C504 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06B222188AA91F8F7EE6F66157299539 /* ReactNativeKeyboardTrackingView.release.xcconfig */; + baseConfigurationReference = DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30334,7 +30441,7 @@ }; 30DA8B308BA1F5B848C4BD42552D4FDE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A167F190E4ABC5AC1491C59227F50A0D /* React-RCTImage.release.xcconfig */; + baseConfigurationReference = 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30362,7 +30469,7 @@ }; 3101FEBBD4620A99AE756B72F7A305B5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 150AEA159C65A7F59BB467DC287C2E8D /* FBLazyVector.release.xcconfig */; + baseConfigurationReference = 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30379,7 +30486,7 @@ }; 31D730693D9596C827D1EEA9CE15FD7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95D4EAA6E2D783E6BA3CA1F8DAD7F97B /* EXHaptics.debug.xcconfig */; + baseConfigurationReference = 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30406,7 +30513,7 @@ }; 3277364A21737CF8A089E2AE592D42D3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 939157872D4A8B0A7EE428C2143F8A95 /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30432,7 +30539,7 @@ }; 32BFC0EAF794341206060179B12E4900 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DE8FE96A401393DF663C1D0A0A3228D7 /* UMPermissionsInterface.release.xcconfig */; + baseConfigurationReference = 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30460,7 +30567,7 @@ }; 33525175C23E323B3991150A80EFFEAD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80869C8F5B2A254C1EAB92E57BE49922 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30487,7 +30594,7 @@ }; 34DA6C9EF1A02C2C5B93E897CA6FB8E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2FF6A539084A7D2DAF113E7B09679D94 /* ReactCommon.release.xcconfig */; + baseConfigurationReference = 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30543,7 +30650,7 @@ }; 380B06BE681DEE8230A0D6291E78203D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA23739DC3A896C5CE4852C02E9B89B1 /* React-RCTNetwork.release.xcconfig */; + baseConfigurationReference = 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30571,7 +30678,7 @@ }; 3814993E1C71399C48968CECDF10D526 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0F5C8160F53CF533D7095F831F94607 /* rn-extensions-share.release.xcconfig */; + baseConfigurationReference = 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30650,7 +30757,7 @@ }; 3D8A5952584E8DB30356F62F2948D77A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F9B0246F602E0AB9F6C3B2246998377 /* UMTaskManagerInterface.debug.xcconfig */; + baseConfigurationReference = 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30666,7 +30773,7 @@ }; 3E0BE3BAAB9E308179BC6858FC46E8C7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC689FFF612BD323BD03E7EFF1DB14C3 /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30708,7 +30815,7 @@ }; 3F60D0E08324E58D8375C87E0FEBD7A1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7393B1DB75D338321C6CEC0FA5A684A9 /* Yoga.debug.xcconfig */; + baseConfigurationReference = 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30764,7 +30871,7 @@ }; 41300370952473416EB0DC08BCF2CAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5A83C25E5DDAD0AD3890E24684C6E3A /* UMFaceDetectorInterface.debug.xcconfig */; + baseConfigurationReference = 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30780,7 +30887,7 @@ }; 4185DFC98EFDEBE86EA22D97C01CBE9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A4395A9D680EAD963EFEC1C87247E4AB /* EXWebBrowser.release.xcconfig */; + baseConfigurationReference = 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30808,7 +30915,7 @@ }; 4353EEC063D59919914E9D9EE2A61D11 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 78AF35345782DF4B651DEB0A6F2267B9 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30861,7 +30968,7 @@ }; 43C5DDFC592C3DFBA2EE7F06B286186E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DDEB3ACA0E88865D7239BE786A826510 /* RNRootView.release.xcconfig */; + baseConfigurationReference = FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30888,7 +30995,7 @@ }; 43C87197652B80848612B41A36422A7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 126AFC7C4AA04F845CF4124033F10B95 /* KeyCommands.debug.xcconfig */; + baseConfigurationReference = 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30914,7 +31021,7 @@ }; 4432B925223A4ED97B63826291EAC2F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 81247E4DBC0FA3308C4EE16CBB74ECBF /* React.release.xcconfig */; + baseConfigurationReference = D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30984,7 +31091,7 @@ }; 4B4057F32648D959EDDBC2B05CC50E5F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A0A1F76A0EAE8C915823DABA35B9568F /* react-native-background-timer.release.xcconfig */; + baseConfigurationReference = C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31028,7 +31135,7 @@ }; 4E071B76BCC690294493D5F0473770E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52921158AA1E041CFD10AD48858BC565 /* FBReactNativeSpec.release.xcconfig */; + baseConfigurationReference = 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31056,7 +31163,7 @@ }; 4EA1C88CB560BD57129EA38F08DA984C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FDF7125AF570E188DD481BA07CCAEC93 /* React-RCTActionSheet.debug.xcconfig */; + baseConfigurationReference = ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31072,7 +31179,7 @@ }; 5184258ADF1B3BE8D5537D4065FE4121 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7130D3DD21E3A2FC8FBD3E7F72549B6C /* React-jsi.debug.xcconfig */; + baseConfigurationReference = 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31099,7 +31206,7 @@ }; 524071AA2798EB6CD9BA190999377D9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B79F35BFC568B66EE5CBB1E49720ED68 /* RNLocalize.debug.xcconfig */; + baseConfigurationReference = 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31125,7 +31232,7 @@ }; 52E63755187A39512D1FFDDCC626FAF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0053B9DA4293895CFC35FD4CF93FB1C8 /* react-native-slider.release.xcconfig */; + baseConfigurationReference = 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31179,7 +31286,7 @@ }; 5563375E4192870FE385ECE1DC859756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55BF2C412969FA684CFFF0C788DBF0FE /* react-native-notifications.release.xcconfig */; + baseConfigurationReference = 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31206,7 +31313,7 @@ }; 566601CE5FE23D9BE5A147AF28AB91C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5081A7221932C471A01B77F6C57B874 /* EXConstants.debug.xcconfig */; + baseConfigurationReference = A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31233,7 +31340,7 @@ }; 575C40AA703D6A263895C74CEF82C70B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D724273977B3E35938C1E087909362BC /* KeyCommands.release.xcconfig */; + baseConfigurationReference = 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31287,7 +31394,7 @@ }; 5928054F11072572E2EBC5A6EACE604F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27A3F275CACB944025971F87E5D157A7 /* EXLocalAuthentication.debug.xcconfig */; + baseConfigurationReference = A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31341,7 +31448,7 @@ }; 5C4EA8B557E49908AC7F24F172238756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 954E2BC9DFC6830F2330A56B71539E62 /* react-native-orientation-locker.release.xcconfig */; + baseConfigurationReference = 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31368,7 +31475,7 @@ }; 5D0F792C27831D94F2F52D29B7566FE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FBE650E3B6BFCB13A238251ECA1A591D /* Yoga.release.xcconfig */; + baseConfigurationReference = 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31397,7 +31504,7 @@ }; 5D9F27AE922C2275B80490984526D63D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A2AD76B82D22E12FAF2955FC21A38F3 /* react-native-appearance.debug.xcconfig */; + baseConfigurationReference = 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31423,7 +31530,7 @@ }; 5DB62EE09E32C3C5AFB53E5CF490836B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D7CD98AEEA1187B50BDCB55AF5A1795 /* EXAV.release.xcconfig */; + baseConfigurationReference = 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31451,7 +31558,7 @@ }; 5E5EDD5D3A0ABDC9540A630105470032 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9AD189686C14007ABBC4D2C9A5F6B31A /* EXImageLoader.release.xcconfig */; + baseConfigurationReference = C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31477,34 +31584,7 @@ }; name = Release; }; - 5F100DCA9E9A50832C45C7C017BA3ECC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 94B1A05E1C51C61F15A58D587C78F9E4 /* EXKeepAwake.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXKeepAwake; - PRODUCT_NAME = EXKeepAwake; - 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; - }; - 5FED7CF840732EF71766A19BF5517228 /* Debug */ = { + 5E6812B518334F69B1D296F1E675DD49 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9F263719772A77F5C2E42FDE20EE9DEC /* Pods-RocketChatRN.debug.xcconfig */; buildSettings = { @@ -31529,6 +31609,33 @@ }; name = Debug; }; + 5F100DCA9E9A50832C45C7C017BA3ECC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXKeepAwake; + PRODUCT_NAME = EXKeepAwake; + 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; + }; 60CBC907AB6661DB3E64BF7258ABCB29 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = FE1989B7C7E3997F367520FB2C934818 /* FirebaseCrashlytics.release.xcconfig */; @@ -31557,7 +31664,7 @@ }; 61D3974125FDECF58BCFB02569AABAEF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56038ADDEA7D61887F3E38F732A0E15E /* EXHaptics.release.xcconfig */; + baseConfigurationReference = E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31601,7 +31708,7 @@ }; 63D73649BB61EEB35967D5B5CBE44056 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D38F97A810600D413DCBE98977D6ACC /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31628,7 +31735,7 @@ }; 642CC74DF28B75CB994A1C2E6A3F9880 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9AEF4114EA8A77EDC4DB38524A5C12CA /* UMReactNativeAdapter.debug.xcconfig */; + baseConfigurationReference = 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31655,7 +31762,7 @@ }; 6521E5255E85BBF827A6D6D6D56BFA02 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B67D7B50D4DA591A9D6C24E43E8FDF8 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31697,7 +31804,7 @@ }; 6A6A8E9DE92AB115199CB4C2F83D58BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC52BEC8C3F6C663EA96D99D362F8508 /* EXAppleAuthentication.debug.xcconfig */; + baseConfigurationReference = 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31724,7 +31831,7 @@ }; 6D20B5094034446440C0039183AFCC2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 011001D7E4CD4B4C9ECDCBF6C0D5EBCE /* rn-fetch-blob.debug.xcconfig */; + baseConfigurationReference = 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31776,7 +31883,7 @@ }; 734396EEB48FFFF22B92D8349091A261 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C46E5CCD8F3CE4B3511D8B9712E51671 /* BugsnagReactNative.release.xcconfig */; + baseConfigurationReference = E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31830,7 +31937,7 @@ }; 77AC19305A0EFB3BDFAFC47C1351729E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A1631C0D42B20565DB4387199E33CC8 /* react-native-slider.debug.xcconfig */; + baseConfigurationReference = 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31854,6 +31961,32 @@ }; name = Debug; }; + 793D89067BFBD9A396CC574B1C3D02E6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 7A2AE55D55168A1D1CB5B425EA2F2D8B /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = FD236DFE6817BBC71CF2436E1716C085 /* glog.debug.xcconfig */; @@ -31883,7 +32016,7 @@ }; 7AF14BFA566044589CBBE7905ACE8243 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E9FDC76D8C039F853E591D42C6D0061 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -31999,7 +32132,7 @@ }; 8324AD96D623285BCCE413528470AE46 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 044A2F2412154286EE12C1AC67F738B5 /* RNScreens.debug.xcconfig */; + baseConfigurationReference = 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32025,7 +32158,7 @@ }; 8334456F9E9FDD79920C1AA56FAB4EA3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABCA33AE0BD9E4632697DE558DA823ED /* RNRootView.debug.xcconfig */; + baseConfigurationReference = 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32051,7 +32184,7 @@ }; 8515DA449755D000C9EDB262016308FF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D44CB57F148AA24505ACD85282692CD6 /* EXKeepAwake.release.xcconfig */; + baseConfigurationReference = 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32079,7 +32212,7 @@ }; 85E70507157E2E8FEE1BCB6FAEDC87E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EC3EAC14693F848200CBE8A3D56E8BB /* react-native-webview.release.xcconfig */; + baseConfigurationReference = 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32106,7 +32239,7 @@ }; 870D6A60CAE4FAA1465C9E908F604BEC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3915613FC7F793FC43A12A1AFB1A57D /* react-native-mmkv-storage.release.xcconfig */; + baseConfigurationReference = 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32133,7 +32266,7 @@ }; 87DC6830A5078830DBFF761F9E7960EB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B831DE2E14FA1AC3D0C711922D62D355 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32160,7 +32293,7 @@ }; 88F49D2A484D30C260D9C407ADECA1B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA5E7348653A3937E94DB3A2E499323F /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32244,7 +32377,7 @@ }; 8B558936ADBEFDBFFC5E9BA901A7EB44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98BC1C34B1DC7B5C3D34F711F68A04E4 /* EXFileSystem.release.xcconfig */; + baseConfigurationReference = AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32272,7 +32405,7 @@ }; 8BF892ADB4D15FD34810EADD67A95124 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EDE4C87728E74E199B34F294E2698093 /* ReactNativeART.debug.xcconfig */; + baseConfigurationReference = EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32324,7 +32457,7 @@ }; 8D507DADE0F407D4C5410A67F2540A43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F35EF008D9C383FC184C982B3009D527 /* RNBootSplash.release.xcconfig */; + baseConfigurationReference = 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32351,7 +32484,7 @@ }; 8E5775EA01828A89A9C84059FE5CA87B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45721CC7B42E663FA87CF4AB23686C28 /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32379,7 +32512,7 @@ }; 8F081C07D357D0FE6680BFAEBDDFD7DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B511D7CD11F62C75323A087784E48A6 /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32406,7 +32539,7 @@ }; 8F125C611123441DD928C0DD69F449EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF0E7C9117E9471C412DA2EFB7661457 /* react-native-jitsi-meet.debug.xcconfig */; + baseConfigurationReference = 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32432,7 +32565,7 @@ }; 8F6FCFBCA2D7CDAA42972A149EF7D4E4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FCC21E33BB4030AF367ED7F1448D5FB /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32459,7 +32592,7 @@ }; 91C9312ECE7854AB6E94AB8E33E9DC7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05177C72A2585FC43F67B7538D200440 /* BugsnagReactNative.debug.xcconfig */; + baseConfigurationReference = B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32510,9 +32643,35 @@ }; name = Release; }; + 93096983A11D24A1DBBB63B50A1E2C8D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 93327737F52E8517C5248270B4826E51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48675413E5F83ED979FF3B47C9ACB5ED /* UMReactNativeAdapter.release.xcconfig */; + baseConfigurationReference = B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32567,7 +32726,7 @@ }; 94E71A5AAF3EB2748169947DCC9D80A7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17D5BA023689C76AC2B701F436D6CD2F /* React-RCTAnimation.release.xcconfig */; + baseConfigurationReference = 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32595,7 +32754,7 @@ }; 96CF32B0E12FEDD12C0FD751DAB4D76F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71634BE8362887E78557650C5B02C864 /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32621,7 +32780,7 @@ }; 970791231C44919F7142E9B708ECA39C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 38584C66D40FC322B431CCC520EA0982 /* EXAppleAuthentication.release.xcconfig */; + baseConfigurationReference = 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32649,7 +32808,7 @@ }; 97A258CFF292221D888B34C00DFF8CEB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2FBCD2B4BD585A64AE4DF49B7BB67F9B /* UMFaceDetectorInterface.release.xcconfig */; + baseConfigurationReference = CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32664,32 +32823,6 @@ }; name = Release; }; - 9826C03B120755C32E813CE356BEB822 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 982B6DDB0E82CFBECA64EAE7B75F04DC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = FEF8D9DFAA679DB21C5FE73D9E13135D /* Flipper-RSocket.release.xcconfig */; @@ -32719,7 +32852,7 @@ }; 99C4CF39EFC7D751EC616C78734B8102 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D21C1E3154D205532C5C7731FB42A35 /* RNReanimated.release.xcconfig */; + baseConfigurationReference = 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32746,7 +32879,7 @@ }; 9AD862A3FA9A8C5D93D92B9EFB3BE3A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C4D03CF8F014052559FCCE94B1A0E4B /* react-native-background-timer.debug.xcconfig */; + baseConfigurationReference = 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32772,7 +32905,7 @@ }; 9B3FED3EBF3EA3DAE80951C569F8B0E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 349B0C4A4790BF2069F3A89945CDC85B /* FBLazyVector.debug.xcconfig */; + baseConfigurationReference = 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32788,7 +32921,7 @@ }; 9C9404E94C3B90059E993B0B27C0ECB4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27819B9DE0159480E49C07274F025758 /* React-RCTActionSheet.release.xcconfig */; + baseConfigurationReference = 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32805,7 +32938,7 @@ }; 9D7A311D2B277C9D20EBF0AB1C27A417 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C88E763911EDEADA68879E921944E448 /* React-RCTBlob.release.xcconfig */; + baseConfigurationReference = 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32833,7 +32966,7 @@ }; 9DDBA0A9845B873604774272DE52332C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 885590BBCA9B83685361583B2E7872B6 /* EXAV.debug.xcconfig */; + baseConfigurationReference = 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32876,7 +33009,7 @@ }; A0951B9E99124E41DC7165676455F2D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C50D2ED0DFE5A618E2D84E2F24172D83 /* EXVideoThumbnails.debug.xcconfig */; + baseConfigurationReference = 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32930,7 +33063,7 @@ }; A30DBFB1FCF612228C139E47A11A761D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C690B73D92E233C3AAA4D4CBB2FF49B /* RCTTypeSafety.release.xcconfig */; + baseConfigurationReference = 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33067,7 +33200,7 @@ }; AB0C5DBCBAF76212B344FADD43A07E14 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF9C7484F8914FE9DFF0A489580AD78D /* React-cxxreact.release.xcconfig */; + baseConfigurationReference = 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33122,7 +33255,7 @@ }; ADAB0420D478021A93BC72BA69F9557F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B511D7CD11F62C75323A087784E48A6 /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -33140,7 +33273,7 @@ }; AF50ABAF5D4FC96FD6BD3E5B80541CD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E9FDC76D8C039F853E591D42C6D0061 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33166,7 +33299,7 @@ }; B05C2894390D644A4A148947FEB748C9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1426A30C44097B60039A709BBD1BD089 /* EXWebBrowser.debug.xcconfig */; + baseConfigurationReference = B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33209,7 +33342,7 @@ }; B0ACC6A772A13986776D06CFEE5BFD64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 38257B73E8D20918F0D7F91495EB8CD1 /* RNLocalize.release.xcconfig */; + baseConfigurationReference = 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33234,9 +33367,34 @@ }; name = Release; }; + B23533822C73D683E59AB6F88FCBA9C1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; B40A0128EC51F25F4EEAB77B4DDD88E2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 860EBB29C61DD2C826B0C343492DB7D9 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33313,7 +33471,7 @@ }; B97A00B47BE98AB67CD521023B308E90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A041B18F495C3F549F646CD9AE0E0BB /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33355,7 +33513,7 @@ }; BBDB711743976FD8B051E4A11DBA1662 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCDA42F2DFA95DF214C7DBF264A4A257 /* React-cxxreact.debug.xcconfig */; + baseConfigurationReference = 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33382,7 +33540,7 @@ }; BC2A4314574CAB2DA6081A5562AE2F3E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 543160FE64728D2CC3B8F488E94228FF /* UMBarCodeScannerInterface.release.xcconfig */; + baseConfigurationReference = 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33399,7 +33557,7 @@ }; BCF56F95D2A3F8C70517A7A11E7E37E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A4420FF6267583F40CA966F815D649EC /* RNFBApp.debug.xcconfig */; + baseConfigurationReference = C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33450,7 +33608,7 @@ }; BE65DFD17EBA798D673F4CDEA33962BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 37BAA62F703E8E7FB51E88748A5E943B /* react-native-mmkv-storage.debug.xcconfig */; + baseConfigurationReference = 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33476,7 +33634,7 @@ }; BF2F192FA36EB0207EF68478CCB6359D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70DF282B72D68E188FAA47721B65A0F4 /* EXFileSystem.debug.xcconfig */; + baseConfigurationReference = 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33503,7 +33661,7 @@ }; BF3C3D55EA4656E08C16EC9D77C486CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E970928CBA116D325E7DF0D77E118FD7 /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33530,7 +33688,7 @@ }; BF48B6B3879FCC80A298178F292D55B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 824F23E11E9FCFF1BF1056E07FD26665 /* UMAppLoader.release.xcconfig */; + baseConfigurationReference = 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33558,7 +33716,7 @@ }; C098A7A4611DF2771CC7EA939609F477 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7F9C4EEBFD2427463202B82408529D5 /* RNDateTimePicker.debug.xcconfig */; + baseConfigurationReference = FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33584,7 +33742,7 @@ }; C15027671C5D0C6A8CAC6E78D66CD017 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8726FEFF2B734B95167D1273D3819551 /* react-native-appearance.release.xcconfig */; + baseConfigurationReference = 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33611,7 +33769,7 @@ }; C2871C5CC657787D399A4B524949F03A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B82E5268364C6B7E7E7CC1A5BEA1981D /* UMBarCodeScannerInterface.debug.xcconfig */; + baseConfigurationReference = 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33627,7 +33785,7 @@ }; C2DB949BCE9FBCCDD8E71534FB7F7E73 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE43FEDD2DBC657A91E7648CE5541DE8 /* RNFBApp.release.xcconfig */; + baseConfigurationReference = 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33654,7 +33812,7 @@ }; C33A9E2686E5927EE4D0A4C94ADBA93B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27303A73F415EF82B6EF8B6E5C5B39DB /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33679,34 +33837,9 @@ }; name = Debug; }; - C38EAFAB1E10387E8FDED22EC7B24E3F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; C43EF2F43E7615CA85502D30C64FA4F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 688D960074D7FDD96EB555A71DB044A7 /* RNScreens.release.xcconfig */; + baseConfigurationReference = 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33733,7 +33866,7 @@ }; C6679B91C62A53EF07A491EE45B2DAE7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C727DE46322E8CD40BEE18F03F9DF365 /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33786,7 +33919,7 @@ }; C86F4AB7981E6519EB23A87879937446 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D6E30B5D5A54411361F9E0B5938B513 /* React-RCTNetwork.debug.xcconfig */; + baseConfigurationReference = 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33839,7 +33972,7 @@ }; CF55DAE16EDFE6ED8386E351366F5CF8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD9205A0E74FACA100CA0265A0E01417 /* UMCore.debug.xcconfig */; + baseConfigurationReference = E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33866,7 +33999,7 @@ }; CFDFAB5FB506C4974DE54EDD53C0D4E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49029CFAADD3D72117A128C4BE298666 /* UMAppLoader.debug.xcconfig */; + baseConfigurationReference = B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33893,7 +34026,7 @@ }; CFF4E2808673522F0463F5AD9D24DC27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4608AEE64CA507BE240C95A8B2840B8F /* RCTRequired.debug.xcconfig */; + baseConfigurationReference = B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33935,7 +34068,7 @@ }; D65845EB52762C86A7E2501FB2C4C778 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0133831D38C7E00969CC06938E12D48D /* react-native-jitsi-meet.release.xcconfig */; + baseConfigurationReference = 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33962,7 +34095,7 @@ }; D829BD40E0928CC43F22BF3B40B7626B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65D3432402A4ED51AEA5007E42107E02 /* ReactNativeKeyboardInput.release.xcconfig */; + baseConfigurationReference = E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34016,7 +34149,7 @@ }; D926B739DA1465748AC5A51DF54725B5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2236EE97FD7E16564C2954938BFBE98D /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34042,7 +34175,7 @@ }; D97639C8B8224A918CC1611F45940647 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8EEE4B6DD4B01B3E6247D690D3B0AF9B /* React-RCTVibration.release.xcconfig */; + baseConfigurationReference = 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34070,7 +34203,7 @@ }; D97887993E86C41568802DFAC2634A34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 612AECA7913B21FCE0440247FEC8D3EB /* EXPermissions.debug.xcconfig */; + baseConfigurationReference = 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34123,7 +34256,7 @@ }; DAF7195F940FA8C1010ECFB32E4EE001 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC34AD1F56B9DF9E6BEBFBFAF8733F43 /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34149,7 +34282,7 @@ }; DB682A1751B7203657DC0093E5AAA62F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F50078E62434E4DA8C72D9225A9E228 /* React.debug.xcconfig */; + baseConfigurationReference = EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34165,7 +34298,7 @@ }; DC006E2CB853C8EBCBF31D5B907A9466 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E319BC17A70908ADE2ACE4957D200624 /* React-RCTAnimation.debug.xcconfig */; + baseConfigurationReference = 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34192,7 +34325,7 @@ }; DD56D248833C2C798647FDE5E2718CDB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8FF702BD926BD5A959A4BDC01C8AA12E /* UMTaskManagerInterface.release.xcconfig */; + baseConfigurationReference = 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34273,7 +34406,7 @@ }; E01528A782B7451667DDBC3E67A11C90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 81DB8245279F0695B9EC71EB4EDA66C6 /* EXVideoThumbnails.release.xcconfig */; + baseConfigurationReference = E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34301,7 +34434,7 @@ }; E0F5AD5647A8989933301A2E39914884 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF7954154DB1CF4A16573D13B0E740D3 /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34325,9 +34458,36 @@ }; name = Debug; }; + E1134700FBB6FAAE491D8162AD6F035E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-cookies/react-native-cookies-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_cookies; + PRODUCT_NAME = "react-native-cookies"; + 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; + }; E22D3E8C025807F476FE70C2B7478E2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3034E8103363BE765D13AD9F0899C6A9 /* EXImageLoader.debug.xcconfig */; + baseConfigurationReference = B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34354,7 +34514,7 @@ }; E4409D6DD01F674F455C88AF3BCB2786 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18AE49D5FBCC94274677B37AD41CEC1D /* ReactNativeKeyboardTrackingView.debug.xcconfig */; + baseConfigurationReference = 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34407,7 +34567,7 @@ }; E567A792983702981257D4CD8F75AC0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A651428CB1B26E47A76DCE58B8568222 /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34485,7 +34645,7 @@ }; E6FE5F0C28188004540F2E6718CA7118 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 089F571922CEAE86F606AE7E27556A13 /* UMFontInterface.debug.xcconfig */; + baseConfigurationReference = C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34553,7 +34713,7 @@ }; EA3DBFB4B5A87A1B65EDBDCC4650219C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACA2C7C5FB8BCE12FC69745BA4FA52B4 /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34596,7 +34756,7 @@ }; EB5A9D6EF2E1CC8C62AC6282ADEC9309 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D7A972B2B3C3AD9CB0E366B9CFFFDA5 /* UMCore.release.xcconfig */; + baseConfigurationReference = EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34624,7 +34784,7 @@ }; EC8846B90307E5484E81E85591A52732 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F300091273A35CE5E7A76C6F4A0129E /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34651,7 +34811,7 @@ }; EE3FE35E3129F966BB78F038C9D40EE7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 976531FFAE322F1FC546C191937461F9 /* react-native-document-picker.release.xcconfig */; + baseConfigurationReference = DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34678,7 +34838,7 @@ }; EECE463DBC7906B9C5F572429BF2FD36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BDAA8437BA9522C166711B13F38EDA7 /* ReactNativeKeyboardInput.debug.xcconfig */; + baseConfigurationReference = C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34702,6 +34862,32 @@ }; name = Debug; }; + F19B21BDFE081568DBE0BD6C2C3545E0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-cookies/react-native-cookies-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_cookies; + PRODUCT_NAME = "react-native-cookies"; + 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; + }; F1B41A5457AA87764507747D4DBD48EA /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = A078DB82A9259F4CCE65EC283A390837 /* FirebaseCoreDiagnostics.debug.xcconfig */; @@ -34729,7 +34915,7 @@ }; F1B898BB128EA55E2AA6FF7B14192F3A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BF39DEAF74C02F0D8A677124D3CA033 /* UMPermissionsInterface.debug.xcconfig */; + baseConfigurationReference = 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34756,7 +34942,7 @@ }; F2707C8800F8985D4ADFB31C444579B6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 815C3B6343CAD30CF200A1E5E6492B88 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34783,7 +34969,7 @@ }; F3092F5C70CB32423DDAFCB15C440C15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AAC17BCE6AE3690326EDC7EC3714D56 /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34811,7 +34997,7 @@ }; F3CBC59BD83FE8FFAE663C7E4E011B7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4262276E6F7D763EDD664686FFCB8F02 /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34837,7 +35023,7 @@ }; F6F72F3C1705BCB7FDF787ADB8733918 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3C052F03275EE44BB2C9D5FE290405B /* react-native-cameraroll.debug.xcconfig */; + baseConfigurationReference = 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34863,7 +35049,7 @@ }; F72CC633A9C668B5FA0A17287F8C6379 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F9AC0BF52F59D118EFD17E5FC6F1092 /* React-RCTText.release.xcconfig */; + baseConfigurationReference = D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34891,7 +35077,7 @@ }; F74A9A46655AB7E1E7B45BE4AB31FD81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B79DB8695CE6E5D16922C2C2E8E096D2 /* EXPermissions.release.xcconfig */; + baseConfigurationReference = 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34946,7 +35132,7 @@ }; F7C3A0403701565D0E723267ED3889BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48FFFD1657781DE7B48B64CCFE5343EB /* UMFontInterface.release.xcconfig */; + baseConfigurationReference = 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34978,7 +35164,7 @@ }; FC4AF7AB980222A1625253BCB46369C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 309E7623AE75DB40418A48E071A38736 /* RCTRequired.release.xcconfig */; + baseConfigurationReference = 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34995,7 +35181,7 @@ }; FE8EE4AB0D469A0E5EF9AC31BA890E44 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E3D24BA6820EC26A3C4941962475C8D /* RNConfigReader.debug.xcconfig */; + baseConfigurationReference = 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35166,6 +35352,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 22E624A1216A7EFC43A15AD77ED1FE5D /* Build configuration list for PBXNativeTarget "react-native-cookies" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F19B21BDFE081568DBE0BD6C2C3545E0 /* Debug */, + E1134700FBB6FAAE491D8162AD6F035E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 2463037188CC7055759F630AF98FFF25 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35355,15 +35550,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 492DCF472215BEFE87566E17AFAF5F61 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5FED7CF840732EF71766A19BF5517228 /* Debug */, - 0AD642E012D542B268FC67103853A565 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 49A3366BDB4456BC2BF642D3E7A9392A /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35418,6 +35604,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 542B99B928ECE567A203D2898802CB48 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5E6812B518334F69B1D296F1E675DD49 /* Debug */, + 793D89067BFBD9A396CC574B1C3D02E6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 55DB5272CB486DA0E6ED10030E16F3C3 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35535,15 +35730,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6F74819B4C638FFD47597797565D76EF /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C38EAFAB1E10387E8FDED22EC7B24E3F /* Debug */, - 9826C03B120755C32E813CE356BEB822 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6F7562655E6FA6C7E95A5ACF0F755281 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35706,6 +35892,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 908B90B691907295BF3ABE726FA79E1A /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B23533822C73D683E59AB6F88FCBA9C1 /* Debug */, + 93096983A11D24A1DBBB63B50A1E2C8D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig index 59e9d7ae..65b9ebee 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig @@ -1,5 +1,5 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MMKVAppExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" OTHER_LDFLAGS = $(inherited) -ObjC -l"MMKVAppExtension" -l"MMKVCore" -l"c++" -l"z" -framework "CoreFoundation" -framework "UIKit" PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig index 59e9d7ae..65b9ebee 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig @@ -1,5 +1,5 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MMKVAppExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" OTHER_LDFLAGS = $(inherited) -ObjC -l"MMKVAppExtension" -l"MMKVCore" -l"c++" -l"z" -framework "CoreFoundation" -framework "UIKit" PODS_BUILD_DIR = ${BUILD_DIR} 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 4ad67264..6bff99bd 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 @@ -4198,6 +4198,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-cookies + +MIT License + +Copyright (c) 2020 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. + + ## react-native-document-picker MIT License diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index ca15658d..4dd4bd02 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 @@ -4561,6 +4561,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2020 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 + react-native-cookies + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2016 Elyx0 Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index be39fd21..8b7a8966 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index f024b0ab..844508b8 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index 4ad67264..6bff99bd 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 @@ -4198,6 +4198,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-cookies + +MIT License + +Copyright (c) 2020 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. + + ## react-native-document-picker MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index ca15658d..4dd4bd02 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 @@ -4561,6 +4561,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2020 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 + react-native-cookies + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2016 Elyx0 Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 671ffbeb..d8af7209 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 7ef9c32c..46a6005f 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${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/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${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}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-dummy.m b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-dummy.m new file mode 100644 index 00000000..b5f62db4 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_cookies : NSObject +@end +@implementation PodsDummy_react_native_cookies +@end diff --git a/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-prefix.pch b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.debug.xcconfig b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.debug.xcconfig new file mode 100644 index 00000000..9f211364 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.debug.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-cookies" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-cookies" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@react-native-community/cookies +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.release.xcconfig b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.release.xcconfig new file mode 100644 index 00000000..9f211364 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-cookies/react-native-cookies.release.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-cookies" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-cookies" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@react-native-community/cookies +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 aab5e6bf..7ad852e0 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "@react-native-community/art": "^1.2.0", "@react-native-community/async-storage": "1.11.0", "@react-native-community/cameraroll": "4.0.0", + "@react-native-community/cookies": "^4.0.0", "@react-native-community/datetimepicker": "2.6.0", "@react-native-community/hooks": "2.6.0", "@react-native-community/masked-view": "^0.1.10", diff --git a/yarn.lock b/yarn.lock index 67f111f0..b9c6870f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2073,6 +2073,13 @@ sudo-prompt "^9.0.0" wcwidth "^1.0.1" +"@react-native-community/cookies@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cookies/-/cookies-4.0.0.tgz#561f7788e706b9902e25eefb80a093fe8ec5cd93" + integrity sha512-6j5Qatc0lVvaUgnhCydbmWofrwDURXxYp8f0cnfpN1LEltsxbhQU26n1ItXY79ZBnvxkkW6lEkw55Egah6uUKQ== + dependencies: + invariant "^2.2.4" + "@react-native-community/datetimepicker@2.6.0": version "2.6.0" resolved "https://registry.yarnpkg.com/@react-native-community/datetimepicker/-/datetimepicker-2.6.0.tgz#260715abc88dac2485f525f046bd33ac0e62a281"